Skip to content

Commit

Permalink
Fixes #791
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed Dec 4, 2022
1 parent 2aacb53 commit e645639
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version 3.7 (TBA)
* Revised: Minor bug-fix regarding logging all HTTP traffic into a textual file (i.e `-t` option).

## Version 3.6 (2022-11-18)
* Fixed: Multiple bug-fixes regarding several reported unhandled exceptions.
* Revised: Improvements regarding dynamic code evaluation heuristic check.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='commix',
version='3.6',
version='3.7-dev',
description='Automated All-in-One OS Command Injection Exploitation Tool',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down
5 changes: 1 addition & 4 deletions src/utils/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,7 @@ def logs_notification(filename):
"""
def log_traffic(header):
output_file = open(menu.options.traffic_file, "a")
if not menu.options.no_logging:
if type(header) is bytes:
header = header.decode(settings.DEFAULT_CODEC)
output_file.write(header)
output_file.write(header)
output_file.close()

"""
Expand Down
6 changes: 3 additions & 3 deletions src/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ def sys_argv_errors():
DESCRIPTION_FULL = "Automated All-in-One OS Command Injection Exploitation Tool"
DESCRIPTION = "The command injection exploiter"
AUTHOR = "Anastasios Stasinopoulos"
VERSION_NUM = "3.6"
REVISION = "35"
STABLE_RELEASE = True
VERSION_NUM = "3.7"
REVISION = "1"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
VERSION = VERSION + VERSION_NUM + "-stable"
Expand Down

0 comments on commit e645639

Please sign in to comment.