Skip to content

Instantly share code, notes, and snippets.

@0xbharath
Created April 22, 2018 17:02
Show Gist options
  • Save 0xbharath/bbd462bf99a8392d20d2a97fc0cd3e36 to your computer and use it in GitHub Desktop.
Save 0xbharath/bbd462bf99a8392d20d2a97fc0cd3e36 to your computer and use it in GitHub Desktop.
A quick and dirty bash one-liner to find sub-domains using certspotter API
find-cert()
{ curl -s https://certspotter.com/api/v0/certs?domain=$1 | jq -c '.[].dns_names' | grep -o '"[^"]\+"'; }
@opexxx
Copy link

opexxx commented Nov 12, 2019

@opexxx
Copy link

opexxx commented Nov 12, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment