BADUSB Close but no cigar...
@@ -1,7 +1,7 @@
|
||||
App(
|
||||
appid="bad_usb",
|
||||
name="Bad USB",
|
||||
apptype=FlipperAppType.APP,
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
entry_point="bad_usb_app",
|
||||
cdefines=["APP_BAD_USB"],
|
||||
requires=[
|
||||
@@ -9,6 +9,10 @@ App(
|
||||
"dialogs",
|
||||
],
|
||||
stack_size=2 * 1024,
|
||||
icon="A_BadUsb_14",
|
||||
# icon="A_BadUsb_14",
|
||||
order=70,
|
||||
fap_category="Main",
|
||||
fap_icon="gpioIcon.png",
|
||||
fap_icon_assets="images",
|
||||
|
||||
)
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include "bad_usb_app.h"
|
||||
#include "scenes/bad_usb_scene.h"
|
||||
#include "bad_usb_script.h"
|
||||
#include "bad_usb_icons.h"
|
||||
|
||||
#include <gui/gui.h>
|
||||
#include <assets_icons.h>
|
||||
|
||||
BIN
applications/main/bad_usb/gpioIcon.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
applications/main/bad_usb/images/ActiveConnection_50x64.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
applications/main/bad_usb/images/Clock_18x18.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
applications/main/bad_usb/images/Error_18x18.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
applications/main/bad_usb/images/EviSmile1_18x21.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
applications/main/bad_usb/images/EviSmile2_18x21.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
applications/main/bad_usb/images/EviWaiting1_18x21.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
applications/main/bad_usb/images/EviWaiting2_18x21.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
applications/main/bad_usb/images/Percent_10x14.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
applications/main/bad_usb/images/Smile_18x18.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
applications/main/bad_usb/images/UsbTree_48x22.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
applications/main/bad_usb/images/badusb_10px.png
Normal file
|
After Width: | Height: | Size: 576 B |
BIN
applications/main/bad_usb/images/keyboard_10px.png
Normal file
|
After Width: | Height: | Size: 147 B |
@@ -2,7 +2,7 @@
|
||||
#include "../bad_usb_script.h"
|
||||
#include <toolbox/path.h>
|
||||
#include <gui/elements.h>
|
||||
#include <assets_icons.h>
|
||||
#include <bad_usb_icons.h>
|
||||
|
||||
#define MAX_NAME_LEN 64
|
||||
|
||||
|
||||