Skip to content

Instantly share code, notes, and snippets.

View MrThreat's full-sized avatar

MrThreat

  • @grotezinfosec
View GitHub Profile
@MrThreat
MrThreat / gist:10f57b39a0b88b1d32f88563bb992f29
Created October 13, 2017 21:18
Download a list of files |loop
while read line; do axel "$line"; done <$1
proxychains curl ifconfig.co
@MrThreat
MrThreat / gist:052a5d44f23d0d0919aae69938243b5f
Created October 13, 2017 19:22
ip to host to domain | sorted
while read line; do host $line | cut -d ' ' -f 5 | rev | cut -c 2- | rev \
|grep -v "(" >> domains.txt ; done <ips.lst
@MrThreat
MrThreat / gist:abe6ae837e0bf6b41e4234e6bb7ae8de
Created October 13, 2017 19:16
clipboard |email extract + sort |clipboard
#!/bin/bash
clear
rm temp.txt
pbpaste> temp.txt
cat temp.txt | grep -o '[[:alnum:]+\.\_\-]*@[[:alnum:]+\.\_\-]*' $file | sort | uniq -i |pbcopy
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
@MrThreat
MrThreat / gist:fbeb32888feea84b4e9e0d86f96903d0
Created October 13, 2017 18:58
curl | site | page | link dumper
curl http://$1 2>&1 |grep -o -E 'href="([^"#]+)"' |cut -d'"' -f2 |sort -u |sed '/^\// d'