mirror of https://github.com/1N3/Sn1per.git
Sn1per v1.4c by 1N3@CrowdShield
This commit is contained in:
parent
dc90740907
commit
bf7cc4e220
|
|
@ -1,4 +1,4 @@
|
||||||
+ -- --=[Sn1per v1.4 by 1N3
|
+ -- --=[Sn1per v1.4c by 1N3
|
||||||
+ -- --=[http://crowdshield.com
|
+ -- --=[http://crowdshield.com
|
||||||
|
|
||||||
# Sn1per - Automated Pentest Recon Scanner
|
# Sn1per - Automated Pentest Recon Scanner
|
||||||
|
|
@ -29,6 +29,7 @@ Sn1per is an automated scanner that can be used during a penetration test to enu
|
||||||
https://goo.gl/96LCAg
|
https://goo.gl/96LCAg
|
||||||
|
|
||||||
## CHANGELOG:
|
## CHANGELOG:
|
||||||
|
* v1.4c - Reordered 3rd party extensions
|
||||||
* v1.4b - Fixed install.sh executable references
|
* v1.4b - Fixed install.sh executable references
|
||||||
* v1.4b - Fixed Yasou dependencies in install.sh
|
* v1.4b - Fixed Yasou dependencies in install.sh
|
||||||
* v1.4b - Fixed minor issues with BruteX loot directory
|
* v1.4b - Fixed minor issues with BruteX loot directory
|
||||||
|
|
|
||||||
17
sniper
17
sniper
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# + -- --=[Sn1per v1.4b by 1N3 v20151210
|
# + -- --=[Sn1per v1.4c by 1N3 v20151210
|
||||||
# + -- --=[http://crowdshield.com
|
# + -- --=[http://crowdshield.com
|
||||||
#
|
#
|
||||||
# Sn1per - Automated Pentest Recon Tool
|
# Sn1per - Automated Pentest Recon Tool
|
||||||
|
|
@ -46,7 +46,7 @@ if [ -z $TARGET ]; then
|
||||||
echo -e "$OKRED /_/ $RESET"
|
echo -e "$OKRED /_/ $RESET"
|
||||||
echo -e "$RESET"
|
echo -e "$RESET"
|
||||||
echo -e "$OKORANGE + -- --=[http://crowdshield.com"
|
echo -e "$OKORANGE + -- --=[http://crowdshield.com"
|
||||||
echo -e "$OKORANGE + -- --=[sn1per v1.4 by 1N3"
|
echo -e "$OKORANGE + -- --=[sn1per v1.4c by 1N3"
|
||||||
echo -e "$OKORANGE + -- --=[Usage: sn1per <target>"
|
echo -e "$OKORANGE + -- --=[Usage: sn1per <target>"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
@ -61,7 +61,7 @@ echo -e "$OKRED /____/_/ /_/___/ .___/\___/_/ $RESET"
|
||||||
echo -e "$OKRED /_/ $RESET"
|
echo -e "$OKRED /_/ $RESET"
|
||||||
echo -e "$RESET"
|
echo -e "$RESET"
|
||||||
echo -e "$OKORANGE + -- --=[http://crowdshield.com"
|
echo -e "$OKORANGE + -- --=[http://crowdshield.com"
|
||||||
echo -e "$OKORANGE + -- --=[sn1per v1.4 by 1N3"
|
echo -e "$OKORANGE + -- --=[sn1per v1.4c by 1N3"
|
||||||
echo -e "$RESET"
|
echo -e "$RESET"
|
||||||
echo -e "$OKGREEN################################### Running recon #################################$RESET"
|
echo -e "$OKGREEN################################### Running recon #################################$RESET"
|
||||||
nslookup $TARGET
|
nslookup $TARGET
|
||||||
|
|
@ -76,9 +76,6 @@ dnsrecon -d $TARGET
|
||||||
dnsrecon -d $TARGET -t zonewalk
|
dnsrecon -d $TARGET -t zonewalk
|
||||||
dnsrecon -d quora.com -t axfr
|
dnsrecon -d quora.com -t axfr
|
||||||
dnsenum $TARGET -f BruteX/namelist.txt
|
dnsenum $TARGET -f BruteX/namelist.txt
|
||||||
cd Breach-Miner
|
|
||||||
python breachminer.py $TARGET
|
|
||||||
cd ..
|
|
||||||
mv -f *_ips.txt loot/ 2>/dev/null
|
mv -f *_ips.txt loot/ 2>/dev/null
|
||||||
echo ""
|
echo ""
|
||||||
echo -e "$OKGREEN################################### Pinging host ###################################$RESET"
|
echo -e "$OKGREEN################################### Pinging host ###################################$RESET"
|
||||||
|
|
@ -562,8 +559,6 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -e "$OKGREEN################################### Running Brute Force #############################$RESET"
|
echo -e "$OKGREEN################################### Running Brute Force #############################$RESET"
|
||||||
cd yasuo
|
|
||||||
ruby yasuo.rb -r $TARGET -b all
|
|
||||||
cd ../BruteX/
|
cd ../BruteX/
|
||||||
./brutex $TARGET
|
./brutex $TARGET
|
||||||
rm -f hydra.restore
|
rm -f hydra.restore
|
||||||
|
|
@ -571,5 +566,11 @@ mv loot/* ../loot/
|
||||||
cd ..
|
cd ..
|
||||||
echo ""
|
echo ""
|
||||||
rm -f scan.log
|
rm -f scan.log
|
||||||
|
echo -e "$OKGREEN################################### Running 3rd Party Extensions ####################$RESET"
|
||||||
|
cd Breach-Miner
|
||||||
|
python breachminer.py $TARGET
|
||||||
|
cd ..
|
||||||
|
cd yasuo
|
||||||
|
ruby yasuo.rb -r $TARGET -b all
|
||||||
echo -e "$OKGREEN################################### Done! ###########################################$RESET"
|
echo -e "$OKGREEN################################### Done! ###########################################$RESET"
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue