
CPH:SEC WAES: Web Auto Enum & Scanner - Auto enums website(s) and dumps files as result

Version 1.2.77
WAES is a professional-grade bash-based web enumeration and reconnaissance platform designed for Capture The Flag (CTF) competitions, Bug Bounty hunting, and Penetration Testing. It automates the complex workflow of security scanning by orchestrating best-in-class tools into a unified, high-performance pipeline.
fast) to Advanced Exploitation (advanced).WAES/
├── waes.sh # Main CLI entry point
├── waes-watch.sh # Continuous monitoring & baselining script
├── install.sh # Dependency installer
├── lib/
│ ├── osint_scanner.sh # Subdomain & OSINT module
│ ├── param_discovery.sh # Parameter discovery engine
│ ├── stealth.sh # Evasion configuration library
│ ├── batch_scanner.sh # Multi-target orchestrator
│ ├── parallel_scan.sh # Job queue & concurrency manager
│ ├── profile_loader.sh # YAML profile parser
│ ├── plugin_manager.sh # Plugin hook system
│ └── exporters/ # JSON, XML, CSV, MD generators
├── profiles/ # Scan configuration profiles (YAML)
├── plugins/ # Extension scripts (Slack, etc.)
├── report/ # Default output directory
└── docker-compose.yml # Container orchestration config
Requires a Linux environment (Kali Linux recommended).
git clone https://github.com/Shiva108/WAES.git
cd WAES
chmod +x install.sh
sudo ./install.sh
The installer automatically detects your package manager and installs dependencies like nmap, nikto, gobuster, etc.
Run WAES in a container to avoid dependency conflicts.
# Build the image
docker build -t waes:latest .
# Or using Compose
docker-compose up -d
# Standard scan (HTTP)
sudo ./waes.sh -u 10.10.10.130
# HTTPS Deep Scan
sudo ./waes.sh -u target.com -s -t deep
# Generate HTML & JSON reports
sudo ./waes.sh -u target.com -t advanced -H -J
Use pre-tuned profiles for specific scenarios:
# Capture The Flag (Aggressive)
sudo ./waes.sh -u 10.10.10.130 --profile ctf-box
# Bug Bounty (Stealthy)
sudo ./waes.sh -u target.com --profile bug-bounty
# Available profiles: ctf-box, web-app, bug-bounty, quick-scan
Scan entire networks or lists of domains efficiently:
# Scan a list of targets (supports CIDR)
sudo ./waes.sh --targets targets.txt --parallel
# Targets file example:
# 192.168.1.10
# 10.10.10.0/24
# example.com
# Run a transient scan container
docker run --rm -v $(pwd)/report:/opt/waes/report waes:latest -u scanme.nmap.org
# Run with a profile
docker run --rm -v $(pwd)/report:/opt/waes/report waes:latest \
-u target.com --profile ctf-box
Activate evasion techniques before scanning:
# Source the stealth library
source lib/stealth.sh
# Configure level (low, medium, high, paranoid)
configure_stealth_mode high
# Run scan
sudo ./waes.sh -u target.com --profile bug-bounty
WAES supports a hook-based plugin system.
Managing Plugins:
./lib/plugin_manager.sh list
./lib/plugin_manager.sh load slack_notify
Enabled Plugins:
We welcome contributions!
git checkout -b feature/amazing-feature.git commit -m 'Add amazing feature'.git push origin feature/amazing-feature.Please ensure all new scripts pass bash -n syntax checks.
This project is licensed under the GPL-2.0 License. See the LICENSE file for details.
Shiva @ CPH:SEC