mirror of https://github.com/1N3/Sn1per.git
Sn1per Community Edition by @xer0dayz - https://xerosecurity.com
This commit is contained in:
parent
b59467344f
commit
ecf7293ba1
|
|
@ -14,6 +14,7 @@
|
|||
* v8.3 - Improved performance of 'stealth' and 'recon' modes
|
||||
* v8.3 - Updated default port lists
|
||||
* v8.3 - Improved performance of all port scans
|
||||
* v8.3 - Removed all pip v2 commands from installer
|
||||
* v8.3 - Added fix for missing Amass package
|
||||
* v8.3 - Added sniper.conf options for OPENVAS_HOST and OPENVAS_PORT selection for remote instances
|
||||
* v8.3 - Improved 'vulnscan' mode via OpenVAS to scan the same asset multiple times with improved error handling
|
||||
|
|
|
|||
15
install.sh
15
install.sh
|
|
@ -84,7 +84,7 @@ apt-get install -y chromium
|
|||
apt-get install -y net-tools
|
||||
apt-get install -y p7zip-full
|
||||
apt-get install -y js-beautifier
|
||||
pip install dnspython colorama tldextract urllib3 ipaddress requests
|
||||
pip3 install dnspython colorama tldextract urllib3 ipaddress requests
|
||||
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
|
||||
|
||||
echo -e "$OKORANGE + -- --=[ Installing gem dependencies...$RESET"
|
||||
|
|
@ -125,13 +125,13 @@ python setup.py install
|
|||
cd ..
|
||||
git clone https://github.com/christophetd/censys-subdomain-finder.git
|
||||
pip3 install -r $PLUGINS_DIR/gitGraber/requirements.txt
|
||||
pip install -r $PLUGINS_DIR/censys-subdomain-finder/requirements.txt
|
||||
pip3 install -r $PLUGINS_DIR/censys-subdomain-finder/requirements.txt
|
||||
pip3 install -r $PLUGINS_DIR/dnscan/requirements.txt
|
||||
git clone https://github.com/infosec-au/altdns.git
|
||||
cd altdns
|
||||
pip install -r requirements.txt
|
||||
pip3 install -r requirements.txt
|
||||
python2 setup.py install
|
||||
pip install py-altdns
|
||||
pip3 install py-altdns 2> /dev/null
|
||||
cd ..
|
||||
git clone https://github.com/blechschmidt/massdns.git
|
||||
cd massdns
|
||||
|
|
@ -142,7 +142,7 @@ cd dnsgen
|
|||
pip3 install -r requirements.txt
|
||||
python3 setup.py install
|
||||
cd ..
|
||||
pip install webtech
|
||||
pip3 install webtech
|
||||
mv $INSTALL_DIR/bin/slurp.zip $PLUGINS_DIR
|
||||
unzip slurp.zip
|
||||
rm -f slurp.zip
|
||||
|
|
@ -184,12 +184,12 @@ cd shodan-python
|
|||
python setup.py install
|
||||
cd ..
|
||||
pip3 install spyse.py
|
||||
pip install h8mail 2> /dev/null
|
||||
pip3 install h8mail 2> /dev/null
|
||||
echo -e "$OKORANGE + -- --=[ Setting up environment...$RESET"
|
||||
cd $PLUGINS_DIR/BlackWidow/ && bash install.sh force 2> /dev/null
|
||||
cd $PLUGINS_DIR/BruteX/ && bash install.sh 2> /dev/null
|
||||
cd $PLUGINS_DIR/Findsploit/ && bash install.sh 2> /dev/null
|
||||
cd $PLUGINS_DIR/spoofcheck/ && pip install -r requirements.txt 2> /dev/null
|
||||
cd $PLUGINS_DIR/spoofcheck/ && pip3 install -r requirements.txt 2> /dev/null
|
||||
cd $PLUGINS_DIR/CMSmap/ && pip3 install . && python3 setup.py install
|
||||
cd $INSTALL_DIR
|
||||
mkdir $LOOT_DIR 2> /dev/null
|
||||
|
|
@ -210,7 +210,6 @@ msfdb init
|
|||
echo -e "$OKORANGE + -- --=[ Adding start menu shortcuts... $RESET"
|
||||
cp -f $INSTALL_DIR/sn1per.desktop /usr/share/applications/ 2> /dev/null
|
||||
cp -f $INSTALL_DIR/sn1per.png /usr/share/pixmaps/ 2> /dev/null
|
||||
|
||||
echo -e "$OKORANGE + -- --=[ Copying the old Sn1per configuration file to /root/.sniper.conf.old $RESET"
|
||||
mv ~/.sniper.conf ~/.sniper.conf.old 2> /dev/null
|
||||
echo -e "$OKORANGE + -- --=[ Copying updated Sn1per configuration file to /root/.sniper.conf $RESET"
|
||||
|
|
|
|||
Loading…
Reference in New Issue