mirror of https://github.com/1N3/Sn1per.git
Merge bc26afa664 into feeb5c6581
This commit is contained in:
commit
ad5c74063f
|
|
@ -181,6 +181,8 @@ VHOSTS="0"
|
|||
H8MAIL="0"
|
||||
GITHUB_SECRETS="0"
|
||||
URLSCANIO="1"
|
||||
PAGODO="1"
|
||||
PAGODO_PROXYCHAIN="0"
|
||||
|
||||
# DYNAMIC APPLICATION SCANNERS
|
||||
BURP_SCAN="0"
|
||||
|
|
|
|||
|
|
@ -264,6 +264,14 @@ pip3 install -r requirements.txt --break-system-packages
|
|||
python3 setup.py install
|
||||
cd ..
|
||||
|
||||
# PAGODO INSTALLER
|
||||
echo -e "$OKBLUE[*]$RESET Installing pagodo...$RESET"
|
||||
git clone https://github.com/opsdisk/pagodo.git
|
||||
cd pagodo
|
||||
pip3 install -r requirements.txt
|
||||
python ghdb_scraper.py -s -j -i
|
||||
cd ..
|
||||
|
||||
# NUCLEI UPDATES
|
||||
echo -e "$OKBLUE[*]$RESET Installing Nuclei...$RESET"
|
||||
GO111MODULE=on go install github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
|
||||
|
|
|
|||
|
|
@ -3,6 +3,19 @@ if [[ "$OSINT" = "1" ]]; then
|
|||
if [[ "$SLACK_NOTIFICATIONS" == "1" ]]; then
|
||||
/bin/bash "$INSTALL_DIR/bin/slack.sh" "[sn1persecurity.com] •?((¯°·._.• Started Sn1per OSINT scan: $TARGET [$MODE] (`date +"%Y-%m-%d %H:%M"`) •._.·°¯))؟•"
|
||||
fi
|
||||
if [[ "$PAGODO" == "1" ]]; then
|
||||
echo -e "${OKGREEN}====================================================================================${RESET}•x${OKGREEN}[`date +"%Y-%m-%d](%H:%M)"`${RESET}x•"
|
||||
echo -e "$OKRED STARTING PAGODO PASSIVE SCANNER $RESET"
|
||||
echo -e "${OKGREEN}====================================================================================${RESET}•x${OKGREEN}[`date +"%Y-%m-%d](%H:%M)"`${RESET}x•"
|
||||
cd $INSTALL_DIR/plugins/pagodo
|
||||
if [[ "$PAGODO_PROXYCHAIN" == "1" ]]; then
|
||||
proxychains4 python3 pagodo.py -d $TARGET -g ./dorks/all_google_dorks.txt -i 30 -x 120 -m 2 -s $LOOT_DIR/osint/dorks-$TARGET.txt &> $LOOT_DIR/osint/pagodo-logs-$TARGET.log &
|
||||
elif [[ "$PAGODO_PROXYCHAIN" == "0" ]]; then
|
||||
python3 pagodo.py -d $TARGET -g ./dorks/all_google_dorks.txt -i 30 -x 120 -m 2 -s $LOOT_DIR/osint/dorks-$TARGET.txt &> $LOOT_DIR/osint/pagodo-logs-$TARGET.log &
|
||||
else
|
||||
python3 pagodo.py -d $TARGET -g ./dorks/all_google_dorks.txt -i 30 -x 120 -m 2 -s $LOOT_DIR/osint/dorks-$TARGET.txt -p $PAGODO_PROXYCHAIN &> $LOOT_DIR/osint/pagodo-logs-$TARGET.log &
|
||||
fi
|
||||
fi
|
||||
if [[ "$WHOIS" == "1" ]]; then
|
||||
echo -e "${OKGREEN}====================================================================================${RESET}•x${OKGREEN}[`date +"%Y-%m-%d](%H:%M)"`${RESET}x•"
|
||||
echo -e "$OKRED GATHERING WHOIS INFO $RESET"
|
||||
|
|
|
|||
Loading…
Reference in New Issue