Skip to content

Instantly share code, notes, and snippets.

@Tig3rch3n
Tig3rch3n / TL-WN722N_monitormode.sh
Created May 6, 2022 19:18 — forked from lewixlabs/TL-WN722N_monitormode.sh
How to enable monitor mode for TP-LINK TL-WN722N V2/V3/Vx
# 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"
@Tig3rch3n
Tig3rch3n / LetsSplitFlashingGuide.md
Created February 3, 2021 18:46 — forked from CampAsAChamp/LetsSplitFlashingGuide.md
Let's Split Flashing Guide for Windows

A Guide to Flashing a Let's Split for Beginners (Windows)


This guide is no longer being updated and instead has moved to GitHub (click and scroll down)


3 Main Steps

  • Setting Up and Installing Software
  • Building your keymap and keyboard firmware
@Tig3rch3n
Tig3rch3n / PS2Scancode.ino
Created January 29, 2018 15:10 — forked from DorianRudolph/LICENSE.txt
Arduino PS2 to USB HID Keyboard Converter
//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