├── .github ├── .markdownlint.json ├── FUNDING.yml └── workflows │ ├── check-markdown.yml │ └── mkdocs-build.yml ├── LICENSE ├── README.md ├── docs ├── DISCLAIMER.md ├── README.md ├── assets │ ├── Qspi.png │ ├── UART_1bit_period.png │ ├── UART_add_proto_decoder.png │ ├── UART_sigrok_dump.png │ ├── UART_uboot_str.png │ ├── ch341a.png │ ├── esp32-pin20.png │ ├── esp32-pinout.png │ ├── flipper-gpio.png │ ├── hydra-spi.png │ ├── hydrabus_pin_assignment.jpg │ ├── image_bus_pirate.png │ ├── image_flipper.png │ ├── image_flipper_cover.png │ ├── image_pwnagotchi.png │ ├── limebts │ │ ├── 0_pKv_npHA_3DhtIQi.jpg │ │ ├── 1_2il3cVVy8yFsX5hNsESyDw.jpg │ │ ├── 1_8_tklU4IBXyxERiyDkxl-w.jpg │ │ ├── 1_CrDQk7YysiFXzgaOrxaTQA.jpg │ │ ├── 1_KbNtmYsmaCMVJinWnJdhFg.jpg │ │ └── 1_MmIJlBChAK1XF8TzxoX80g.jpg │ ├── logo.png │ ├── memory-programmer-rt809h.jpg │ ├── pin2pwn_practical_example.png │ ├── rp2040-jtagscan-resistors.png │ ├── rpi-gpio.png │ ├── spi_pin2pwn.png │ └── uds-message-frame-can-bus.svg ├── custom.css ├── debug-interfaces │ ├── jtag.md │ ├── swd.md │ └── uart.md ├── enumeration │ ├── chip-identification.md │ ├── fcc-id.md │ └── jtag.md ├── firmware │ ├── firmware-dumping.md │ └── firmware-reverse-engineering.md ├── gadgets │ ├── arduino.md │ ├── bruschetta-board.md │ ├── bus-pirate.md │ ├── ch341a.md │ ├── esp32.md │ ├── flipper-zero.md │ ├── goodfet.md │ ├── hydrabus.md │ ├── hydraflash.md │ ├── hydranfc.md │ ├── hydrausb3.md │ ├── icopy-x.md │ ├── logic-analyzer.md │ ├── m5stack.md │ ├── memory-programmer.md │ ├── micro-bit.md │ ├── proxmark.md │ ├── pwnagotchi.md │ └── raspberry-pi.md ├── other │ ├── default-iot-passwords.md │ ├── electronic-components.md │ └── links-and-hardware-kits.md ├── protocols │ ├── bluetooth.md │ ├── can.md │ ├── dnp3.md │ ├── gps.md │ ├── http.md │ ├── i2c.md │ ├── lora.md │ ├── mms.md │ ├── modbus.md │ ├── mqtt.md │ ├── rfid-nfc │ │ ├── README.md │ │ ├── hf-mifare-classic.md │ │ ├── hf-mifare-desfire.md │ │ ├── hf-mifare-ultralight.md │ │ ├── hf-vigik.md │ │ ├── lf-hid-indala.md │ │ └── ntag215-amiibo.md │ ├── signaling-system-7.md │ ├── spi.md │ ├── upnp.md │ ├── usb.md │ ├── wifi │ │ ├── wifi-basics.md │ │ ├── wifi-corporate.md │ │ ├── wifi-other.md │ │ ├── wifi-wep.md │ │ └── wifi-wpa.md │ └── zigbee.md ├── radio-frequency │ ├── limesdr-bts.md │ └── sdr.md ├── secure-boot │ └── README.md └── side-channel │ └── fault-injection.md ├── mkdocs.yml └── overrides └── main.html /.github/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/.github/.markdownlint.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/check-markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/.github/workflows/check-markdown.yml -------------------------------------------------------------------------------- /.github/workflows/mkdocs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/.github/workflows/mkdocs-build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/README.md -------------------------------------------------------------------------------- /docs/DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/DISCLAIMER.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/Qspi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/Qspi.png -------------------------------------------------------------------------------- /docs/assets/UART_1bit_period.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/UART_1bit_period.png -------------------------------------------------------------------------------- /docs/assets/UART_add_proto_decoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/UART_add_proto_decoder.png -------------------------------------------------------------------------------- /docs/assets/UART_sigrok_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/UART_sigrok_dump.png -------------------------------------------------------------------------------- /docs/assets/UART_uboot_str.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/UART_uboot_str.png -------------------------------------------------------------------------------- /docs/assets/ch341a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/ch341a.png -------------------------------------------------------------------------------- /docs/assets/esp32-pin20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/esp32-pin20.png -------------------------------------------------------------------------------- /docs/assets/esp32-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/esp32-pinout.png -------------------------------------------------------------------------------- /docs/assets/flipper-gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/flipper-gpio.png -------------------------------------------------------------------------------- /docs/assets/hydra-spi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/hydra-spi.png -------------------------------------------------------------------------------- /docs/assets/hydrabus_pin_assignment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/hydrabus_pin_assignment.jpg -------------------------------------------------------------------------------- /docs/assets/image_bus_pirate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/image_bus_pirate.png -------------------------------------------------------------------------------- /docs/assets/image_flipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/image_flipper.png -------------------------------------------------------------------------------- /docs/assets/image_flipper_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/image_flipper_cover.png -------------------------------------------------------------------------------- /docs/assets/image_pwnagotchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/image_pwnagotchi.png -------------------------------------------------------------------------------- /docs/assets/limebts/0_pKv_npHA_3DhtIQi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/limebts/0_pKv_npHA_3DhtIQi.jpg -------------------------------------------------------------------------------- /docs/assets/limebts/1_2il3cVVy8yFsX5hNsESyDw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/limebts/1_2il3cVVy8yFsX5hNsESyDw.jpg -------------------------------------------------------------------------------- /docs/assets/limebts/1_8_tklU4IBXyxERiyDkxl-w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/limebts/1_8_tklU4IBXyxERiyDkxl-w.jpg -------------------------------------------------------------------------------- /docs/assets/limebts/1_CrDQk7YysiFXzgaOrxaTQA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/limebts/1_CrDQk7YysiFXzgaOrxaTQA.jpg -------------------------------------------------------------------------------- /docs/assets/limebts/1_KbNtmYsmaCMVJinWnJdhFg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/limebts/1_KbNtmYsmaCMVJinWnJdhFg.jpg -------------------------------------------------------------------------------- /docs/assets/limebts/1_MmIJlBChAK1XF8TzxoX80g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/limebts/1_MmIJlBChAK1XF8TzxoX80g.jpg -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/memory-programmer-rt809h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/memory-programmer-rt809h.jpg -------------------------------------------------------------------------------- /docs/assets/pin2pwn_practical_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/pin2pwn_practical_example.png -------------------------------------------------------------------------------- /docs/assets/rp2040-jtagscan-resistors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/rp2040-jtagscan-resistors.png -------------------------------------------------------------------------------- /docs/assets/rpi-gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/rpi-gpio.png -------------------------------------------------------------------------------- /docs/assets/spi_pin2pwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/spi_pin2pwn.png -------------------------------------------------------------------------------- /docs/assets/uds-message-frame-can-bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/assets/uds-message-frame-can-bus.svg -------------------------------------------------------------------------------- /docs/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/custom.css -------------------------------------------------------------------------------- /docs/debug-interfaces/jtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/debug-interfaces/jtag.md -------------------------------------------------------------------------------- /docs/debug-interfaces/swd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/debug-interfaces/swd.md -------------------------------------------------------------------------------- /docs/debug-interfaces/uart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/debug-interfaces/uart.md -------------------------------------------------------------------------------- /docs/enumeration/chip-identification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/enumeration/chip-identification.md -------------------------------------------------------------------------------- /docs/enumeration/fcc-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/enumeration/fcc-id.md -------------------------------------------------------------------------------- /docs/enumeration/jtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/enumeration/jtag.md -------------------------------------------------------------------------------- /docs/firmware/firmware-dumping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/firmware/firmware-dumping.md -------------------------------------------------------------------------------- /docs/firmware/firmware-reverse-engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/firmware/firmware-reverse-engineering.md -------------------------------------------------------------------------------- /docs/gadgets/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/arduino.md -------------------------------------------------------------------------------- /docs/gadgets/bruschetta-board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/bruschetta-board.md -------------------------------------------------------------------------------- /docs/gadgets/bus-pirate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/bus-pirate.md -------------------------------------------------------------------------------- /docs/gadgets/ch341a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/ch341a.md -------------------------------------------------------------------------------- /docs/gadgets/esp32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/esp32.md -------------------------------------------------------------------------------- /docs/gadgets/flipper-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/flipper-zero.md -------------------------------------------------------------------------------- /docs/gadgets/goodfet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/goodfet.md -------------------------------------------------------------------------------- /docs/gadgets/hydrabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/hydrabus.md -------------------------------------------------------------------------------- /docs/gadgets/hydraflash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/hydraflash.md -------------------------------------------------------------------------------- /docs/gadgets/hydranfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/hydranfc.md -------------------------------------------------------------------------------- /docs/gadgets/hydrausb3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/hydrausb3.md -------------------------------------------------------------------------------- /docs/gadgets/icopy-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/icopy-x.md -------------------------------------------------------------------------------- /docs/gadgets/logic-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/logic-analyzer.md -------------------------------------------------------------------------------- /docs/gadgets/m5stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/m5stack.md -------------------------------------------------------------------------------- /docs/gadgets/memory-programmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/memory-programmer.md -------------------------------------------------------------------------------- /docs/gadgets/micro-bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/micro-bit.md -------------------------------------------------------------------------------- /docs/gadgets/proxmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/proxmark.md -------------------------------------------------------------------------------- /docs/gadgets/pwnagotchi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/pwnagotchi.md -------------------------------------------------------------------------------- /docs/gadgets/raspberry-pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/gadgets/raspberry-pi.md -------------------------------------------------------------------------------- /docs/other/default-iot-passwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/other/default-iot-passwords.md -------------------------------------------------------------------------------- /docs/other/electronic-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/other/electronic-components.md -------------------------------------------------------------------------------- /docs/other/links-and-hardware-kits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/other/links-and-hardware-kits.md -------------------------------------------------------------------------------- /docs/protocols/bluetooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/bluetooth.md -------------------------------------------------------------------------------- /docs/protocols/can.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/can.md -------------------------------------------------------------------------------- /docs/protocols/dnp3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/dnp3.md -------------------------------------------------------------------------------- /docs/protocols/gps.md: -------------------------------------------------------------------------------- 1 | # GPS - Global Positioning System 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /docs/protocols/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/http.md -------------------------------------------------------------------------------- /docs/protocols/i2c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/i2c.md -------------------------------------------------------------------------------- /docs/protocols/lora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/lora.md -------------------------------------------------------------------------------- /docs/protocols/mms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/mms.md -------------------------------------------------------------------------------- /docs/protocols/modbus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/modbus.md -------------------------------------------------------------------------------- /docs/protocols/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/mqtt.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/README.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/hf-mifare-classic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/hf-mifare-classic.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/hf-mifare-desfire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/hf-mifare-desfire.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/hf-mifare-ultralight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/hf-mifare-ultralight.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/hf-vigik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/hf-vigik.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/lf-hid-indala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/lf-hid-indala.md -------------------------------------------------------------------------------- /docs/protocols/rfid-nfc/ntag215-amiibo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/rfid-nfc/ntag215-amiibo.md -------------------------------------------------------------------------------- /docs/protocols/signaling-system-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/signaling-system-7.md -------------------------------------------------------------------------------- /docs/protocols/spi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/spi.md -------------------------------------------------------------------------------- /docs/protocols/upnp.md: -------------------------------------------------------------------------------- 1 | # UPnP - Universal Plug and Play 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /docs/protocols/usb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/usb.md -------------------------------------------------------------------------------- /docs/protocols/wifi/wifi-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/wifi/wifi-basics.md -------------------------------------------------------------------------------- /docs/protocols/wifi/wifi-corporate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/wifi/wifi-corporate.md -------------------------------------------------------------------------------- /docs/protocols/wifi/wifi-other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/wifi/wifi-other.md -------------------------------------------------------------------------------- /docs/protocols/wifi/wifi-wep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/wifi/wifi-wep.md -------------------------------------------------------------------------------- /docs/protocols/wifi/wifi-wpa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/wifi/wifi-wpa.md -------------------------------------------------------------------------------- /docs/protocols/zigbee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/protocols/zigbee.md -------------------------------------------------------------------------------- /docs/radio-frequency/limesdr-bts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/radio-frequency/limesdr-bts.md -------------------------------------------------------------------------------- /docs/radio-frequency/sdr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/radio-frequency/sdr.md -------------------------------------------------------------------------------- /docs/secure-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/secure-boot/README.md -------------------------------------------------------------------------------- /docs/side-channel/fault-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/docs/side-channel/fault-injection.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swisskyrepo/HardwareAllTheThings/HEAD/overrides/main.html --------------------------------------------------------------------------------