diff --git a/README.md b/README.md index dae060d..c32a4e6 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ For a list of compatible devices check this link: [Circuit Python Downloads](htt - Download **rusty_ducky** from the releases for your operating system - Finished +> wait... you don't have to download the adafruit_hid library... interesting... + ## --help ``` diff --git a/rusty_ducky.exe b/rusty_ducky.exe deleted file mode 100644 index 8676c1e..0000000 Binary files a/rusty_ducky.exe and /dev/null differ diff --git a/src/build_templates/microducky_template.py b/src/build_templates/microducky_template.py deleted file mode 100644 index 9d6697e..0000000 --- a/src/build_templates/microducky_template.py +++ /dev/null @@ -1,10 +0,0 @@ -import usb_hid, gc, time -def report(report_code: list[int], rel: bool = True, slp = 0.02) -> None: # simulates a key press by sending an 8 byte long report with certain criteria - kbd.send_report(bytearray(report_code), 1) - time.sleep(slp) - if rel: - kbd.send_report(bytearray([0]*8)) # not calling recursively because of garbage collection - time.sleep(0.001) - gc.collect() # this takes a couple milliseconds to complete, but the USB pulling rate is 1000HZ so it doesn't make a noticable difference in the grand scheme of things - -kbd = [device for device in usb_hid.devices if device.usage_page == 0x1 and device.usage == 0x6 and hasattr(device, "send_report")][0] # hehe global data go brrrrrrrrrrrrrr diff --git a/src/build_templates/rusty_ducky_template.rs b/src/build_templates/rusty_ducky_template.rs deleted file mode 100644 index ed11d0f..0000000 --- a/src/build_templates/rusty_ducky_template.rs +++ /dev/null @@ -1,2 +0,0 @@ -// This is the template file for the precompiled rusty_ducky executable -// This is the program that will be run with the payload encoded into it. \ No newline at end of file