VXScan is a Python3 comprehensive scanning tool, mainly used for sensitive file detection (directory scanning and js leak interface), WAF/CDN identification, port scanning, fingerprint/service identification, operating system identification, weak password detection, POC scanning, SQL injection, winding Pass CDN, check the next station.
Version 1.0 Update
Also Read – WhatBreach : OSINT Tool To Find Breached Emails & Databases
Requirements
Features
Usage
python3 Vxscan.py -h
optional arguments:
-h, –help show this help message and exit
-u URL, –url URL Start scanning this url -u xxx.com
-i INET, –inet INET cidr eg. 1.1.1.1 or 1.1.1.0/24
-f FILE, –file FILE read the url from the file
-t THREADS, –threads THREADS
Set scan thread, default 150
-e EXT, –ext EXT Set scan suffix, -e php,asp
-w WORD, –word WORD Read the dict from the file
python3 vxscan.py -u http://www.xxx.com/
python3 vxscan.py -f hosts.txt
python3 vxscan.py -i 127.0.0.0/24
python3 vxscan.py -u http://www.xxx.com -e php -t 100 -w ../dict.txt
Structure
Waf/CDN list
Output
The following is the AWVS scanner test website results
In Linux, groups organize user accounts and define shared access to files and resources. Every…
The touch command in Linux does two things: it creates new empty files, and it updates the…
The rsync command in Linux synchronizes files and directories between two locations, locally or over SSH. Unlike scp,…
The patch command in Linux applies a set of changes from a diff file to one or…
The basename command in Linux extracts the last component of a file path, removing the leading directory…
The timeout command in Linux runs a command with a time limit and terminates it when the limit is reached. It is part of GNU coreutils, available on virtually every Linux distribution. It is most useful for commands with no built-in timeout option, such as ping, curl, tcpdump, or a custom script that might hang indefinitely. How the timeout Command Works in Linux The syntax is: bashtimeout [OPTIONS] DURATION COMMAND [ARG]...…