diff --git a/.gitignore b/.gitignore index ca92001..e298d49 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +test.py log/ geckodriver.log *.pyc diff --git a/lib/attacks/admin_panel_finder/__init__.py b/lib/attacks/admin_panel_finder/__init__.py index 55b25bc..eaeaa4b 100644 --- a/lib/attacks/admin_panel_finder/__init__.py +++ b/lib/attacks/admin_panel_finder/__init__.py @@ -172,7 +172,9 @@ def check_for_admin_page(url, exts, protocol="http://", **kwargs): "only writing successful connections to log file...", level=30 )) lib.core.common.write_to_log_file( - list(connections), lib.core.settings.ADMIN_PAGE_FILE_PATH, lib.core.settings.ADMIN_PAGE_FILE_PATH.format( + list(connections), + lib.core.settings.ADMIN_PAGE_FILE_PATH, + lib.core.settings.ADMIN_PAGE_FILENAME.format( lib.core.settings.replace_http(url) ) ) diff --git a/lib/core/settings.py b/lib/core/settings.py index 58a9126..592d33b 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -46,7 +46,7 @@ CLONE = "https://github.com/ekultek/zeus-scanner.git" ISSUE_LINK = "https://github.com/ekultek/zeus-scanner/issues" # current version -VERSION = "1.3.6".format(PATCH_ID) +VERSION = "1.3.7.{}".format(PATCH_ID) # colors to output depending on the version VERSION_TYPE_COLORS = {"dev": 33, "stable": 92, "other": 30}