Skip to content

Instantly share code, notes, and snippets.

@vxrv
Forked from IAmStoxe/LazyCrtUrlGrab.sh
Created July 12, 2020 08:41
Show Gist options
  • Save vxrv/d751a0f6e0230864705bb279ff667ca5 to your computer and use it in GitHub Desktop.
Save vxrv/d751a0f6e0230864705bb279ff667ca5 to your computer and use it in GitHub Desktop.
curl -s 'https://crt.sh/?q=%25.DOMAIN_NAME_HERE.com&output=json' \
| jq -r '.[].name_value' \
| sed 's/\*\.//g' \
| sort -u \
| xargs -L1 -I % sh -c './main --ignore-ssl --json="./tmp/%.json" --url="%"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment