Skip to content

Instantly share code, notes, and snippets.

View d00telemental's full-sized avatar

d00telemental

  • Intai'sei, Phoenix system, Argos Rho cluster
View GitHub Profile
@d00telemental
d00telemental / LoadLinkerMapXEX.java
Created June 17, 2025 23:48
Script which uses a .map file to symbolize a .xex file loaded into Ghidra by WV's extension.
//Loads an associated .map file into an analyzed .xex assembly.
//@author
//@category
//@keybinding
//@menupath
//@toolbar
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
@d00telemental
d00telemental / FNameTest.cpp
Last active May 29, 2021 16:42
Primitive SDK-less ProcessEvent hook for LE1, bundled with dynamic FName look-up without FName::ToString offset
#pragma once
#include <Windows.h>
#include <cstdlib>
#include <string>
#include <utility>
#include "minhook/include/MinHook.h" // slightly fuzzed and stripped-down MinHook, ctrlc+v'ed from LEBinkProxy
typedef unsigned long uint32;
typedef signed long int32;
typedef signed long long int64;