Skip to content

Commit 19e713e

Browse files
committed
Minor update
1 parent 4a4de73 commit 19e713e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/core/injections/controller/controller.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,14 @@ def post_request(url, http_request_method, filename, timesec):
615615
def perform_checks(url, http_request_method, filename):
616616

617617
def basic_level_checks():
618-
settings.PERFORM_BASIC_SCANS = False
618+
if not menu.options.bulkfile:
619+
settings.PERFORM_BASIC_SCANS = False
620+
else:
621+
settings.PERFORM_BASIC_SCANS = True
622+
settings.SKIP_CODE_INJECTIONS = False
623+
settings.SKIP_COMMAND_INJECTIONS = False
624+
settings.IDENTIFIED_WARNINGS = False
625+
settings.IDENTIFIED_PHPINFO = False
619626
# Check if HTTP Method is GET.
620627
if not menu.options.data:
621628
get_request(url, http_request_method, filename, timesec)

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def sys_argv_errors():
216216
DESCRIPTION = "The command injection exploiter"
217217
AUTHOR = "Anastasios Stasinopoulos"
218218
VERSION_NUM = "3.3"
219-
REVISION = "63"
219+
REVISION = "64"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)