-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sn1per Community Edition by @xer0dayz - https://xerosecurity.com
- Loading branch information
WP Engine Marketing
committed
Nov 12, 2018
1 parent
2d96349
commit e7d933e
Showing
10 changed files
with
62 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,6 @@ if [ "$MODE" = "airstrike" ]; then | |
echo -e "$OKRED |__||| | |---|---|||___| |___-----|||||" | ||
echo -e "$OKRED | ||. | | | ||| |||||" | ||
echo -e "$OKRED __________________________________________________________" | ||
echo -e "$OKRED Bomb raid (contributed by Michael aka [email protected])" | ||
echo -e "$RESET" | ||
if [ ! -z "$WORKSPACE_DIR" ]; then | ||
echo "sniper -t $TARGET -m $MODE --noreport $args" >> $LOOT_DIR/scans/$TARGET-$MODE.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
if [ "$AUTOBRUTE" = "0" ]; then | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
echo -e "$OKRED SKIPPING BRUTE FORCE $RESET" | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
else | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
echo -e "$OKRED RUNNING BRUTE FORCE $RESET" | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
brutex $TARGET | tee $LOOT_DIR/credentials/brutex-$TARGET 2> /dev/null | ||
sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g" $LOOT_DIR/credentials/brutex-$TARGET 2> /dev/null > $LOOT_DIR/credentials/brutex-$TARGET.txt 2> /dev/null | ||
rm -f $LOOT_DIR/credentials/brutex-$TARGET | ||
cd $INSTALL_DIR | ||
rm -f hydra.restore | ||
rm -f scan.log | ||
echo "" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
if [ "$FULLNMAPSCAN" = "0" ]; then | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
echo -e "$OKRED SKIPPING FULL NMAP PORT SCAN $RESET" | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
else | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
echo -e "$OKRED RUNNING FULL PORT SCAN $RESET" | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
#nmap -Pn -A -v -T4 -p$DEFAULT_TCP_PORTS $TARGET -oX $LOOT_DIR/nmap/nmap-$TARGET.xml | tee $LOOT_DIR/nmap/nmap-$TARGET.txt | ||
nmap -vv -sT -O -A -T4 -oX $LOOT_DIR/nmap/nmap-$TARGET.xml $TARGET | tee $LOOT_DIR/nmap/nmap-$TARGET.txt | ||
xsltproc $INSTALL_DIR/bin/nmap-bootstrap.xsl $LOOT_DIR/nmap/nmap-$TARGET.xml -o $LOOT_DIR/nmap/nmapreport-$TARGET.html 2> /dev/null | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
echo -e "$OKRED PERFORMING UDP PORT SCAN $RESET" | ||
echo -e "${OKGREEN}====================================================================================${RESET}" | ||
nmap -Pn -sU -A -T4 -v -p$DEFAULT_UDP_PORTS $TARGET -oX $LOOT_DIR/nmap/nmap-$TARGET-udp.xml | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters