Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Scannerweb — Python3 vulnerability scanner that fuzzes all URLs of a target website and scans them for web vulnerabilities, with optional GoBuster integration for automated fuzzing. | Kitploit
Tools/GitHubGitHub/khalidhusain786/scannerweb
Vulnerability ScannersWeb Vulnerability ScannersWeb SecurityFuzzing
GitHubkhalidhusain786/scannerweb

Scannerweb

Python3 vulnerability scanner that fuzzes all URLs of a target website and scans them for web vulnerabilities, with optional GoBuster integration for automated fuzzing.

View Repository
148 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Scannerweb

Vulnerability Scanner written in python3, It Fuzzes All URLs of target website & then scan them for scanner web

Screeenshot

CAPTURE 1 CAPTURE 1

Navigate to the /opt directory (optional)

root@kitploit:~
cd /opt/

Clone this repository

root@kitploit:~

 git clone https://github.com/Khalidhusain786/Scannerweb.git

Navigate to scannerweb folder

root@kitploit:~
 cd Scannerweb

Installing dependencies

root@kitploit:~

 sudo apt install python3-pip 

 pip3 install -r requirements.txt

Installing GoBuster (For More Installation Method, Visit: https://github.com/OJ/gobuster)

NOTE: GoBuster Tool is Only Required for using --fuzz-scan flag

PS: You need at least go 1.16.0 to compile gobuster.

root@kitploit:~
 go install github.com/OJ/gobuster/v3@latest

Help Menu

root@kitploit:~
 chmod +x scannerweb.py

 python3 scannerweb.py --help

Scanning Single URL

root@kitploit:~

 python3 scannerweb.py https://example.com/admin/dashboard.php

Scanning Multiple URLs

root@kitploit:~

 python3 scannerweb.py -uL url_list.txt

Automatically FUZZ URLs and Scan Them for web

root@kitploit:~
sudo apt install gobuster

python3 scannerweb.py -f -u https://www.example.com -w wrordlst.txt
Download Tool