Skip to content

Instantly share code, notes, and snippets.

@ethylamine
ethylamine / LabelTLOUNativesPC.java
Created April 12, 2023 04:58
Labels native functions used within TLOU VM on PC
//Labels native functions used within TLOU VM on PC
//@author ethylamine
//@category FunctionID
import ghidra.app.script.GhidraScript;
import ghidra.program.model.util.*;
import ghidra.program.model.reloc.*;
import ghidra.program.model.data.*;
import ghidra.program.model.block.*;
import ghidra.program.model.symbol.*;
@ethylamine
ethylamine / nativeUpdater.java
Last active June 27, 2024 21:10
Analyzes and updates native addresses for GTA V on PS4, based on 2much4u's IDA script
//Analyzes and updates native addresses for GTA V on PS4, based on 2much4u's IDA script
//@author ethylamine
//@category Analysis
import ghidra.app.script.GhidraScript;
import ghidra.program.model.util.*;
import ghidra.program.model.reloc.*;
import ghidra.program.model.data.*;
import ghidra.program.model.block.*;
import ghidra.program.model.symbol.*;