summaryrefslogtreecommitdiffstats
path: root/sploit/log.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sploit/log.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/sploit/log.py b/sploit/log.py
new file mode 100644
index 0000000..cd9c3be
--- /dev/null
+++ b/sploit/log.py
@@ -0,0 +1,6 @@
+ENCODING = ''
+def log(s):
+ if ENCODING != '':
+ s = s.decode(ENCODING)
+ print(s)
+