WAF Bypass & Real IP Finder Tool
python3 script.py -d
-d, --domain Specify the target domain (example.com) -h, --help Show this help message and exit
python3 script.py -d example.com
python3 security_tool.py -d -i --all
-d, --domain Target domain for scanning (example.com) -i, --ip Target IP address for scanning (192.168.1.1) --all Run all security checks on the target -h, --help Show this help message and exit
- DNS Lookup
- WHOIS Lookup
- Open Port Scanning (Nmap)
- SSL Certificate Analysis
- Shodan Recon
- VirusTotal Scan
- SQL Injection Test (SQLMap)
- XSS Vulnerability Test
- Open Redirect Test
- Local File Inclusion (LFI) Test
- Security Headers Check
1️⃣ Basic domain scan: python3 security_tool.py -d example.com
2️⃣ Scan an IP for open ports: python3 security_tool.py -i 192.168.1.1
3️⃣ Run all available scans: python3 security_tool.py -d example.com -i 192.168.1.1 --all