1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-27 19:04:15 +01:00

Fixed back command exception

This commit is contained in:
Caleb Stewart 2021-06-18 15:03:16 -04:00
parent d6bf81e473
commit ccc83215df

View File

@ -11,4 +11,6 @@ class Command(CommandDefinition):
ARGS = {}
def run(self, manager: "pwncat.manager.Manager", args):
raise RawModeExit
# This is caught by ``CommandParser.run`` which interprets
# it as a `C-d` sequence, and returns to the remote prompt.
raise EOFError