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 | |
parent | affe57a4ed9658a91fb38e7f03235584cd210b2c (diff) | |
download | sploit-8f8eefefbc2c06d10ad29a83d79fcd6c425b54c6.tar.gz sploit-8f8eefefbc2c06d10ad29a83d79fcd6c425b54c6.zip |
Better Info Messages
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
-rw-r--r-- | sploit/comm.py | 4 | ||||
-rw-r--r-- | sploit/main.py | 1 |
2 files changed, 3 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): diff --git a/sploit/main.py b/sploit/main.py index 7ed23d2..1ef2316 100644 --- a/sploit/main.py +++ b/sploit/main.py @@ -40,4 +40,5 @@ def target(script,target): def runscript(script,comm): print("Running Script...") exec(open(script).read()) + print("Script Finished!") |