Skip to content

Commit 06beb62

Browse files
committed
Updated to v4.1
1 parent 725f647 commit 06beb62

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

doc/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 4.1 (TBA)
1+
## Version 4.1 (2025-12-20)
22
* Fixed: Multiple bug-fixes regarding several reported unhandled exceptions.
33
* Fixed: Handling of parameter names containing non-ASCII characters.
44
* Fixed: Handling of non-ASCII characters in URLs to ensure proper request encoding.
@@ -33,6 +33,8 @@
3333
* Revised: Minor code refactoring regarding payloads for time-related techniques (i.e. "time-based", "tempfile-based").
3434
* Revised: Improvement regarding tamper script "backticks.py" for supporting time-related techniques (i.e. "time-based", "tempfile-based").
3535

36+
_Note: For more check the [detailed changeset](https://github.com/commixproject/commix/compare/v4.0...v4.1)._
37+
3638
## Version 4.0 (2024-12-20)
3739
* Fixed: Multiple bug-fixes regarding several reported unhandled exceptions.
3840
* Revised: Minor bug-fix regarding tamper script "backticks.py"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='commix',
20-
version='4.1.dev',
20+
version='4.1',
2121
description='Automated All-in-One OS Command Injection Exploitation Tool',
2222
long_description=open('README.md').read(),
2323
long_description_content_type='text/markdown',

src/utils/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ def sys_argv_errors():
261261
DESCRIPTION = "The command injection exploiter"
262262
AUTHOR = "Anastasios Stasinopoulos"
263263
VERSION_NUM = "4.1"
264-
REVISION = "125"
265-
STABLE_RELEASE = False
264+
REVISION = "126"
265+
STABLE_RELEASE = True
266266
VERSION = "v"
267267
if STABLE_RELEASE:
268268
VERSION = VERSION + VERSION_NUM

0 commit comments

Comments
 (0)