Skip to content

Instantly share code, notes, and snippets.

@nullenc0de
Last active August 16, 2022 17:29
Show Gist options
  • Save nullenc0de/3e92c095d47b6eb42e3e57b5e077fc3c to your computer and use it in GitHub Desktop.
Save nullenc0de/3e92c095d47b6eb42e3e57b5e077fc3c to your computer and use it in GitHub Desktop.
Find Missing Scanner Plugins
curl https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json |jq -r '.vulnerabilities[].cveID' |while read cve; do echo "https://www.tenable.com/plugins/search?q=cves%3A%28%22$cve%22%29&sort=&page=1" |httpx -silent -match-string "No results found" ; done
Find Active Exploits
cat /tmp/cve.txt |cut -d "%" -f4 | cut -c 3- |while read cve; sleep 5s; do echo "https://github.com/trickest/cve/search?q=$cve" |httpx -silent -match-string "code result" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment