Skip to main content
added 276 characters in body
Source Link

Solution is here: Python script to convert RubberDucky payloads to DigiSpark sketch with respect to choosen keyboard layout:

duck2spark

Btw: The keys '<' '|' and '>' are on NON-US-KEY-100 on German keyboard layout. The key has value 0x64 for USB HID and the right modifiers have to be set (f.e. ALT_GR for '|' ). You could send them using

DigiKeyboard.sendKeyStroke(key,modifier); 

For details see USB HID usage tables

Solution is here: Python script to convert RubberDucky payloads to DigiSpark sketch with respect to choosen keyboard layout:

duck2spark

Solution is here: Python script to convert RubberDucky payloads to DigiSpark sketch with respect to choosen keyboard layout:

duck2spark

Btw: The keys '<' '|' and '>' are on NON-US-KEY-100 on German keyboard layout. The key has value 0x64 for USB HID and the right modifiers have to be set (f.e. ALT_GR for '|' ). You could send them using

DigiKeyboard.sendKeyStroke(key,modifier); 

For details see USB HID usage tables

Source Link

Solution is here: Python script to convert RubberDucky payloads to DigiSpark sketch with respect to choosen keyboard layout:

duck2spark