Skip to content
This repository was archived by the owner on Aug 20, 2018. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 607 Bytes

File metadata and controls

30 lines (22 loc) · 607 Bytes

FakeSSHServer

A fake ssh server written in Python. Uses Paramiko.

Install

Install Python and Paramiko. Then run FakeSSHServer.py.

Config

PORT = 22
LOG_FILE = 'fakessh.log'
#RETURN_MESSAGE = 'no way to hack into my server noob!\r\n'
RETURN_MESSAGE = None
DENY_ALL = False
PASSWORDS = [
"test",
"fake"
]

PORT: Listen port.

LOG_FILE: Log file.

RETURN_MESSAGE: The message when user logined in.

DENY_ALL: True = Deny all access.

PR_ALLOW: The probability a user allowed log in.

PASSWORDS: Passwords that allowed to log in.