Updated Duckyscript (asciidoc => rdoc)

This commit is contained in:
Hak5Jason 2012-02-03 18:03:33 -08:00
parent 10f31963b5
commit e2c89f2c7e
1 changed files with 14 additions and 14 deletions

View File

@ -1,15 +1,15 @@
=====Ducky Script=====
=====Ducky Script
Ducky Script is the language of the USB Rubber Ducky. Writing scripts for can be done from any common ascii text editor such as Notepad, vi, emacs, nano, gedit, kedit, TextEdit, etc.
====Syntax====
====Syntax
Ducky Script syntax is simple. Each command resides on a new line and may have options follow. Commands are written in ALL CAPS, because ducks are loud and like to quack with pride. Most commands invoke keystrokes, key-combos or strings of text, while some offer delays or pauses. Below is a list of commands and their function, followed by some example usage.
Note: In the tables below //n// represents a number and //Char// represents characters A-Z, a-z.
===REM===
===REM
Similar to the REM command in Basic and other languages, lines beginning with REM will not be processed. REM is a comment.
^ Command ^
@ -20,7 +20,7 @@ Similar to the REM command in Basic and other languages, lines beginning with RE
STRING cmd
ENTER
===DEFAULT_DELAY or DEFAULTDELAY===
===DEFAULT_DELAY or DEFAULTDELAY
DEFAULT_DELAY or DEFAULTDELAY is used to define how long (in milliseconds * 10) to wait between each subsequent command. DEFAULT_DELAY must be issued at the beginning of the ducky script and is optional. Not specifying the DEFAULT_DELAY will result in faster execution of ducky scripts. This command is mostly useful when debugging.
^ Command ^ Parameters ^
@ -30,7 +30,7 @@ DEFAULT_DELAY or DEFAULTDELAY is used to define how long (in milliseconds * 10)
DEFAULT_DELAY 10
REM delays 100ms between each subsequent command sequence
===DELAY===
===DELAY
DELAY creates a momentary pause in the ducky script. It is quite handy for creating a moment of pause between sequential commands that may take the target computer some time to process. DELAY time is specified in milliseconds from 1 to 10000. Multiple DELAY commands can be used to create longer delays.
^ Command ^ Parameters ^
@ -39,7 +39,7 @@ DELAY creates a momentary pause in the ducky script. It is quite handy for creat
DELAY 50
REM will wait 500ms before continuing to the next command.
===STRING===
===STRING
STRING processes the text following taking special care to auto-shift. STRING can accept a single or multiple characters.
@ -55,7 +55,7 @@ STRING processes the text following taking special care to auto-shift. STRING ca
STRING Hello World!
===WINDOWS or GUI===
===WINDOWS or GUI
Emulates the Windows-Key, sometimes referred to as the Super-key.
^ Command ^ Optional Parameters ^
@ -65,7 +65,7 @@ Emulates the Windows-Key, sometimes referred to as the Super-key.
GUI r
REM will hold the Windows-key and press r, on windows systems resulting in the Run menu.
===MENU or APP===
===MENU or APP
Emulates the App key, sometimes referred to as the menu key or context menu key. On Windows systems this is similar to the SHIFT F10 key combo, producing the menu similar to a right-click.
^ Command ^
@ -79,7 +79,7 @@ Emulates the App key, sometimes referred to as the menu key or context menu key.
//Switch to desktop, pull up context menu and choose actions v, then d toggles displaying Windows desktop icons//
===SHIFT===
===SHIFT
Unlike CAPSLOCK, cruise control for cool, the SHIFT command can be used when navigating fields to select text, among other functions.
@ -89,7 +89,7 @@ Unlike CAPSLOCK, cruise control for cool, the SHIFT command can be used when nav
SHIFT INSERT
REM this is paste for most operating systems
===ALT===
===ALT
Found to the left of the space key on most keyboards, the ALT key is instrumental in many automation operations. ALT is envious of CONTROL
@ -106,7 +106,7 @@ Found to the left of the space key on most keyboards, the ALT key is instrumenta
STRING s
REM alt-f pulls up the File menu and s saves. This two keystroke combo is why ALT is jealous of CONTROL's leetness and CTRL+S
===CONTROL or CTRL===
===CONTROL or CTRL
The king of key-combos, CONTROL is all mighty.
^ Command ^ Optional Parameters ^
@ -116,14 +116,14 @@ The king of key-combos, CONTROL is all mighty.
CONTROL ESCAPE
REM this is equivalent to the GUI key in Windows
===Arrow Keys===
===Arrow Keys
^ Command ^
| DOWNARROW or DOWN |
| LEFTARROW or LEFT |
| RIGHTARROW or RIGHT |
| UPARROW or UP |
===Extended Commands===
===Extended Commands
^ Command ^ Notes ^
| BREAK or PAUSE | For the infamous combo CTRL BREAK |
| CAPSLOCK | Cruise control for cool. Toggles |
@ -140,7 +140,7 @@ The king of key-combos, CONTROL is all mighty.
| SPACE | the final frontier |
| TAB | not just a cola |
====Compiling====
====Compiling
Ducky Scripts are compiled into hex files ready to be named inject.bin and moved to the root of a microSD card for execution by the USB Rubber Ducky. This is done with the tool [[duckencoder]].