├── LICENSE ├── README-ru.md ├── README.md ├── esptool.exe ├── include └── README ├── lib ├── BadUSB-lib │ ├── Bad_Usb_Lib.h │ ├── BleKeyboard.cpp │ ├── BleKeyboard.h │ ├── CH9329_Keyboard.cpp │ ├── CH9329_Keyboard.h │ ├── KeyboardLayout.h │ ├── KeyboardLayout_da_DK.cpp │ ├── KeyboardLayout_de_DE.cpp │ ├── KeyboardLayout_en_UK.cpp │ ├── KeyboardLayout_en_US.cpp │ ├── KeyboardLayout_es_ES.cpp │ ├── KeyboardLayout_fr_FR.cpp │ ├── KeyboardLayout_hu_HU.cpp │ ├── KeyboardLayout_it_IT.cpp │ ├── KeyboardLayout_pt_PT-BR.cpp │ ├── KeyboardLayout_pt_PT.cpp │ ├── KeyboardLayout_si_SI.cpp │ ├── KeyboardLayout_sv_SE.cpp │ ├── KeyboardLayout_tr_TR.cpp │ ├── USBHID.cpp │ ├── USBHID.h │ ├── USBHIDKeyboard.cpp │ ├── USBHIDKeyboard.h │ ├── USBHIDMouse.cpp │ ├── USBHIDMouse.h │ └── keys.h └── README ├── others ├── ESPHACK_PCBv3.zip ├── Pictures │ ├── Device.jpg │ ├── ESP-HACK.png │ ├── PCB.png │ └── boot.png └── qESP-H4CK │ ├── Background.jpg │ ├── Background.png │ ├── Connect.png │ ├── esptool.exe │ ├── logo.ico │ └── qESP-H4CK.py ├── platformio.ini └── src ├── Bluetooth.ino ├── CONFIG.h ├── ESP-HACK.ino ├── GPIO.ino ├── Infrared.ino ├── SubGHz.ino ├── WiFi.ino ├── ble_spam.cpp ├── ble_spam.h ├── bluetooth_menu.h ├── deauth.h ├── evilportal.h ├── gpio_menu.h ├── infrared_menu.h ├── interface.h ├── subghz.h ├── subghz_menu.h └── wifi_menu.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/README-ru.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/README.md -------------------------------------------------------------------------------- /esptool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/esptool.exe -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/include/README -------------------------------------------------------------------------------- /lib/BadUSB-lib/Bad_Usb_Lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/Bad_Usb_Lib.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/BleKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/BleKeyboard.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/BleKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/BleKeyboard.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/CH9329_Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/CH9329_Keyboard.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/CH9329_Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/CH9329_Keyboard.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_da_DK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_da_DK.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_de_DE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_de_DE.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_en_UK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_en_UK.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_en_US.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_en_US.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_es_ES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_es_ES.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_fr_FR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_fr_FR.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_hu_HU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_hu_HU.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_it_IT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_it_IT.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_pt_PT-BR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_pt_PT-BR.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_pt_PT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_pt_PT.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_si_SI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_si_SI.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_sv_SE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_sv_SE.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/KeyboardLayout_tr_TR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/KeyboardLayout_tr_TR.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/USBHID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/USBHID.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/USBHID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/USBHID.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/USBHIDKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/USBHIDKeyboard.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/USBHIDKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/USBHIDKeyboard.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/USBHIDMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/USBHIDMouse.cpp -------------------------------------------------------------------------------- /lib/BadUSB-lib/USBHIDMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/USBHIDMouse.h -------------------------------------------------------------------------------- /lib/BadUSB-lib/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/BadUSB-lib/keys.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/lib/README -------------------------------------------------------------------------------- /others/ESPHACK_PCBv3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/ESPHACK_PCBv3.zip -------------------------------------------------------------------------------- /others/Pictures/Device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/Pictures/Device.jpg -------------------------------------------------------------------------------- /others/Pictures/ESP-HACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/Pictures/ESP-HACK.png -------------------------------------------------------------------------------- /others/Pictures/PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/Pictures/PCB.png -------------------------------------------------------------------------------- /others/Pictures/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/Pictures/boot.png -------------------------------------------------------------------------------- /others/qESP-H4CK/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/qESP-H4CK/Background.jpg -------------------------------------------------------------------------------- /others/qESP-H4CK/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/qESP-H4CK/Background.png -------------------------------------------------------------------------------- /others/qESP-H4CK/Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/qESP-H4CK/Connect.png -------------------------------------------------------------------------------- /others/qESP-H4CK/esptool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/qESP-H4CK/esptool.exe -------------------------------------------------------------------------------- /others/qESP-H4CK/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/qESP-H4CK/logo.ico -------------------------------------------------------------------------------- /others/qESP-H4CK/qESP-H4CK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/others/qESP-H4CK/qESP-H4CK.py -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/Bluetooth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/Bluetooth.ino -------------------------------------------------------------------------------- /src/CONFIG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/CONFIG.h -------------------------------------------------------------------------------- /src/ESP-HACK.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/ESP-HACK.ino -------------------------------------------------------------------------------- /src/GPIO.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/GPIO.ino -------------------------------------------------------------------------------- /src/Infrared.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/Infrared.ino -------------------------------------------------------------------------------- /src/SubGHz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/SubGHz.ino -------------------------------------------------------------------------------- /src/WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/WiFi.ino -------------------------------------------------------------------------------- /src/ble_spam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/ble_spam.cpp -------------------------------------------------------------------------------- /src/ble_spam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/ble_spam.h -------------------------------------------------------------------------------- /src/bluetooth_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/bluetooth_menu.h -------------------------------------------------------------------------------- /src/deauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/deauth.h -------------------------------------------------------------------------------- /src/evilportal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/evilportal.h -------------------------------------------------------------------------------- /src/gpio_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/gpio_menu.h -------------------------------------------------------------------------------- /src/infrared_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/infrared_menu.h -------------------------------------------------------------------------------- /src/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/interface.h -------------------------------------------------------------------------------- /src/subghz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/subghz.h -------------------------------------------------------------------------------- /src/subghz_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/subghz_menu.h -------------------------------------------------------------------------------- /src/wifi_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teapot174/ESP-HACK/HEAD/src/wifi_menu.h --------------------------------------------------------------------------------