Skip to content

Commit

Permalink
patches an issue where it will keep running if the file does not exis…
Browse files Browse the repository at this point in the history
…t instead of shutting down (issue #306)
  • Loading branch information
ekultek committed Dec 15, 2017
1 parent 14f2506 commit b0ea074
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions etc/checksum/md5sum.md5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
8a7f36f3ec9780769187778585494d6f ./zeus.py
1ad9b1b53231b6d64c8055e3162b8851 ./zeus.py
4b32db388e8acda35570c734d27c950c ./etc/scripts/launch_sqlmap.sh
6ad5f22ec4a6f8324bfb1b01ab6d51ec ./etc/scripts/cleanup.sh
74d7bee13890a9dd279bb857591647ce ./etc/scripts/reinstall.sh
Expand Down Expand Up @@ -107,7 +107,7 @@ c5b69617f040fef1d5930948905aa8d0 ./lib/attacks/whois_lookup/whois.py
de4254c5e40f7aa4fb81e0608f758a2c ./lib/core/decorators.py
4433353fb5c55578391d8b4006191ee8 ./lib/core/errors.py
d41d8cd98f00b204e9800998ecf8427e ./lib/core/__init__.py
b6a382ce221756f2ae0c2261e65d09bd ./lib/core/settings.py
19f98bf3830e61f2ca78549cb747a724 ./lib/core/settings.py
28b94f316ad528cdfba77694b4e52c81 ./lib/core/parse.py
d41d8cd98f00b204e9800998ecf8427e ./var/__init__.py
d41d8cd98f00b204e9800998ecf8427e ./var/auto_issue/__init__.py
Expand Down
2 changes: 1 addition & 1 deletion lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues"

# current version <major.minor.commit.patch ID>
VERSION = "1.4.10.{}".format(PATCH_ID)
VERSION = "1.4.11.{}".format(PATCH_ID)

# colors to output depending on the version
VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}
Expand Down
2 changes: 1 addition & 1 deletion zeus.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,10 +359,10 @@ def __run_attacks_main(**kwargs):
))
shutdown()
elif "No such file or directory" in str(e):
logger.exception(e)
logger.fatal(set_color(
"provided file does not exist, make sure you have the full path", level=50
))
shutdown()
else:
logger.exception(set_color(
"Zeus has hit an unexpected error and cannot continue, error code '{}'".format(e), level=50
Expand Down

0 comments on commit b0ea074

Please sign in to comment.