This guide is no longer being updated and instead has moved to GitHub (click and scroll down)
- Setting Up and Installing Software
- Building your keymap and keyboard firmware
| # Credits: https://www.hackster.io/thatiotguy/enable-monitor-mode-in-tp-link-tl-wn722n-v2-v3-128fc6 | |
| # Tested on Kali Linux 2020.3 | |
| # Commands used to Setup the Adapter from aircrack repository | |
| sudo apt update | |
| sudo apt install bc -y | |
| sudo rmmod r8188eu.ko | |
| git clone https://github.com/aircrack-ng/rtl8188eus | |
| cd rtl8188eus | |
| sudo -i | |
| echo "blacklist r8188eu" > "/etc/modprobe.d/realtek.conf" |
| //Program that outputs all PS2 scancodes via serial | |
| #define BUFFER_SIZE 45 | |
| static volatile uint8_t buffer[BUFFER_SIZE]; | |
| static volatile uint8_t head, tail; | |
| #define DATA_PIN 10 | |
| #define IRQ_PIN 3 | |
| // The ISR for the external interrupt |