Hacking Fast-Security-Scanners - Security Checks For Your Researches

Jaysu

Banned
Joined
21.09.20
Messages
122
Reaction score
837
Points
63

A small contribution to community :)

We use all these tools in security assessments and in our vulnerability monitoring service

Check your domain for DNS NS takeover (Repo)​

docker run --dns=8.8.8.8 -e VULN_ID=dns_ns_takeover -e DOMAIN=site.com whitespots/dnsnstakeover

Cache Poisoning (Repo)​

docker run --rm -it --name wcdscanner -e VULN_ID=wcd -e FIND_XSS=False -e DOMAIN=site.com whitespots/wcdxss

XSS via Meta tags (exploitable with cache poisoning) (Repo)​

docker run --rm -it --name wcdscanner -e VULN_ID=xss_meta -e FIND_XSS=True -e DOMAIN=site.com whitespots/wcdxss

CORS misconfiguration on pages from Webarchives (Repo)​

docker run --rm -it --name corsfinder -e VULN_ID=cors -e DOMAIN=site.com whitespots/corsfinder

CRLF vulnerabilities via url path and headers (Repo)​

docker run --rm -it --name crlf-finder -e VULN_ID=crlf -e DOMAIN=site.com whitespots/crlf-finder

Path Traversal via url path (Repo)​

docker run --rm -it --name ptrav-finder -e VULN_ID=ptrav -e DOMAIN=site.com whitespots/ptrav-finder

Check your 403 for bypasses (Repo)​

docker run --rm --name forbid-bypasser -e VULN_ID=forbid_bypassed -e DOMAIN=site.com whitespots/forbid-bypasser

Find admin panels (Repo)​

docker run --rm -it --name adminfinder -e VULN_ID=adminfinder -e DOMAIN=site.com whitespots/adminfinder

Check your site for social networks "accounts takeover" via broken social network links (Repo)​

docker run --rm -it --name scanner -e VULN_ID=broken_social -e DOMAIN=site.com whitespots/brokensocial

Download
 
Top Bottom