Metadata-Version: 1.1
Name: digiduck
Version: 1.5.0b0
Summary: A program to compile Ducky Script to Digispark code
Home-page: https://github.com/uslurper/digiduck
Author: Uslurper
Author-email: aklo101256@gmail.com
License: MIT
Description: **DigiDuck: Ducky Script to Digispark**

        =======================================

        This is a simple program that converts Ducky Script for Hak5 USB Rubber Duckys into code executable by a Digispark.

        As of yet there is no support for the BREAK key, but all other keys work fine.

        

        The REPEAT command can either work as usual, or it can be used with two arguments:

        REPEAT 4 10 means "repeat the previous four instructions 10 times".

        REPEATS can also now be nested.

        

        You can now trigger the light on your digispark within the ducky script via the commands "LIGHT ON" or "LIGHT OFF". This may be useful for feedback during execution.

        

        Additionally, there is now a keyword, RTRIGGER, which allows certain code to be run randomly at specified intervals. RTRIGGER takes one or two arguments, the first being the percentage of successes desired and the second being the time interval between attempts. This time interval is formatted as 10s for 10 seconds, 10m for 10 minutes, 10h and 10d for hours and days, respectively. All RTRIGGER blocks must be terminated with the ENDR keyword, but can be placed anywhere in code. Placing one inside of a REPEAT block will lead to errors, however. If a time duration is not specified, it defaults to one second. Also, the initial frequency parameter is capable of accepting floating point values.

        

        Please note that the program discards leading whitespace between your opening keywords and their arguments in the Ducky Script. This negatively affects ASCII art.

        

        Written by `Uslurper <https://github.com/uslurper>`_.

        

        Usage: digiduck [source.txt] [dest.ino]

        or:    digiduck [source.txt]

        

        If the second form is used, the file generated will have the same name as the source, but with an .ino extension, and it will appear in the same directory as the source.

        

        It's that simple.

        
Keywords: digispark duckyscript pentesting
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Code Generators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
