Created
October 13, 2017 19:01
-
-
Save MrThreat/8125b501630aab6db25bdc5f7a5cbfd0 to your computer and use it in GitHub Desktop.
tor | url scraper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while read line; do torsocks curl $line 2>&1 |grep -o -E 'href="([^"#]+)"' |cut -d'"' -f2 |sort -u |sed '/^\// d' | \ | |
grep -o -P '.{0,16}.onion' | sort -u;done <list.lst |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment