Skip to content

Commit a4776ce

Browse files
authored
stable v5.1.1
1 parent bfeac91 commit a4776ce

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Waymap - Web Vulnerability Scanner.
22

3-
**Current Version**: 4.9.1
3+
**Current Version**: 5.1.1
44
**Author**: Trix Cyrus
55
**Copyright**: © 2024 Trixsec Org
66
**Maintained**: Yes
@@ -148,7 +148,12 @@ Check out this video to see Waymap in action:
148148

149149
### v5.0.1
150150
- added no prompt and --threads usage in crawling
151-
- bug fix
151+
- bug fix, stablized waymap for faster processing
152+
153+
### v5.1.1
154+
-- added new arg "--check-updates" when this is used it will check for latest version of waymap and automatically update it
155+
156+
- no more forced updates
152157
## Installation and Usage
153158

154159
### Clone the repository:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.1
1+
5.1.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='waymap',
9-
version='5.0.1',
9+
version='5.1.1',
1010
description='Waymap is a powerful web vulnerability scanner designed to identify vulnerabilities in websites.#v1.0.3dev',
1111
author='Trix Cyrus',
1212
Developer='Trix',

waymap.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def log_error(message):
8282
data_dir = os.path.join(os.getcwd(), 'data')
8383
session_dir = os.path.join(os.getcwd(), 'session')
8484

85-
WAYMAP_VERSION = "5.0.1"
85+
WAYMAP_VERSION = "5.1.1"
8686
AUTHOR = "Trix Cyrus"
8787
COPYRIGHT = "Copyright © 2024 Trixsec Org"
8888

@@ -112,7 +112,7 @@ def print_banner():
112112
░╚██╗████╗██╔╝███████║░╚████╔╝░██╔████╔██║███████║██████╔╝
113113
░░████╔═████║░██╔══██║░░╚██╔╝░░██║╚██╔╝██║██╔══██║██╔═══╝░
114114
░░╚██╔╝░╚██╔╝░██║░░██║░░░██║░░░██║░╚═╝░██║██║░░██║██║░░░░░
115-
░░░╚═╝░░░╚═╝░░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝░░░░░ Fastest And Optimised Web Vulnerability Scanner v5.0.1
115+
░░░╚═╝░░░╚═╝░░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═╝░░░░░ Fastest And Optimised Web Vulnerability Scanner v5.1.1
116116
"""
117117
print(colored(banner, 'cyan'))
118118
print(colored(f"Waymap Version: {WAYMAP_VERSION}", 'yellow'))
@@ -355,7 +355,6 @@ def perform_profile_scan(profile_url, profile_type):
355355

356356
def main():
357357
print_banner()
358-
check_for_updates()
359358

360359
if not check_internet_connection():
361360
handle_error("No internet connection. Please check your network and try again.")
@@ -382,6 +381,8 @@ def main():
382381
parser.add_argument('--no-prompt', '-np', action='store_true', help='Automatically use default input for prompts')
383382
parser.add_argument('--profileurl', '-pu', type=str, help='Target URL for scanning , example: https://example.com/')
384383
parser.add_argument('--profile', '-p', choices=['high-risk', 'critical-risk'], help="Specify the profile: 'high-risk' or 'critical-risk'. This skips crawling.")
384+
parser.add_argument('--check-updates', action='store_true', help='Check for Latest Waymap updates.')
385+
385386
args = parser.parse_args()
386387

387388
target = args.target
@@ -393,6 +394,9 @@ def main():
393394
profile_url = args.profileurl
394395
profile_type = args.profile
395396

397+
if args.check_updates:
398+
check_for_updates()
399+
396400
if multi_url_file:
397401
targets = load_targets_from_file(multi_url_file)
398402
if not targets:

0 commit comments

Comments
 (0)