diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e20028..eccf9de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 2076284..e6a0210 100644 --- a/README.md +++ b/README.md @@ -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. ``` diff --git a/install.sh b/install.sh index c8d06d1..88da64c 100755 --- a/install.sh +++ b/install.sh @@ -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