
Cross Origin Resource Sharing Fehlkonfigurations-Scanner
Ein CORS-Fehlkonfigurations-Scanner-Tool basierend auf Golang, entwickelt mit Fokus auf Geschwindigkeit und Präzision!
$ go get -u -v github.com/shivangx01b/CorsMe
Einzelne URL
echo "https://example.com" | ./CorsMe
Mehrere URLs
cat http_https.txt | ./CorsMe -t 70
Wildcard erlauben ... Wenn Access-Control-Allow-Origin * ist, wird es ausgegeben
cat http_https.txt | ./CorsMe -t 70 -wildcard
Header hinzufügen falls erforderlich
cat http_https.txt | ./CorsMe -t 70 -wildcard -header "Cookie: Session=12cbcx...."
Ausgabe in Datei speichern
cat http_https.txt | ./CorsMe -t 70 -output audit.logs
Weitere Methode hinzufügen falls erforderlich
cat http_https.txt | ./CorsMe -t 70 -wildcard -header "Cookie: Session=12cbcx...." -method "POST"
Tipp
subfinder -d hackerone.com -nW -silent | ./httprobe -c 70 -p 80,443,8080,8081,8089 | tee http_https.txt
cat http_https.txt | ./CorsMe -t 70
