
Automatizza l'esecuzione di exploit/PoC contro i risultati di ricerca di Shodan - invio concorrente, filtraggio, output strutturato ed esportazione.
Automatizza l'esecuzione di exploit e PoC sui risultati di ricerca di Shodan. Interroga Shodan, filtra i target ed esegui i tuoi script contro ogni corrispondenza - in modo concorrente, con output strutturato ed esportazione.
Hai uno script PoC che accetta un IP e una porta. Vuoi eseguirlo contro ogni host che corrisponde a una query Shodan. ShodScript colma il divario: cerca, filtra, distribuisci, raccogli i risultati.
pip install git+https://github.com/momenbasel/shodscript.git
Oppure clona e installa localmente:
git clone https://github.com/momenbasel/shodscript.git
cd shodscript
pip install -e .
Imposta la tua chiave API Shodan:
export SHODAN_API_KEY="your-api-key-here"
Oppure passala con --api-key / -k su ogni comando.
# Table output
shodscript search "apache 2.4.49"
# Filter by port and country
shodscript search "nginx" --port 443 --country US --limit 50
# JSON output
shodscript search "apache" --json
# Run check_http.py against each host matching "apache 2.4.49"
shodscript run "apache 2.4.49" ./exploit.py
# 20 concurrent workers, 60s timeout per target
shodscript run "apache 2.4.49" ./exploit.py -w 20 -t 60
# Filter to port 80 in Germany, save results
shodscript run "apache" ./exploit.py --port 80 --country DE -o results.json
# CSV export
shodscript run "nginx" ./check.py -o results.csv --format csv
# Only show successful hits
shodscript run "apache" ./exploit.py --quiet
Tre modalità tramite --pass-via:
# Pass via environment variables
shodscript run "nginx" ./script.py --pass-via env
# Pass via stdin
shodscript run "nginx" ./script.py --pass-via stdin
# Forward extra arguments to the script
shodscript run "nginx" ./script.py -e "--verbose" -e "--ssl"
# One IP per line - pipe to other tools
shodscript ips "apache 2.4.49" | xargs -I{} curl -s http://{}
# Include port
shodscript ips "apache 2.4.49" --with-port
# Pipe to nuclei, httpx, etc.
shodscript ips "apache 2.4.49" -n 500 | httpx -silent
shodscript host 1.2.3.4
shodscript host 1.2.3.4 --json
shodscript info
Il tuo script deve solo accettare un IP e una porta. Esempio minimo:
#!/usr/bin/env python3
import sys
ip = sys.argv[1]
port = int(sys.argv[2])
# Your exploit/check logic here
print(f"[+] {ip}:{port} - vulnerable")
# Exit 0 = success (marked green), non-zero = failure (marked red)
Vedi la directory examples/ per altri pattern, inclusi script basati su env e di banner grabbing.
I risultati possono essere salvati in JSON, JSONL o CSV:
shodscript run "query" ./script.py -o results.json # JSON (default)
shodscript run "query" ./script.py -o results.jsonl --format jsonl # One JSON object per line
shodscript run "query" ./script.py -o results.csv --format csv # CSV
Ogni record contiene: ip, port, host, org, country, returncode, success, stdout, stderr, elapsed, error.
MIT
Solo per test di sicurezza e ricerca autorizzati.
| Modalità | Come il tuo script riceve il target |
|---|
arg (predefinito) | python3 script.py <ip> <port> |
env | variabili d'ambiente TARGET_IP, TARGET_PORT, TARGET_HOST |
stdin | ip:port\n scritto su stdin |