svv4gl0rd Posted November 23, 2022 Share Posted November 23, 2022 Hi, I need Bash Bunny to inject all combinations of three letters clicked at once. Could someone point me why this payload is not working? LED SETUP ATTACKMODE HID LED ATTACK i=0 j=1 k=2 while [ $i -lt 30 ] do x=$(printf "%02X\n" $i) while [ $j -lt 30 ] do y=$(printf "%02X\n" $j) while [ $k -lt 30 ] do z=$(printf "%02X\n" $k) QUACK KEYCODE 00,00,$x 00,00,$y 00,00,$z k=$(expr $k + 1) done j=$(expr $j + 1) done i=$(expr $i + 1) done Thanks in advance. Quote Link to comment Share on other sites More sharing options...
dark_pyrro Posted November 23, 2022 Share Posted November 23, 2022 Can you be more detailed about in what way it isn't working as expected? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.