maintenance
scheduled maintenance on the File Share service On Sunday, August 23 at 8:30am (GMT+3), we'll be upgrading the database behind the website The work is expected to take 3–4 hours.

scheduled maintenance on the File Share service On Sunday, August 23 at 8:30am (GMT+3), we'll be upgrading the database behind the website The work is expected to take 3–4 hours.
https://github.com/sqlmapproject/sqlmap/wiki/usage
### Basic Enumeration
| Goal | Command |
|---|---|
| List databases | `sqlmap -u "http://target.com/page.php?id=1" --dbs` |
| List tables in a DB | `sqlmap -u "http://target.com/page.php?id=1" -D dbname --tables` |
Recon is where bounties get paid. Here's the repeatable process I've dialed in:
1. Surface Mapping — amass intel + crt.sh + shodan Zero-touch passive recon. Grab subdomains, ASN data, exposed services. Don't send a single packet yet.
2. Scope Validation — puredns + httpx + gau Resolve everything, filter live hosts, collect historical URLs. Look for 403s, large response bodies, and wildcard DNS gaps.
3. Fingerprinting & Discovery — katana + feroxbuster + whatweb Recursive crawling + directory brute-force. Hunt for API endpoints, .git leaks, admin panels, and hidden parameter routes.
4. Parameter Analysis — waybackurls | gf | qsreplace Find reflection points — id=, file=, redirect=, next=. Low-hanging XSS, open redirects, and SSRF candidates live here.
5. Service Probing — nmap -sV -sC + nuclei + ffuf (vhost) Targeted port scans + CVE template matching + virtual host fuzzing.