Skip to content

Instantly share code, notes, and snippets.

View ABC00012345's full-sized avatar

ABC00012345

View GitHub Profile
@HedgeBSD
HedgeBSD / sushi-exploit.ts
Created May 30, 2025 15:31
Brawl Stars Kaze exploit explained
/// <reference path="frida-gum.ts" />
const base = Module.getBaseAddress('libg.so');
class Libc {
static malloc = new NativeFunction(Module.getExportByName('libc.so', 'malloc'), 'pointer', ['size_t']);
}
class HomeMode {
public static HomeMode_getInstance = new NativeFunction(base.add(0x7C3A68), 'pointer', []); // v61.249
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 4, 2026 17:56
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@SebaUbuntu
SebaUbuntu / README.md
Last active December 23, 2025 02:49
Generate framework compatibility matrix from fqnames

Generate framework compatibility matrix from fqnames

  • Download these 2 files
  • Compile AOSP without fcm from stock and wait for check_vintf to error out
  • Delete Python prefix from all lines (e.g. checkvintf E 06-24 00:30:22 49120 49120 check_vintf.cpp:554])
  • Paste the result in fqnames.txt
  • Launch the script
@mvaisakh
mvaisakh / Bringup.md
Last active May 1, 2026 04:26
An Android Device Tree Bringup Guide

A small Device Tree Bringup Guide

Introduction

So, you guys might be wondering, how do these "Developers" get your favourite Custom roms, such as LineageOS, Paranoid Android etc., to their own devices. Well I'm here to Guide you on how to do it, specifically on how to bringup or make your own device tree from scratch or adapting.

Gist of this Guide: This is for people with genuine interest in Android OS porting/development. After going through this guide, you should be able to do a total device tree bringup on your own.

Prerequisite: Certain requirements are to be met before you start with this amazing journey.

@zafirr31
zafirr31 / pwntools_example.py
Last active April 5, 2026 22:08
Short pwntools tutorial for beginners
from pwn import *
BINARY = '<path_to_binary>'
IP, PORT = '<ip>', 8080
LOCAL = True
if LOCAL:
p = process(BINARY) # Makes pipe fd