Skip to content

Commit 8525116

Browse files
committed
1 parent 39e7b03 commit 8525116

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

doc/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## Version 3.3 (TBA)
2+
* Fixed: Minor bug-fix regarding scanning multiple targets given in a textual file (i.e. via option `-m`).
23
* Removed: The "Regsvr32.exe application whitelisting bypass" attack vector has been removed.
34
* Updated: Minor update regarding web delivery script (i.e. Python meterpreter reverse TCP shell).
45
* Replaced: The `--backticks` switch has been replaced with "backticks.py" tamper script.

src/core/requests/headers.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,11 @@ def https_open(self, req):
266266
err_msg += " (Reason: " + str(err.args[0]).split("] ")[-1].lower() + ")."
267267
except IndexError:
268268
err_msg += "."
269-
print(settings.print_critical_msg(err_msg))
270-
raise SystemExit()
269+
if menu.options.bulkfile:
270+
raise
271+
else:
272+
print(settings.print_critical_msg(err_msg))
273+
raise SystemExit()
271274

272275
# Raise exception regarding existing connection was forcibly closed by the remote host.
273276
except SocketError as err:

src/core/requests/redirection.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,9 @@ def http_error_405(self, req, fp, code, msg, headers):
190190
err_msg += " (Reason: " + str(err.args[0]).split("] ")[-1].lower() + ")."
191191
except IndexError:
192192
err_msg += "."
193-
print(settings.print_critical_msg(err_msg))
194-
raise SystemExit()
193+
if not menu.options.bulkfile:
194+
print(settings.print_critical_msg(err_msg))
195+
raise SystemExit()
195196

196197
# Raise exception regarding existing connection was forcibly closed by the remote host.
197198
except SocketError as err:

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 = "60"
219+
REVISION = "61"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)