Skip to content

Commit

Permalink
Minor revert regarding commit: 0ed34b8
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed May 14, 2024
1 parent 82d4aba commit b4cc6f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/core/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,9 +513,7 @@ def main(filename, url, http_request_method):
requests.application_identification(url)
# Specifies the technology supporting the web application
requests.technology_detection(response)
if response.info()[settings.X_POWERED_BY] :
server_banner = response.info()[settings.X_POWERED_BY]
elif response.info()[settings.SERVER] :
if response.info()[settings.SERVER] :
server_banner = response.info()[settings.SERVER]
# Procedure for target server's operating system identification.
requests.check_target_os(server_banner)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def sys_argv_errors():
DESCRIPTION = "The command injection exploiter"
AUTHOR = "Anastasios Stasinopoulos"
VERSION_NUM = "4.0"
REVISION = "46"
REVISION = "47"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
Expand Down

0 comments on commit b4cc6f5

Please sign in to comment.