CTRL ALT DELTE not working on BadUsb

Hello,

i have one Question, it is possible to use the Delete Key on BadUsb? I don’t get any errors, I think it just skips the line.

This is my example script, only the GUI R is working.

DELAY 1000

CTRL ALT DELETE

DELAY 500
GUI r

Can someone help me?

1 Like

This looks like a bug in the Flipper firmware. I used your code, the alternate accepted Ducky Script spelling “CONTROL”, and I tried it using the HOLD command. Perhaps the problem is interpreting two modifiers.

1 Like

try CTRL-ALT DELETE

I haven’t got that working either.

I had some difficulty using CTRL-ALT Delete also, from what I have found it is not included in ducky script 1.0 which flipper uses, hopefully they open it up in the future, as there are features I would like included also, but try looking into using the command window instead, I wrote a code to shut down a computer using that

1 Like

You can use “CTRL-ALT DELETE” in your script now, on the latest firmware for official, rogue master & unleashed. Other firmware don’t seem to have the fix yet (so no key is bound to HID_KEYBOARD_DELETE_FORWARD.)

findstr /sn HID_KEYBOARD_DELETE_FORWARD bad_usb_script.c
official-firmware\applications\main\bad_usb\bad_usb_script.c:79:
{“DELETE”, HID_KEYBOARD_DELETE_FORWARD},
rogue_master-firmware\applications\main\bad_usb\bad_usb_script.c:80:
{“DELETE”, HID_KEYBOARD_DELETE_FORWARD},
unleashed-firmware\applications\main\bad_usb\bad_usb_script.c:79:
{“DELETE”, HID_KEYBOARD_DELETE_FORWARD},

2 Likes