From c02a473889611b913d62aaf93db9f54f910ff69d Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Mon, 25 Mar 2019 22:55:47 +0400 Subject: [PATCH] queued command fix (#1074) --- src/cowrie/shell/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cowrie/shell/command.py b/src/cowrie/shell/command.py index 666a5141..428de588 100644 --- a/src/cowrie/shell/command.py +++ b/src/cowrie/shell/command.py @@ -161,7 +161,7 @@ class HoneyPotCommand(object): def lineReceived(self, line): log.msg('QUEUED INPUT: {}'.format(line)) # FIXME: naive command parsing, see lineReceived below - line = "".join(line) + # line = "".join(line) self.protocol.cmdstack[0].cmdpending.append(shlex.split(line, posix=False)) def resume(self):