├── LICENSE ├── README.md ├── agent └── simple-agent.py ├── dbus └── de.syss.btkbdservice.conf ├── doc └── paper │ ├── Rikki_Dont_Lose_That_Bluetooth_Device.pdf │ └── Security_of_Modern_Bluetooth_Keyboards.pdf ├── images └── bluetooth_keyboard_emulator.png ├── keyboard.conf.example ├── keyboard └── keyboard_client.py ├── server ├── keyboard_server.py └── sdp_record.xml ├── setup.sh └── start.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/README.md -------------------------------------------------------------------------------- /agent/simple-agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/agent/simple-agent.py -------------------------------------------------------------------------------- /dbus/de.syss.btkbdservice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/dbus/de.syss.btkbdservice.conf -------------------------------------------------------------------------------- /doc/paper/Rikki_Dont_Lose_That_Bluetooth_Device.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/doc/paper/Rikki_Dont_Lose_That_Bluetooth_Device.pdf -------------------------------------------------------------------------------- /doc/paper/Security_of_Modern_Bluetooth_Keyboards.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/doc/paper/Security_of_Modern_Bluetooth_Keyboards.pdf -------------------------------------------------------------------------------- /images/bluetooth_keyboard_emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/images/bluetooth_keyboard_emulator.png -------------------------------------------------------------------------------- /keyboard.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/keyboard.conf.example -------------------------------------------------------------------------------- /keyboard/keyboard_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/keyboard/keyboard_client.py -------------------------------------------------------------------------------- /server/keyboard_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/server/keyboard_server.py -------------------------------------------------------------------------------- /server/sdp_record.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/server/sdp_record.xml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/setup.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SySS-Research/bluetooth-keyboard-emulator/HEAD/start.sh --------------------------------------------------------------------------------