Webscab

Advanced Web Security Auditing Tool

Overview

Webscab is a comprehensive tool designed to scan web domains for vulnerabilities, extract assets and secrets, and generate detailed reports on potential security risks. Built for ethical use and modular analysis, it’s ideal for security professionals.

Usage

Run Webscab directly from your command line to analyze your target domain. Its features include comprehensive crawling, static code analysis, vulnerability detection, and more—always use it only on systems where you have explicit permission.

Installation

For Linux / Unix

sudo apt update && sudo apt install git python3 python3-pip -y
git clone https://github.com/SYSAI-debug/webscab-WS.git
cd webscab-WS
chmod +x wscab.py
./wscab.py <target_url> -d 2
        #Example: ./wscab.py https://example.com -d 2
      

For Windows (PowerShell)

Set-ExecutionPolicy Bypass -Scope Process -Force;
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;
git clone https://github.com/SYSAI-debug/webscab-WS.git
cd webscab-WS
# If you have a packaged executable, run it; otherwise, run via Python:
python wscab.py <target_url> -d 2
        #Example: ./wscab.py https://example.com -d 2
      

For Android/Termux

pkg update -y && pkg install git python -y
git clone https://github.com/SYSAI-debug/webscab-WS.git
cd webscab-WS
chmod +x wscab.py
./wscab.py <target_url> -d 2
        #Example: ./wscab.py https://example.com -d 2
      

For Other Mobile Linux Devices

sudo apt-get update && sudo apt-get install git python3 python3-pip -y
git clone https://github.com/SYSAI-debug/webscab-WS.git
cd webscab-WS
chmod +x wscab.py
./wscab.py <target_url> -d 2
        #Example: ./wscab.py https://example.com -d 2
      

Join Our Community

We invite developers and security enthusiasts to join our growing Git-based community. Contribute by reporting issues, submitting pull requests, or sharing your feedback.