diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2021-09-01 00:06:39 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2021-09-01 00:06:39 -0400 |
commit | 8f8eefefbc2c06d10ad29a83d79fcd6c425b54c6 (patch) | |
tree | 7faa1f75e9868539479852d96f4876eb3ac5a974 /sploit/comm.py | |
parent | affe57a4ed9658a91fb38e7f03235584cd210b2c (diff) | |
download | nsploit-8f8eefefbc2c06d10ad29a83d79fcd6c425b54c6.tar.gz nsploit-8f8eefefbc2c06d10ad29a83d79fcd6c425b54c6.zip |
Better Info Messages
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'sploit/comm.py')
-rw-r--r-- | sploit/comm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sploit/comm.py b/sploit/comm.py index 0e80051..f9c3a38 100644 --- a/sploit/comm.py +++ b/sploit/comm.py @@ -48,7 +48,7 @@ class Comm: self.write(data + b'\n') def interact(self): - print("Interact Mode") + print("<--Interact Mode-->") syncstop = threading.Event() def readloop(): poll = select.poll() @@ -88,7 +88,7 @@ class Comm: syncstop.set() readthread.join() os.set_blocking(self.back.stdin.fileno(),True) - print("Interact Mode Done") + print("<--Interact Mode Done-->") class Process: def __init__(self, args): |