mirror of https://github.com/1N3/Sn1per.git
Sn1per by 1N3CrowdShield
This commit is contained in:
parent
624a68621b
commit
649f857b3d
|
|
@ -1,5 +1,6 @@
|
|||
## CHANGELOG:
|
||||
* v2.5a - Fixed issue with [: ==: unary operator expected errors
|
||||
* v2.6b - Added CloudFail
|
||||
* v2.6a - Fixed issue with [: ==: unary operator expected errors
|
||||
* v2.6 - Added Blackarch Linux support
|
||||
* v2.6 - Added $BROWSER variable to set default browser
|
||||
* v2.5g - Updated README with update command
|
||||
|
|
|
|||
|
|
@ -64,10 +64,12 @@ git clone https://github.com/nccgroup/shocker.git
|
|||
git clone --depth 1 https://github.com/drwetter/testssl.sh.git
|
||||
git clone https://github.com/lunarca/SimpleEmailSpoofer
|
||||
git clone https://github.com/arthepsy/ssh-audit
|
||||
git clone https://github.com/m0rtem/CloudFail.git
|
||||
wget https://svn.nmap.org/nmap/scripts/http-vuln-cve2017-5638.nse -O /usr/share/nmap/scripts/http-vuln-cve2017-5638.nse
|
||||
wget https://raw.githubusercontent.com/xorrbit/nmap/865142904566e416944ebd6870d496c730934965/scripts/http-vuln-INTEL-SA-00075.nse -O /usr/share/nmap/scripts/http-vuln-INTEL-SA-00075.nse
|
||||
cp $INSTALL_DIR/bin/iis-buffer-overflow.nse /usr/share/nmap/scripts/iis-buffer-overflow.nse
|
||||
echo -e "$OKORANGE + -- --=[Setting up environment...$RESET"
|
||||
cd $PLUGINS_DIR/CloudFail/ && apt-get install python3-pip && pip3 install -r requirements.txt
|
||||
cd $PLUGINS_DIR/Findsploit/ && bash install.sh
|
||||
cd $PLUGINS_DIR/BruteX/ && bash install.sh
|
||||
cd $INSTALL_DIR
|
||||
|
|
|
|||
6
sniper
6
sniper
|
|
@ -494,6 +494,8 @@ if [ "$MODE" = "stealth" ]; then
|
|||
echo -e "$OKORANGE + -- --=[Port 443 opened... running tests...$RESET"
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking for WAF]=------------------------ -- +$RESET"
|
||||
wafw00f https://$TARGET
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking for Cloudflare]=----------------- -- +$RESET"
|
||||
python3 $PLUGINS_DIR/CloudFail/cloudfail.py --target $TARGET
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Gathering HTTP Info]=--------------------- -- +$RESET"
|
||||
whatweb https://$TARGET
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking Headers and Methods]=------------ -- +$RESET"
|
||||
|
|
@ -647,6 +649,8 @@ if [ "$MODE" = "airstrike" ]; then
|
|||
echo -e "$OKORANGE + -- --=[Port 443 opened... running tests...$RESET"
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking for WAF]=------------------------ -- +$RESET"
|
||||
wafw00f https://$a
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking for Cloudflare]=----------------- -- +$RESET"
|
||||
python3 $PLUGINS_DIR/CloudFail/cloudfail.py --target $TARGET
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Gathering HTTP Info]=--------------------- -- +$RESET"
|
||||
whatweb https://$a
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking Headers and Methods]=------------ -- +$RESET"
|
||||
|
|
@ -1127,6 +1131,8 @@ else
|
|||
echo -e "$OKGREEN + -- ----------------------------=[Checking for WAF]=------------------------ -- +$RESET"
|
||||
wafw00f https://$TARGET
|
||||
echo ""
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Checking for Cloudflare]=----------------- -- +$RESET"
|
||||
python3 $PLUGINS_DIR/CloudFail/cloudfail.py --target $TARGET
|
||||
echo -e "$OKGREEN + -- ----------------------------=[Gathering HTTP Info]=--------------------- -- +$RESET"
|
||||
whatweb https://$TARGET
|
||||
echo ""
|
||||
|
|
|
|||
Loading…
Reference in New Issue