├── .gitignore ├── LICENSE ├── LINKS.md ├── README.md └── talk ├── DEMOS.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xairy/usb-hacking/HEAD/LICENSE -------------------------------------------------------------------------------- /LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xairy/usb-hacking/HEAD/LINKS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xairy/usb-hacking/HEAD/README.md -------------------------------------------------------------------------------- /talk/DEMOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xairy/usb-hacking/HEAD/talk/DEMOS.md -------------------------------------------------------------------------------- /talk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xairy/usb-hacking/HEAD/talk/README.md --------------------------------------------------------------------------------