From 5e482d121d0381d795965320a947ee62b23423fa Mon Sep 17 00:00:00 2001 From: xer0dayz <1N3@hushmail.com> Date: Thu, 20 Jul 2023 14:54:55 -0700 Subject: [PATCH] Update normal.sh Updated python to python3 --- modes/normal.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modes/normal.sh b/modes/normal.sh index e269b5a..43e2e8f 100644 --- a/modes/normal.sh +++ b/modes/normal.sh @@ -258,7 +258,7 @@ else echo -e "$OKRED RUNNING SSH AUDIT $RESET" echo -e "${OKGREEN}====================================================================================${RESET}•x${OKGREEN}[`date +"%Y-%m-%d](%H:%M)"`${RESET}x•" cd $PLUGINS_DIR/ssh-audit - python ssh-audit.py $TARGET:22 | tee $LOOT_DIR/output/sshaudit-$TARGET-port22.txt + python3 ssh-audit.py $TARGET:22 | tee $LOOT_DIR/output/sshaudit-$TARGET-port22.txt fi fi cd $INSTALL_DIR @@ -511,7 +511,7 @@ else echo -e "$OKRED RUNNING SMB ENUMERATION $RESET" echo -e "${OKGREEN}====================================================================================${RESET}•x${OKGREEN}[`date +"%Y-%m-%d](%H:%M)"`${RESET}x•" enum4linux $TARGET | tee $LOOT_DIR/output/enum4linux-$TARGET-port139.txt - python $SAMRDUMP $TARGET | tee $LOOT_DIR/output/samrdump-$TARGET-port139.txt + python3 $SAMRDUMP $TARGET | tee $LOOT_DIR/output/samrdump-$TARGET-port139.txt nbtscan $TARGET | tee $LOOT_DIR/output/nbtscan-$TARGET-port139.txt fi if [[ "$NMAP_SCRIPTS" = "1" ]]; then @@ -616,7 +616,7 @@ else echo -e "$OKRED ENUMERATING SMB/NETBIOS $RESET" echo -e "${OKGREEN}====================================================================================${RESET}•x${OKGREEN}[`date +"%Y-%m-%d](%H:%M)"`${RESET}x•" enum4linux $TARGET | tee $LOOT_DIR/output/enum4linux-$TARGET-port445.txt - python $SAMRDUMP $TARGET | tee $LOOT_DIR/output/samrdump-$TARGET-port445.txt + python3 $SAMRDUMP $TARGET | tee $LOOT_DIR/output/samrdump-$TARGET-port445.txt nbtscan $TARGET | tee $LOOT_DIR/output/nbtscan-$TARGET-port445.txt fi if [[ "$NMAP_SCRIPTS" = "1" ]]; then @@ -1256,4 +1256,4 @@ if [[ "$SLACK_NOTIFICATIONS" == "1" ]]; then fi if [[ "$LOOT" = "1" ]] && [[ -z "$NOLOOT" ]]; then loot -fi \ No newline at end of file +fi