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 June 1, 2025 19:01
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for non-video, non-activity quests! For stream/play quests use the desktop app!

Note

When doing stream quests, you need at least 1 other account in the vc!

How to use this script:

  1. Accept a quest under Discover -> Quests
@SebaUbuntu
SebaUbuntu / README.md
Last active May 11, 2025 08:58
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 28, 2025 15:56
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.