diff options
author | Malfurious <m@lfurio.us> | 2021-08-03 19:53:26 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-08-03 19:53:26 -0400 |
commit | 5970194d1303e16364ff1405f974c995de46203b (patch) | |
tree | d3f748eeb0112205bb7784bd353b22376ee827ae /tools/sploit/sploitlog.py | |
parent | ef6e3a502bf8498a8f641eb3dad11d3065359bbb (diff) | |
parent | aa9da0f6f27759f5f3201bafb0e52f41367f08ef (diff) | |
download | lib-des-gnux-5970194d1303e16364ff1405f974c995de46203b.tar.gz lib-des-gnux-5970194d1303e16364ff1405f974c995de46203b.zip |
Merge tag 'pull-duso-imaginary-writeups' of https://github.com/Dusoleil/lib-des-gnux
Writeups and other tools/docs from ImaginaryCTF from Dusoleil.
* tag 'pull-duso-imaginary-writeups' of https://github.com/Dusoleil/lib-des-gnux:
Adding Initial Commit of the Sploit Tool
Adding Various Docs
Adding Various Small Tools
Git Ignore __pycache__ for All Tools
Writeups from Imaginary CTF 2021
Diffstat (limited to 'tools/sploit/sploitlog.py')
-rwxr-xr-x | tools/sploit/sploitlog.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/sploit/sploitlog.py b/tools/sploit/sploitlog.py new file mode 100755 index 0000000..eab1fc7 --- /dev/null +++ b/tools/sploit/sploitlog.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 + +import os + +import sploitconfig as config + +#this function does not look at the run mode and will write to stdout regardless +#use sploitutil.log instead +def sploitlog(s): + if config.log_encoding != '': + s = s.decode(config.log_encoding) + print(s) + +if __name__ == '__main__': + stdin = os.fdopen(0,"rb") + for s in stdin: + sploitlog(s) |