Skip to content

Instantly share code, notes, and snippets.

@RLHawk1
RLHawk1 / i2cpp_ghidra.md
Created July 31, 2025 11:08 — forked from BadMagic100/i2cpp_ghidra.md
Instructions to get a useful decompilation out of an il2cpp game. Or, "I spent hours to trial and error so hopefully you won't have to"

Decompiling IL2CPP Games with Il2CppDumper and Ghidra

This guide will walk through how to decompile/reverse engineer IL2CPP games for modding usage.

Note: expect this entire process to take upwards of an hour. Have something ready to do on the side while waiting for processing to finish.

Prerequisites

  1. Download Il2CppDumper
@RLHawk1
RLHawk1 / crawler_detect.php
Last active January 17, 2017 16:41 — forked from geerlingguy/crawler_detect.php
Detect crawlers/bots/spiders in PHP (simple and fast)
<?php
/**
* Check if the user agent string is one of a crawler, spider, or bot.
*
* @return bool
* TRUE if the user agent is a bot, FALSE if not.
*/
function is_crawler() {
// User lowercase string for comparison.