Skip to content

Instantly share code, notes, and snippets.

@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 December 9, 2025 08:54
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@SebaUbuntu
SebaUbuntu / README.md
Last active September 10, 2025 05:26
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 November 25, 2025 06:47
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.