Skip to content

Instantly share code, notes, and snippets.

View enokseth's full-sized avatar
:shipit:
Focusing

enok.seth enokseth

:shipit:
Focusing
  • Lyon
  • 00:11 (UTC +02:00)
  • Instagram enoksseth
View GitHub Profile
@carrot-c4k3
carrot-c4k3 / gspoc.txt
Last active March 28, 2025 04:07
Game Script native code execution PoC
// native code exec PoC via Game Script - @carrot_c4k3 (exploits.forsale)
//
// sample shellcode: mov rax, 0x1337; ret;
// drop your own shellcode inplace here
let shellcode = [0x48,0xC7,0xC0,0x37,0x13,0x00,0x00,0xC3]
// hex printing helper functions
let i2c_map = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F']
let c2i_map = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, 'A': 0xA, 'B': 0xB, 'C': 0xC, 'D': 0xD, 'E': 0xE, 'F': 0xF}
@0xdevalias
0xdevalias / decompile-apple-shortcuts.md
Last active July 30, 2025 20:38
A few notes on decompiling Apple Shortcuts workflows into their raw XML 'source code'.
@P1N2O
P1N2O / README.md
Last active August 6, 2025 20:59
Guide to Compile an Android Kernel with Clang

Android Kernel Compilation Guide

This gist is intended to assist beginners, like myself, in getting started with Android Kernel Compilation. Please note that while I'm sharing my setup and process, this guide may not be entirely accurate, and I welcome suggestions from experienced developers to improve it.

Installing Build Tools

I am on Arch, so I will be using pacman to install the base-devel package group.

sudo pacman -S base-devel

On a Debian based distro, you can use apt and install the build-essential package.