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' |
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
#!/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 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
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 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
apt-get update && apt-get autoclean -y && apt-get clean -y && apt-get autoremove -y | |
find /tmp -ctime +10 -exec rm -rf {} + | |
apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y | |
apt-get update && apt-get autoclean -y && apt-get clean -y && apt-get autoremove -y |
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 | |
domain=$1 | |
location=$2 | |
if [[ $# -eq 0 ]] ; then | |
echo '-------------------------------' | |
echo 'please supply url, e.g C2' | |
echo '-------------------------------' | |
exit 0 | |
fi | |
if [[ $# -eq 1 ]] ; then |
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
<# | |
For peerlyst @grotezinfosec | |
Requires powershelgl 3.0 | |
If your running nix* use: | |
curl http://freegeoip.net/xml/ | |
OR | |
Powershell V2 (flare VM [malware analysis] | |
(new-object System.Net.WebClient).DownloadString("http://freegeoip.net/xml/") |
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
# yaragen Dockerfile | |
# | |
# make sure to have this file called "Dockerfile" without quotes. | |
# docker build -t yaragen . | |
# docker run --rm -ti yaragen -h | |
# Pull the base image. | |
FROM ubuntu:16.04 | |
# Install pre-requisites. |
OlderNewer