From 2ba1436527d203261b00498f590019d7b01b67fa Mon Sep 17 00:00:00 2001 From: fe7ch Date: Mon, 31 Oct 2016 23:07:46 +0300 Subject: [PATCH] Fix regression when "cat > file" data wasn't hashed at connection lose. (#323) * Fix regression when "cat > file" data wasn't hashed at connection lose. * Fix typo in core/protocol.py, revert previous commit for insults.py --- cowrie/core/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cowrie/core/protocol.py b/cowrie/core/protocol.py index 0af2fcae..f0f9df4d 100644 --- a/cowrie/core/protocol.py +++ b/cowrie/core/protocol.py @@ -222,7 +222,7 @@ class HoneyPotExecProtocol(HoneyPotBaseProtocol): """ HoneyPotBaseProtocol.connectionMade(self) self.setTimeout(60) - self.terminal.stdinlog_open = True + self.terminal.stdinlogOpen = True self.cmdstack = [honeypot.HoneyPotShell(self, interactive=False)] self.cmdstack[0].lineReceived(self.execcmd)