We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae94ba commit 80c6e24Copy full SHA for 80c6e24
src/utils/logs.py
@@ -173,6 +173,8 @@ def logs_notification(filename):
173
"""
174
def log_traffic(header):
175
output_file = open(menu.options.traffic_file, "a")
176
+ if type(header) is bytes:
177
+ header = header.decode(settings.UNICODE_ENCODING)
178
output_file.write(header)
179
output_file.close()
180
src/utils/settings.py
@@ -216,7 +216,7 @@ def sys_argv_errors():
216
DESCRIPTION = "The command injection exploiter"
217
AUTHOR = "Anastasios Stasinopoulos"
218
VERSION_NUM = "3.3"
219
-REVISION = "51"
+REVISION = "52"
220
STABLE_RELEASE = False
221
if STABLE_RELEASE:
222
VERSION = "v" + VERSION_NUM + "-stable"
0 commit comments