├── .gitignore ├── README.md ├── docs ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── cover.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── ducky ├── RaspiDucky │ ├── Configuration.py │ ├── Daemonize.py │ ├── DuckyScript.py │ ├── RFCommClient.py │ ├── RFCommServer.py │ ├── RunPayload.py │ └── __init__.py ├── duckyd.py ├── raspiducky.py └── setup.py ├── etc └── raspiducky │ ├── bluetooth.conf │ ├── keyboard_layouts │ ├── __init__.py │ └── db │ │ ├── QWERTY-ES_es.py │ │ └── __init__.py │ ├── payloads │ ├── backdoor │ │ └── bind_shell.dd │ └── open_terminal │ │ ├── open_mint_terminal.dd │ │ └── ubuntu_xterm.dd │ └── raspiducky.conf ├── hid-gadget-test.c ├── install.sh └── scripts ├── hid.sh └── run_payload.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap-theme.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap.css -------------------------------------------------------------------------------- /docs/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /docs/css/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/css/cover.css -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/js/bootstrap.js -------------------------------------------------------------------------------- /docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/docs/js/npm.js -------------------------------------------------------------------------------- /ducky/RaspiDucky/Configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/RaspiDucky/Configuration.py -------------------------------------------------------------------------------- /ducky/RaspiDucky/Daemonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/RaspiDucky/Daemonize.py -------------------------------------------------------------------------------- /ducky/RaspiDucky/DuckyScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/RaspiDucky/DuckyScript.py -------------------------------------------------------------------------------- /ducky/RaspiDucky/RFCommClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/RaspiDucky/RFCommClient.py -------------------------------------------------------------------------------- /ducky/RaspiDucky/RFCommServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/RaspiDucky/RFCommServer.py -------------------------------------------------------------------------------- /ducky/RaspiDucky/RunPayload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/RaspiDucky/RunPayload.py -------------------------------------------------------------------------------- /ducky/RaspiDucky/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ducky/duckyd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/duckyd.py -------------------------------------------------------------------------------- /ducky/raspiducky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/raspiducky.py -------------------------------------------------------------------------------- /ducky/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/ducky/setup.py -------------------------------------------------------------------------------- /etc/raspiducky/bluetooth.conf: -------------------------------------------------------------------------------- 1 | [service] 2 | uuid=94f39d29-7d6d-437d-973b-fba39e49d4ee -------------------------------------------------------------------------------- /etc/raspiducky/keyboard_layouts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/raspiducky/keyboard_layouts/db/QWERTY-ES_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/etc/raspiducky/keyboard_layouts/db/QWERTY-ES_es.py -------------------------------------------------------------------------------- /etc/raspiducky/keyboard_layouts/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/raspiducky/payloads/backdoor/bind_shell.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/etc/raspiducky/payloads/backdoor/bind_shell.dd -------------------------------------------------------------------------------- /etc/raspiducky/payloads/open_terminal/open_mint_terminal.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/etc/raspiducky/payloads/open_terminal/open_mint_terminal.dd -------------------------------------------------------------------------------- /etc/raspiducky/payloads/open_terminal/ubuntu_xterm.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/etc/raspiducky/payloads/open_terminal/ubuntu_xterm.dd -------------------------------------------------------------------------------- /etc/raspiducky/raspiducky.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/etc/raspiducky/raspiducky.conf -------------------------------------------------------------------------------- /hid-gadget-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/hid-gadget-test.c -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/install.sh -------------------------------------------------------------------------------- /scripts/hid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/scripts/hid.sh -------------------------------------------------------------------------------- /scripts/run_payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrase/Raspiducky/HEAD/scripts/run_payload.sh --------------------------------------------------------------------------------