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 | 7febf6dc60205369e813bfe1f3a59922081f44b6 (patch) | |
tree | bfc4ab028a047d8949d6d440bee7d01d91807862 /tools | |
parent | bb1e791ab1272145f3d245397fcf7caaaa58a8ea (diff) | |
download | lib-des-gnux-7febf6dc60205369e813bfe1f3a59922081f44b6.tar.gz lib-des-gnux-7febf6dc60205369e813bfe1f3a59922081f44b6.zip |
Better Info Messages
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | tools/sploit/sploit/comm.py | 4 | ||||
-rw-r--r-- | tools/sploit/sploit/main.py | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/sploit/sploit/comm.py b/tools/sploit/sploit/comm.py index 0e80051..f9c3a38 100644 --- a/tools/sploit/sploit/comm.py +++ b/tools/sploit/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/tools/sploit/sploit/main.py b/tools/sploit/sploit/main.py index 7ed23d2..1ef2316 100644 --- a/tools/sploit/sploit/main.py +++ b/tools/sploit/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!") |