mirror of https://github.com/1N3/Sn1per.git
Sn1per Community Edition by @xer0dayz - https://xerosecurity.com
This commit is contained in:
parent
1aafbe35ec
commit
f749940c57
|
|
@ -1,4 +1,6 @@
|
|||
## CHANGELOG:
|
||||
* v8.1 - Fixed issue with subfinder missing
|
||||
* v8.1 - Fixed issue with 7zip missing
|
||||
* v8.1 - Added check for Ubuntu to install.sh automatically
|
||||
* v8.0 - Added ASnip tool to retrieve ASN's via 'recon' mode
|
||||
* v8.0 - Added Shodan sub-domain lookup
|
||||
|
|
|
|||
|
|
@ -62,19 +62,15 @@ To obtain a Sn1per Professional license, go to https://xerosecurity.com.
|
|||
- [x] Hunter.io API integration (https://github.com/1N3/Sn1per/wiki/Hunter.io-API-Integration)
|
||||
- [x] OpenVAS API integration (https://github.com/1N3/Sn1per/wiki/OpenVAS-Integration)
|
||||
- [x] Burpsuite Professional 2.x integration (https://github.com/1N3/Sn1per/wiki/Burpsuite-Professional-2.x-Integration)
|
||||
- [x] Shodan API integration (https://github.com/1N3/Sn1per/wiki/Shodan-Integration)
|
||||
- [x] Censys API integration (https://github.com/1N3/Sn1per/wiki/Censys-API-Integration)
|
||||
- [x] Metasploit integration (https://github.com/1N3/Sn1per/wiki/Metasploit-Integration)
|
||||
|
||||
## KALI LINUX INSTALL:
|
||||
## KALI/UBUNTU/DEBIAN/PARROT LINUX INSTALL:
|
||||
```
|
||||
bash install.sh
|
||||
```
|
||||
|
||||
## UBUNTU/DEBIAN/PARROT INSTALL:
|
||||
```
|
||||
sudo bash install_debian_ubuntu.sh
|
||||
```
|
||||
|
||||
## DOCKER INSTALL:
|
||||
From a new Docker console, run the following commands.
|
||||
```
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ rm -f slurp.zip
|
|||
cd ~/go/bin/;go get github.com/haccer/subjack
|
||||
cd ~/go/bin/;go get -u github.com/Ice3man543/SubOver; mv SubOver /usr/local/bin/subover
|
||||
go get github.com/harleo/asnip
|
||||
ln -s ~/go/bin/asnip /usr/bin/asnip
|
||||
ln -s ~/go/bin/asnip /usr/bin/asnip 2>/dev/null
|
||||
rm -Rf ~/go/src/amass*
|
||||
wget https://github.com/OWASP/Amass/releases/download/v3.1.10/amass_v3.1.10_linux_amd64.zip -O ~/go/src/amass.zip
|
||||
cd ~/go/src/
|
||||
|
|
@ -140,7 +140,7 @@ mv amass_v3.1.10_linux_amd64 amass 2> /dev/null
|
|||
cd amass
|
||||
cp amass /usr/bin/amass -f 2> /dev/null
|
||||
rm -f ~/go/src/amass.zip 2> /dev/null
|
||||
cd ~/go/bin;go get -u github.com/subfinder/subfinder; mv subfinder /usr/local/bin/subfinder
|
||||
cd ~/go/bin; wget https://github.com/projectdiscovery/subfinder/releases/download/v2.2.4/subfinder-linux-amd64.tar; tar -xvf subfinder-linux-amd64.tar; rm -f subfinder-linux-amd64.tar; mv subfinder-linux-amd64 /usr/local/bin/subfinder
|
||||
cd /usr/share/nmap/scripts/
|
||||
rm -Rf vulscan 2> /dev/null
|
||||
git clone https://github.com/scipag/vulscan
|
||||
|
|
|
|||
Loading…
Reference in New Issue