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 9058c22 commit 2673f74Copy full SHA for 2673f74
src/core/main.py
@@ -461,7 +461,7 @@ def main(filename, url):
461
raise SystemExit()
462
463
if not menu.options.tech:
464
- menu.options.tech = ""
+ menu.options.tech = "".join(settings.AVAILABLE_TECHNIQUES)
465
466
# Check if specified wrong alternative shell
467
if menu.options.alter_shell:
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 = "56"
+REVISION = "57"
220
STABLE_RELEASE = False
221
if STABLE_RELEASE:
222
VERSION = "v" + VERSION_NUM + "-stable"
0 commit comments