![]() |
Paramiko Server -- Exception (server): Error reading SSH protocol banner - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Networking (https://python-forum.io/forum-12.html) +--- Thread: Paramiko Server -- Exception (server): Error reading SSH protocol banner (/thread-40407.html) |
Paramiko Server -- Exception (server): Error reading SSH protocol banner - ujlain - Jul-23-2023 For the code snippet below , I am unable to trap error (as enumerated as tracebac) hostF = "keys/id_rsa" HOST_KEY = paramiko.RSAKey(filename=hostF) transport = paramiko.Transport(client) transport.add_server_key(HOST_KEY) transport.local_version = "SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3" # this is the banner that goes out server = libServer.mySSH() try: [b] transport.start_server(server=server) # Trouble here for DOS attack. Error below arent captured[/b][color=#E74C3C][/color] channel = transport.accept(20) channel.send("Got Channel .. will try SSH connection \r\n") except Exception as e: print (e)transport.start_server(server=server) --> this triggers a traceback as enumertaed below when a plain socket connection attempt is made on paramiko SSH server listening port. This can be a raw potential DOS attack.
RE: Paramiko Server -- Exception (server): Error reading SSH protocol banner - Gribouillis - Jul-23-2023 The start_server() documentation says that a separate thread is created for protocol negociation. Your exception occurred apparently in an other thread. You could perhaps play with the event parameter to catch the success or failure of the negociation.
RE: Paramiko Server -- Exception (server): Error reading SSH protocol banner - ujlain - Jul-24-2023
event = threading.Event() # Trouble here .. traceback error can't be gracefully handled transport.start_server(event= event, server=server) while True: event.wait(0.1) if not transport.is_active(): print ("Bad socket .. not an SSH attempt") os.kill(pid, signal.SIGKILL) if event.isSet(): break
RE: Paramiko Server -- Exception (server): Error reading SSH protocol banner - Gribouillis - Jul-24-2023 (Jul-24-2023, 05:44 AM)ujlain Wrote: Paramiko ought to capture this as a feature.Issue a bug report to Paramiko's maintainers ![]() (Jul-24-2023, 05:44 AM)ujlain Wrote: traceback error can't be gracefully handledSee if you can do something by overrinding temporarily threading.excepthook (Jul-24-2023, 05:44 AM)ujlain Wrote: while True:Why a loop? Why not just event.wait() ?
|