diff --git a/kippo/core/ssh.py b/kippo/core/ssh.py index 4a06b2d..b5bf448 100644 --- a/kippo/core/ssh.py +++ b/kippo/core/ssh.py @@ -283,6 +283,10 @@ class HoneyPotSSHSession(session.SSHSession): def sendEOF(self): self.conn.sendEOF(self) + def eofReceived(self): + log.msg('got eof') + self.sendClose() + # utility function to request to send close for this session def sendClose(self): self.conn.sendClose(self)