Skip to content

Instantly share code, notes, and snippets.

@in1nit1t
in1nit1t / esp.py
Created April 9, 2024 09:01
uniref ESP example
import time
import pygame
import win32api
import win32con
import win32gui
from uniref import WinUniRef
ref = WinUniRef("Content Warning.exe")
@in1nit1t
in1nit1t / disc_disasm.py
Created June 6, 2023 16:08
[DiceCTF-2023] disc disassembler
from pwn import *
rom = open("rom.dat", "rb").read()
fetch_1 = lambda x: rom[x]
fetch_4 = lambda x: u32(rom[x:x+4])
strtab = [
"gimme something:",
"\nCorrect :)\nSurround your flag with dice{}",
@in1nit1t
in1nit1t / nlinks_PART_A.py
Last active June 6, 2023 15:55
[DEFCON-QUALS-2023] nlinks PART A solver