
PoC、CVE-2025-55182に関するReact2Shellハンティング
Shodan にアクセスします。
検索バーに以下のクエリを入力して、脆弱なバージョンの Next.js フレームワークを実行しているデバイスを検索します:
http.component:"Next.js" 200

ターミナルで Shodan CLI を使用して検索結果をダウンロードします:
shodan download nextjs_vuln "http.component:'Next.js' 200"

結果をフィルタリングして、脆弱なバージョンの Next.js を実行しているドメイン、IP を特定します:
shodan parse --fields ip_str nextjs_data.json.gz > ips.txt
shodan parse --fields hostnames nextjs_data.json.gz > domains.txt


nuclei を使用して脆弱性をスキャンします:
cat domains.txt | nuclei -t ./nuclei-templates/http/cves/2025/CVE-2025-55182.yaml
