From 0e24a1c4cd94de4eb2fec52e44dfc97f4dfa2e0e Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Mon, 16 Nov 2015 18:17:19 +0000 Subject: [PATCH] fix for wget and nostdin issue --- cowrie/core/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cowrie/core/ssh.py b/cowrie/core/ssh.py index 626a80f..3e75709 100644 --- a/cowrie/core/ssh.py +++ b/cowrie/core/ssh.py @@ -397,7 +397,7 @@ class HoneyPotSSHSession(session.SSHSession): def eofReceived(self): log.msg('got eof') - self.sendClose() + session.SSHSession.eofReceived(self) # utility function to request to send close for this session def sendClose(self):