This is a fork of dbisu's pico-ducky. Apart from major refactoring, additions to the original code are as follows:
- introduced new commands to the Ducky Script language (see below)
- beautified serial output
- easier to debug, better to analyze scripts
- performance of scripts is now measured
- it's easy to compare how much enabling e.g.
PSYCHOMOUSEmode affects performance (spoiler: roughly 15-20%)
- separate configuration file to customize your pico-ducky
- many hard-coded settings of the original pico-ducky can now be configured
- use template
pd\config_default.pyand store it aspd\config.pyfor custom settings
- allows running one of 6 different payloads (by grounding pins
GP0,GP1,GP2,GP3,GP4orGP5) - allows running a mouse jiggler when grounding
GP6(see Hak5 presentation: https://www.youtube.com/watch?v=aZ8u56I3J3I) - includes some basic duckyscripts to get you started in folder
pd
Changes to the Ducky Script language are:
- importing other payloads through e.g.
IMPORT filename.dd - setting keyboard locale at runtime through e.g.
LOCALE DE(which would loadkeyboard_layout_win_deandkeycode_win_defrom the libs folder). - wait for keyboard LED to be on or off
WAITFORLED CAPS_LOCK ONWAITFORLED NUM_LOCK OFFWAITFORLED SCROLL_LOCK ONWAITFORLED COMPOSE ON- LED states are polled every 100ms, so also quick key presses are caught
- great to build trigger patterns (e.g. NUM on, NUM off, CAPS on, CAPS off)
- blinking LED through e.g.
BLINK_LED(blink once with default duration)BLINK_LED 250(blink once for 250ms)BLINK_LED 500 3(blink 3x for 500ms)
- all F-keys can be sent (so also F13-F24)
- added commands
RIGHTALTRIGHTCONTROLRIGHTGUIRIGHTSHIFTPOWER(specific to MacOS)
- sending consumer control commands (aka media keys)
CC SEND BRIGHTNESS_DECREMENTCC SEND BRIGHTNESS_INCREMENTCC SEND EJECTCC SEND FAST_FORWARDCC SEND MUTECC SEND PLAY_PAUSECC SEND RECORDCC SEND REWINDCC SEND SCAN_NEXT_TRACKCC SEND SCAN_PREVIOUS_TRACKCC SEND STOPCC SEND VOLUME_DECREMENTCC SEND VOLUME_INCREMENT- to press and later release a media key use the following commands (only one can be pressed at a time!)
CC PRESS VOLUME_INCREMENTCC RELEASE
- sending mouse commands (movements, scrollwheel action, clicks, presses and releases)
MOUSE MOVE $x $y- moves the mouse pointerMOUSE WHEEL $amount- moves the mouse wheel (negative = toward the user, positive = away from the user)MOUSE CLICK/PRESS/RELEASE LEFT [RIGHT] [MIDDLE]- click, press or release one ore more buttonsMOUSE CLICK RIGHTpresses and immediately releases the right buttonMOUSE PRESS LEFT RIGHTkeeps the left and right buttons pressedMOUSE RELEASE LEFT RIGHTreleases them again
MOUSE RELEASEALL- releases all pressed buttons- these work great in scenarios where you want to mess with user's ability to e.g. close your shell by moving the mouse or to spookily move the mouse around ever so often
- activating psycho-mouse mode through
PSYCHOMOUSE [CHARS] [RANGE]- this mode will randomly move the mouse when issuing a
STRING $yourstringcommand - user won't be able to close your shell by mouse (we all know lusers don't know keyboard shortcuts)
PSYCHOMOUSEwill activate psycho-mouse mode with default values (chars = 5, range = 250)PSYCHOMOUSE 12 300moves mouse every 12 chars in a range of +/- 300 pixelsPSYCHOMOUSE OFFdisables psycho-mouse mode- note: typing performance reduces by roughly 15-20% with the default values
- this mode will randomly move the mouse when issuing a
Install and have your USB Rubber Ducky working in less than 5 minutes.
-
Download CircuitPython for the Raspberry Pi Pico. *Updated to 7.0.0
-
Plug the device into a USB port while holding the boot button. It will show up as a removable media device named
RPI-RP2. -
Copy the downloaded
.uf2file to the root of the Pico (RPI-RP2). The device will reboot and after a second or so, it will reconnect asCIRCUITPY. -
Download
adafruit-circuitpython-bundle-7.x-mpy-YYYYMMDD.ziphere and extract it outside the device. -
Navigate to
libin the recently extracted folder and copyadafruit_hidto thelibfolder in your Raspberry Pi Pico. -
Place
boot.py,main.pyand folderpdin the root of the Raspberry Pi Pico, overwriting previous files. -
Find a script here or create your own one using Ducky Script and save it as
pd\payload0.ddon the Pico. -
To run this payload connect pin 1 (
GP0) to pin 3 (GND) and re-plug the pico. It will reboot and after half a second, the script will run. -
To tweak how the pico-ducky works copy
pd\config_default.pytopd\config.pyand customize the settings to fit your needs.
Select which payload should be run by grounding either pin 1 (GP0), pin 2 (GP1), pin 4 (GP3), pin 5 (GP4) or pin 6 (GP5) to the ground pin 3 (GND). This will tell pico-ducky which of the 6 payload files to run. The easiest way to do so is by using a jumper wire between those pins as seen below (in this case GP0 is grounded therefore payload0.dd in folder pd will be run). If neither pin is grounded, pico-ducky will be in setup-mode and execute no payload. You are then free to modify your script without risking injecting any payloads.
If you need the pico-ducky to not show up as a USB mass storage device for stealth, simply ground pins 18 (GND) and pin 20 (GP15). This will prevent the pico-ducky from showing up as a USB drive when plugged into the target computer. Remove the jumper and reconnect to your PC to reprogram.
By default USB mass storage is enabled.
Copied from Neradoc/Circuitpython_Keyboard_Layouts
Go to the latest release page, look if your language is in the list.
Download the py zip, named circuitpython-keyboard-layouts-py-XXXXXXXX.zip
NOTE: You can use the mpy version targetting the version of Circuitpython that is on the device, but on Raspberry Pi Pico you don't need it - they only reduce file size and memory use on load, which the pico has plenty of.
Try the online generator, it should get you a zip file with the bundles for yout language
https://www.neradoc.me/layouts/
For a language LANG, copy the following files from the zip's lib folder to the lib directory of the board.
DO NOT modify the adafruit_hid directory. Your files go directly in lib.
DO NOT change the names or extensions of the files. Just pick the right ones.
Replace LANG with the letters for your language of choice.
keyboard_layout.pykeyboard_layout_win_LANG.pykeycode_win_LANG.py
Don't forget to get the adafruit_hid library.
This is what it should look like if your language is French for example.
Re-configure the locale pico-ducky should use by default in the provided pd\config_default.py. You could also dynamically use the LOCALE command to change your locale at runtime (e.g. start your duckyscripts with LOCALE DE for a german keyboard)
pico-ducky tutorial by NetworkChuck
USB Rubber Ducky playlist by Hak5
CircuitPython tutorial on the Raspberry Pi Pico by DroneBot Workshop


