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 axel "$line"; done <$1 |
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
| proxychains curl ifconfig.co |
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 host $line | cut -d ' ' -f 5 | rev | cut -c 2- | rev \ | |
| |grep -v "(" >> domains.txt ; done <ips.lst |
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
| #!/bin/bash | |
| clear | |
| rm temp.txt | |
| pbpaste> temp.txt | |
| cat temp.txt | grep -o '[[:alnum:]+\.\_\-]*@[[:alnum:]+\.\_\-]*' $file | sort | uniq -i |pbcopy |
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 |
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
| curl http://$1 2>&1 |grep -o -E 'href="([^"#]+)"' |cut -d'"' -f2 |sort -u |sed '/^\// d' |
NewerOlder