diff --git a/README.md b/README.md index 2dd5428..a2777d5 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ https://gist.github.com/1N3/8214ec2da2c91691bcbc ``` ## CHANGELOG: +* v1.7g - Added email security/spoofing checks * v1.7f - Added Zenmap XML auto-imports * v1.7f - Added ClamAV RCE Nmap script * v1.7e - Fixed minor issue with airstrike and nuke mode diff --git a/install.sh b/install.sh index c715e1b..226b90e 100644 --- a/install.sh +++ b/install.sh @@ -25,6 +25,7 @@ read answer echo -e "$OKORANGE + -- --=[Installing package dependencies...$RESET" apt-get install zenmap sslyze joomscan uniscan xprobe2 cutycapt unicornscan waffit host whois arachni theharvester dnsenum dirb dnsrecon curl nmap php5 php5-curl wapiti hydra iceweasel wpscan sqlmap arachni w3af golismero nbtscan enum4linux cisco-torch metasploit-framework theharvester dnsenum nikto smtp-user-enum whatweb python nbtscan sslscan amap +pip install dnspython colorama tldextract echo -e "$OKORANGE + -- --=[Installing gem dependencies...$RESET" gem install rake @@ -48,6 +49,7 @@ git clone https://github.com/nccgroup/shocker.git git clone https://github.com/joaomatosf/jexboss.git git clone https://github.com/byt3bl33d3r/CrackMapExec.git git clone https://github.com/drwetter/testssl.sh.git +git clone https://github.com/lunarca/SimpleEmailSpoofer echo -e "$OKORANGE + -- --=[Setting up environment...$RESET" mkdir loot 2> /dev/null diff --git a/sniper b/sniper index 2f27d05..46cbe2d 100644 --- a/sniper +++ b/sniper @@ -223,6 +223,8 @@ if [ "$MODE" = "stealth" ]; then mv -f *_ips.txt loot/ 2>/dev/null echo -e "$OKGREEN + -- ----------------------------=[Gathering DNS Subdomains]=---------------- -- +$RESET" python Sublist3r/sublist3r.py -d $TARGET -vvv 2>/dev/null + echo -e "$OKGREEN + -- ----------------------------=[Checking Email Security]=----------------- -- +$RESET" + python SimpleEmailSpoofer/spoofcheck.py $TARGET 2>/dev/null fi echo "" echo -e "$OKGREEN + -- ----------------------------=[Running TCP port scan]=------------------- -- +$RESET" @@ -311,7 +313,9 @@ if [ "$MODE" = "airstrike" ]; then dnsenum $a mv -f *_ips.txt loot/ 2>/dev/null echo -e "$OKGREEN + -- ----------------------------=[Gathering DNS Subdomains]=---------------- -- +$RESET" - python Sublist3r/sublist3r.py -d $a -vvv 2>/dev/null + python Sublist3r/sublist3r.py -d $a -vvv 2>/dev/null + echo -e "$OKGREEN + -- ----------------------------=[Checking Email Security]=----------------- -- +$RESET" + python SimpleEmailSpoofer/spoofcheck.py $a 2>/dev/null fi echo "" echo -e "$OKGREEN + -- ----------------------------=[Running TCP port scan]=------------------- -- +$RESET" @@ -427,6 +431,8 @@ then mv -f *_ips.txt loot/ 2>/dev/null echo -e "$OKGREEN + -- ----------------------------=[Gathering DNS Subdomains]=---------------- -- +$RESET" python Sublist3r/sublist3r.py -d $TARGET -vvv 2>/dev/null + echo -e "$OKGREEN + -- ----------------------------=[Checking Email Security]=----------------- -- +$RESET" + python SimpleEmailSpoofer/spoofcheck.py $TARGET 2>/dev/null fi echo "" echo -e "$OKGREEN + -- ----------------------------=[Pinging host]=---------------------------- -- +$RESET"