├── PoC-BadUSB_DetectOS.ino ├── README.md └── libraries ├── FingerprintUSBHost ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README ├── library.properties └── src │ ├── FingerprintUSBHost.cpp │ └── FingerprintUSBHost.h └── Keyboard ├── Readme.md ├── keywords.txt ├── library.properties └── src ├── Keyboard.cpp ├── Keyboard.h ├── be_be.h ├── cz_cz.h ├── da_dk.h ├── de_de.h ├── en_us.h ├── es_es.h ├── fi_fi.h ├── fr_fr.h ├── it_it.h ├── pt_pt.h └── tr_tr.h /PoC-BadUSB_DetectOS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/PoC-BadUSB_DetectOS.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/README.md -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/.travis.yml -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/CONTRIBUTING.md -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/LICENSE -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/Makefile -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/README -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/library.properties -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/src/FingerprintUSBHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/src/FingerprintUSBHost.cpp -------------------------------------------------------------------------------- /libraries/FingerprintUSBHost/src/FingerprintUSBHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/FingerprintUSBHost/src/FingerprintUSBHost.h -------------------------------------------------------------------------------- /libraries/Keyboard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/Readme.md -------------------------------------------------------------------------------- /libraries/Keyboard/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/keywords.txt -------------------------------------------------------------------------------- /libraries/Keyboard/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/library.properties -------------------------------------------------------------------------------- /libraries/Keyboard/src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/Keyboard.cpp -------------------------------------------------------------------------------- /libraries/Keyboard/src/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/Keyboard.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/be_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/be_be.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/cz_cz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/cz_cz.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/da_dk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/da_dk.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/de_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/de_de.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/en_us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/en_us.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/es_es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/es_es.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/fi_fi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/fi_fi.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/fr_fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/fr_fr.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/it_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/it_it.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/pt_pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/pt_pt.h -------------------------------------------------------------------------------- /libraries/Keyboard/src/tr_tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelsernamoreno/PoC-BadUSB_DetectOS/HEAD/libraries/Keyboard/src/tr_tr.h --------------------------------------------------------------------------------