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):