cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
33927885 33m-subdomain-wordlist.txt
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 | |
strip=$(echo $1|sed 's/https\?:\/\///') | |
echo "" | |
echo "######################################" | |
echo $strip | |
echo "######################################" | |
echo "" | |
massscan -p1-65535 $(dig +short $strip|grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b"|head -1) --max-rate 1000 |& tee $strip_scan |
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 | |
discovery(){ | |
hostalive $1 | |
screenshot $1 | |
cleanup $1 | |
cat ./$1/$foldername/responsive-$(date +"%Y-%m-%d").txt | sort -u | while read line; do | |
sleep 1 | |
dirsearcher $line | |
report $1 $line |
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 | |
echo "[*]Basic Aquatone Scan Started [*]" | |
aquatone-discover -d $1 --threads 10 | |
aquatone-scan -d $1 --ports huge --threads 10 | |
DEBUG=nightmare xvfb-run -a aquatone-gather -d $1 --threads 10 | |
aquatone-takeover -d $1 --threads 10 | |
echo "[*]sublistr scan for subdomains[*]" | |
python /root/Sublist3r/sublist3r.py -v -b -d $1 -o $1-subdomains.txt | |
dos2unix $1-subdomains.txt | |
echo "Merging found subdomains" |
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 | |
#Script by OliverK | |
#Downloads _every_ wordlist in the packet storm security site. | |
#April 18th, 2011 | |
# Updated Oct , 2th, 2012 | |
mkdir common | |
cd common | |
wget --no-check-certificate http://dl.packetstormsecurity.net/Crackers/wordlists/common-4 | |
wget --no-check-certificate http://dl.packetstormsecurity.net/Crackers/wordlists/common-3 | |
wget --no-check-certificate http://dl.packetstormsecurity.net/Crackers/wordlists/common-2 |
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
Compress a directory tree into a tarball using pigz | |
#!/bin/sh | |
if [ "$1" == "" ]; then | |
echo "Usage: $0 <folder to compress>" | |
exit | |
fi | |
NAME=`basename $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
#!/bin/sh | |
if [ "$1" == "" ]; then | |
echo "Usage: $0 <file to uncompress>" | |
exit | |
fi | |
pigz -dc $1 | tar xf - |
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 | |
# + -- --=[ReverseAPK v1.2 by @xer0dayz | |
# + -- --=[https://xerosecurity.com | |
# | |
# ABOUT: | |
# Quickly analyze and reverse engineer Android applications. SHAMELESSLY STOLEN FROM XER0DAYZ. | |
# apt-get install unzip smali apktool dex2jar jadx | |
# | |
# INSTALL: | |
# ./install |
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
id: apk-recon | |
info: | |
name: APK Recon | |
author: nullenc0de | |
severity: info | |
tags: android,file | |
file: | |
- extensions: |
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 | |
# + -- --=[ReverseAPK v1.2 by @xer0dayz | |
# + -- --=[https://xerosecurity.com | |
# | |
# ABOUT: | |
# Quickly analyze and reverse engineer Android applications. SHAMELESSLY STOLEN FROM XER0DAYZ. | |
# apt-get install unzip smali apktool dex2jar jadx | |
# | |
# INSTALL: | |
# ./install |