Skip to content

Instantly share code, notes, and snippets.

@fishand73
fishand73 / OVERVIEW.TXT
Last active March 25, 2026 21:38
adb protocol
Implementation notes regarding ADB.
I. General Overview:
The Android Debug Bridge (ADB) is used to:
- keep track of all Android devices and emulators instances
connected to or running on a given host developer machine
- implement various control commands (e.g. "adb shell", "adb pull", etc.)

Install Android SDK CLI Ubuntu 20.04 WSL2 (Work in Progress)

Install Java 8

sudo apt install openjdk-8-jdk-headless

Android SDK

@Informhunter
Informhunter / gist:c5c00fb08a6c14dc4279
Last active June 5, 2025 18:29
eTest test file decryptor
//Binary Win32 + source = https://www.dropbox.com/sh/4zp5okf5c1o6zyq/AAA1AJ-9t4vFuocoRCCGq_7Ia
#include <stdio.h>
#include <malloc.h>
#include <string.h>
char* TS1_KEY = "PoLiK";
char* TS2_KEY = "dfafFDSAFffdf342fd";
char* TS3_KEY = "jfkbFDSFDSdsf32cxc";
void decryptData(char* data, int size, char* key)