mirror of https://github.com/1N3/Sn1per.git
Sn1per by 1N3 @CrowdShield
This commit is contained in:
parent
6d68550374
commit
5f5332fae0
|
|
@ -46,6 +46,7 @@ https://gist.github.com/1N3/8214ec2da2c91691bcbc
|
|||
```
|
||||
|
||||
## CHANGELOG:
|
||||
* v1.6a - Added impprovements to recon phase
|
||||
* v1.6a - Fixed small issue with 3rd party extension
|
||||
* v1.6a - Various improvements to overall optimization of scans
|
||||
* v1.6a - Added new "web" mode for full web application scans
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/bin/../share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.01 scan initiated Sat Feb 20 08:17:59 2016 as: nmap -sS -sV -T4 -A -O -p 1-65535 --open -oX loot/nmap-192.168.1.1.xml 192.168.1.1 -->
|
||||
<nmaprun scanner="nmap" args="nmap -sS -sV -T4 -A -O -p 1-65535 --open -oX loot/nmap-192.168.1.1.xml 192.168.1.1" start="1455974279" startstr="Sat Feb 20 08:17:59 2016" version="7.01" xmloutputversion="1.04">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="65535" services="1-65535"/>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/bin/../share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.01 scan initiated Sat Feb 20 08:45:31 2016 as: nmap -sS -sV -T4 -A -O -p 1-65535 --open -oX loot/nmap-bugcrowd.com.xml bugcrowd.com -->
|
||||
<nmaprun scanner="nmap" args="nmap -sS -sV -T4 -A -O -p 1-65535 --open -oX loot/nmap-bugcrowd.com.xml bugcrowd.com" start="1455975931" startstr="Sat Feb 20 08:45:31 2016" version="7.01" xmloutputversion="1.04">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="65535" services="1-65535"/>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/bin/../share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.01 scan initiated Sat Feb 20 08:18:44 2016 as: nmap -sS -sV -T4 -A -O -p 1-65535 --open -oX loot/nmap-crowdshield.com.xml crowdshield.com -->
|
||||
<nmaprun scanner="nmap" args="nmap -sS -sV -T4 -A -O -p 1-65535 --open -oX loot/nmap-crowdshield.com.xml crowdshield.com" start="1455974324" startstr="Sat Feb 20 08:18:44 2016" version="7.01" xmloutputversion="1.04">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="65535" services="1-65535"/>
|
||||
15
sniper
15
sniper
|
|
@ -132,10 +132,7 @@ if [ "$MODE" = "stealth" ]; then
|
|||
then
|
||||
dig -x $TARGET
|
||||
whois $TARGET
|
||||
theharvester -d $TARGET -b google 2> /dev/null
|
||||
theharvester -d $TARGET -b bing 2> /dev/null
|
||||
theharvester -d $TARGET -b linkedin 2> /dev/null
|
||||
theharvester -d $TARGET -b people123 2> /dev/null
|
||||
theharvester -d $TARGET -l 200 -b all -v -n -t 2> /dev/null
|
||||
dnsrecon -d $TARGET
|
||||
dnsrecon -d $TARGET -t zonewalk
|
||||
dnsrecon -d $TARGET -t axfr
|
||||
|
|
@ -200,10 +197,7 @@ if [ "$MODE" = "airstrike" ]; then
|
|||
then
|
||||
dig -x $a
|
||||
whois $a
|
||||
theharvester -d $a -b google 2> /dev/null
|
||||
theharvester -d $a-b bing 2> /dev/null
|
||||
theharvester -d $a -b linkedin 2> /dev/null
|
||||
theharvester -d $a -b people123 2> /dev/null
|
||||
theharvester -d $TARGET -l 200 -b all -v -n -t 2> /dev/null
|
||||
dnsrecon -d $a
|
||||
dnsrecon -d $a -t zonewalk
|
||||
dnsrecon -d $a -t axfr
|
||||
|
|
@ -280,10 +274,7 @@ if [ $SCAN_TYPE == "DOMAIN" ];
|
|||
then
|
||||
dig -x $TARGET
|
||||
whois $TARGET
|
||||
theharvester -d $TARGET -b google 2> /dev/null
|
||||
theharvester -d $TARGET -b bing 2> /dev/null
|
||||
theharvester -d $TARGET -b linkedin 2> /dev/null
|
||||
theharvester -d $TARGET -b people123 2> /dev/null
|
||||
theharvester -d $TARGET -l 200 -b all -v -n -t 2> /dev/null
|
||||
dnsrecon -d $TARGET
|
||||
dnsrecon -d $TARGET -t zonewalk
|
||||
dnsrecon -d $TARGET -t axfr
|
||||
|
|
|
|||
Loading…
Reference in New Issue