mirror of https://github.com/1N3/Sn1per.git
Sn1per v1.4b by 1N3 @ CrowdShield
This commit is contained in:
parent
cd9c67d013
commit
dc90740907
|
|
@ -29,6 +29,9 @@ Sn1per is an automated scanner that can be used during a penetration test to enu
|
|||
https://goo.gl/96LCAg
|
||||
|
||||
## CHANGELOG:
|
||||
* v1.4b - Fixed install.sh executable references
|
||||
* v1.4b - Fixed Yasou dependencies in install.sh
|
||||
* v1.4b - Fixed minor issues with BruteX loot directory
|
||||
* v1.4 - Added Yasou for automatic web form brute forcing
|
||||
* v1.4 - Added MassBleed for SSL vulnerability detection
|
||||
* v1.4 - Added Breach-Miner for detection of breached accounts
|
||||
|
|
|
|||
15
install.sh
15
install.sh
|
|
@ -7,7 +7,6 @@ apt-get install host whois theharvester dnsenum dnsrecon curl nmap php5 php5-cur
|
|||
git clone https://github.com/1N3/Findsploit.git
|
||||
git clone https://github.com/1N3/BruteX.git
|
||||
git clone https://github.com/1N3/Goohak.git
|
||||
cp Goohak/goohak /usr/bin/ -f
|
||||
git clone https://github.com/1N3/XSSTracer.git
|
||||
git clone https://github.com/1N3/MassBleed.git
|
||||
git clone https://github.com/1N3/SuperMicro-Password-Scanner
|
||||
|
|
@ -16,9 +15,17 @@ git clone https://github.com/0xsauby/yasuo.git
|
|||
gem install ruby-nmap net-http-persistent mechanize text-table
|
||||
git clone https://github.com/vishnuraju/Breach-Miner-automated-.git Breach-Miner
|
||||
mkdir loot
|
||||
chmod +rx sniper
|
||||
chmod +rx bin/dnsdict6
|
||||
chmod +rx Goohak/goohak
|
||||
chmod +rx $DIR/sniper
|
||||
chmod +rx $DIR/bin/dnsdict6
|
||||
chmod +rx $DIR/Goohak/goohak
|
||||
chmod +rx $DIR/XSSTracer/xsstracer.py
|
||||
ln -s $DIR/sniper /usr/bin/sniper
|
||||
ln -s $DIR/Goohak/goohak /usr/bin/goohak
|
||||
ln -s $DIR/XSSTracer/xsstracer.py /usr/bin/xsstracer
|
||||
ln -s $DIR/Findsploit/findsploit /usr/bin/findsploit
|
||||
ln -s $DIR/Findsploit/copysploit /usr/bin/copysploit
|
||||
ln -s $DIR/Findsploit/compilesploit /usr/bin/compilesploit
|
||||
ln -s $DIR/MassBleed/massbleed /usr/bin/massbleed
|
||||
ln -s $DIR/BruteX/brutex /usr/bin/brutex
|
||||
echo "Be sure to install the following packages manually and update the sniper script references: dig dnsdict6 cmsmap samrdump inurlbr wafw00f showmount samrdump rpcinfo snmpwalk"
|
||||
echo "Done!"
|
||||
|
|
|
|||
4
sniper
4
sniper
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
# + -- --=[Sn1per v1.4 by 1N3 v20151130
|
||||
# + -- --=[Sn1per v1.4b by 1N3 v20151210
|
||||
# + -- --=[http://crowdshield.com
|
||||
#
|
||||
# Sn1per - Automated Pentest Recon Tool
|
||||
|
|
@ -22,7 +22,6 @@
|
|||
|
||||
TARGET="$1"
|
||||
LOOT_DIR="loot"
|
||||
FINDSPLOIT_DIR="Findsploit"
|
||||
CMSMAP="CMSmap/cmsmap.py"
|
||||
SAMRDUMP="bin/samrdump.py"
|
||||
DNSDICT6="bin/dnsdict6"
|
||||
|
|
@ -568,6 +567,7 @@ ruby yasuo.rb -r $TARGET -b all
|
|||
cd ../BruteX/
|
||||
./brutex $TARGET
|
||||
rm -f hydra.restore
|
||||
mv loot/* ../loot/
|
||||
cd ..
|
||||
echo ""
|
||||
rm -f scan.log
|
||||
|
|
|
|||
Loading…
Reference in New Issue