unknownfreq Posted June 18, 2018 Share Posted June 18, 2018 Hello everyone, I'm trying to produce a Ducky script for Mac, but i cannot produce the @ sign. I'm on a Danish Macbook and the key combination to produce the @ sign is: RIGHT_ALT + * In the dk.properties file but I tried typing ASCII_41 = KEY_ASTERISK MODIFIERKEY_RIGHT_ALT When i try to encode with java -jar ../USB-Rubber-Ducky/Encoder/encoder.jar -i mac_root.txt -o inject.bin -l ../USB-Rubber-Ducky/Encoder/resources/dk.properties I get error: Key not found:KEY_ASTERISK MODIFIERKEY_RIGHT_ALT Hope someone can help! And thanks for all the great tools hak5 Quote Link to comment Share on other sites More sharing options...
rasmuset Posted March 19, 2019 Share Posted March 19, 2019 Hi, A bit late perhaps but I ran into the same issue. I think the danish layout is created from a windows machine and thus a lot of keys are a bit off. I currently working my way through the layout and got the at sign to work using: ASCII_40 = KEY_BACKSLASH, MODIFIERKEY_RIGHT_ALT I'm still trying to figure out how to do backward slash. It should be something along the lines of this: ASCII_5C = KEY_7, MODIFIERKEY_RIGHT_ALT, MODIFIERKEY_SHIFT But it's ignoring the MODIFIERKEY_SHIFT so it's giving me ¶ instead. Use this for reference for the ascii codes https://www.ascii-code.com/ Quote Link to comment Share on other sites More sharing options...
SunBeach Posted April 22, 2019 Share Posted April 22, 2019 hello! On many apple keyboard we use ALT + G --> @ (fr and CH_fr apple layouts) ASCII_40 = KEY_G, MODIFIERKEY_RIGHT_ALT // 64 @ or ASCII_40 = KEY_G, MODIFIERKEY_LEFT_ALT // 64 @ 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.