A fake ssh server written in Python. Uses Paramiko.
Install Python and Paramiko. Then run FakeSSHServer.py.
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.