Skip to content

Instantly share code, notes, and snippets.

@nil0x42
Created October 21, 2020 15:57
Show Gist options
  • Save nil0x42/80ba65ab590dae0c55e3095b5915af43 to your computer and use it in GitHub Desktop.
Save nil0x42/80ba65ab590dae0c55e3095b5915af43 to your computer and use it in GitHub Desktop.
# extract top subdomains from your firefox history
# by @nil0x42
grep -Pao "https://[a-zA-Z0-9.-]+" ~/.mozilla/firefox/*/places.sqlite \
| sort -u | sed 's#.*://\([a-zA-Z0-9-]*\)\..*#\1#' | uniq -c | sort -rn
@Hack404-007
Copy link

">

@Hack404-007
Copy link

pentest123

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