posix parsing (#1105)

This commit is contained in:
Michel Oosterhof 2019-05-04 11:16:20 +04:00 committed by GitHub
parent 1c87da0f54
commit d55418dcb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class HoneyPotCommand(object):
log.msg('QUEUED INPUT: {}'.format(line))
# FIXME: naive command parsing, see lineReceived below
# line = "".join(line)
self.protocol.cmdstack[0].cmdpending.append(shlex.split(line, posix=False))
self.protocol.cmdstack[0].cmdpending.append(shlex.split(line, posix=True))
def resume(self):
pass