summaryrefslogtreecommitdiffstats
path: root/tools/sploit/sploitlog.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sploit/sploitlog.py')
-rwxr-xr-xtools/sploit/sploitlog.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/sploit/sploitlog.py b/tools/sploit/sploitlog.py
deleted file mode 100755
index eab1fc7..0000000
--- a/tools/sploit/sploitlog.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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)