NepAU
**NepAu** (Native Lib for Auto-Update) is a runtime dynamic analysis library designed to interface with Unity IL2CPP binaries and native libraries (`.so`). Ideal for reverse engineering, modding, and automation, it provides an elegant and consistent interface to access classes, fields, methods, symbols, and patterns in memory.
Install / Use
/learn @NepMods/NepAUREADME
🧠 NepAu
NepAu (Native Lib for Auto-Update) is a runtime dynamic analysis library designed to interface with Unity IL2CPP binaries and native libraries (.so). Ideal for reverse engineering, modding, and automation, it provides an elegant and consistent interface to access classes, fields, methods, symbols, and patterns in memory.
📦 Repository
- 📁 Repo Name:
NepAu - 🌐 URL: https://github.com/nepmods/NepAu
- 👤 Author: @nepmods / arjun
✨ Features
- 🧠 IL2CPP class/method/field accessor
- 🔍 Pattern scanning via memory range
- 📜 Symbol resolver with offset calculation
- 📚 Module metadata handling (
start,end,size) - 🔄 Dynamic loader with retry and fallback
- 🧪 Support for Unity & custom libraries
🏗️ Instructions
Include Only
This Project can be used by just including one file
#include "NepAU/includeOnly/NepAU.h
Source
This Project can also be used by building source file put this on your cmakelist/android.mk
NepAU/src/NepAu.cpp
#include "NepAU/src/NepAu.h
🔧 Dependencies
| Component | Version | |---------------|-------------| | C++ Compiler | C++17+ | | Android NDK | r25+ | | Kernel (Linux)| ≥ 4.15 | | Unity IL2CPP | Supported | | libc / POSIX | Required |
🧰 Example Usage
LibManager manager("libil2cpp.so");
if (manager.loaded()) {
NClass playerClass = manager.get_class("PlayerControl");
Address killMethod = playerClass.method("MurderPlayer", 1);
NField nameField = playerClass.field("playerName");
uintptr_t offset = nameField.offset();
std::string playerName;
nameField.getStatic(&playerName);
LOGI("Kill method at: 0x%lx", (uintptr_t)killMethod);
LOGI("Name offset: %lx", offset);
}
📘 API Overview
🔹 LibManager
| Method | Description |
|--------|-------------|
| get_symbol(name) | Resolve dlsym symbol to absolute address |
| get_class(className) | Get class in global namespace |
| get_class(namespace, className) | Get class in specific namespace |
| get_pattern(pattern) | Search memory for hex pattern |
| loaded() | Returns true if library is loaded |
| is_unity() | Returns if library type is Unity |
🔹 NClass
| Method | Description |
|--------|-------------|
| method(name, paramCount) | Get method address |
| field(name) | Get field accessor |
🔹 NField
| Method | Description |
|--------|-------------|
| offset() | Get offset of field |
| getStatic(out) | Get static field value |
| setStatic(value) | Set static field value |
📦 Releases
| Version | Date | Description |
|---------|------------|--------------------|
| v1.0.0 | 2025-07-25 | Initial public release |
🧪 Testing
Run inside your injected project or loader environment:
- Dobby-based mods
- Android shared object loaders
- Unity IL2CPP hooks (e.g. ModMenu)
🙋 Contributing
We welcome contributions!
- 🍴 Fork the repo
- 🔧 Create a feature branch (
feature/something) - ✅ Commit your changes
- 🚀 Open a Pull Request
📜 Please ensure changes are clean and well-documented.
📄 License
This project is licensed under the MIT License.
See the LICENSE file for details.
🧠 Credits
- Developed by @nepmods / arjun
- Inspired by IL2CPP reverse engineering community
- With appreciation to:
📫 Contact
For issues or feature requests:
👉 Open an issue
Or email: nepmods@proton.me (example email, customize as needed)
Related Skills
clearshot
Structured screenshot analysis for UI implementation and critique. Analyzes every UI screenshot with a 5×5 spatial grid, full element inventory, and design system extraction — facts and taste together, every time. Escalates to full implementation blueprint when building. Trigger on any digital interface image file (png, jpg, gif, webp — websites, apps, dashboards, mockups, wireframes) or commands like 'analyse this screenshot,' 'rebuild this,' 'match this design,' 'clone this.' Skip for non-UI images (photos, memes, charts) unless the user explicitly wants to build a UI from them. Does NOT trigger on HTML source code, CSS, SVGs, or any code pasted as text.
openpencil
2.1kThe world's first open-source AI-native vector design tool and the first to feature concurrent Agent Teams. Design-as-Code. Turn prompts into UI directly on the live canvas. A modern alternative to Pencil.
HappyColorBlend
HappyColorBlendVibe Project Guidelines Project Overview HappyColorBlendVibe is a Figma plugin for color palette generation with advanced tint/shade blending capabilities. It allows designers to
Flyaro-waffle-app
Waffle Delight - Full Stack MERN Application Rules & Documentation Project Overview A comprehensive waffle delivery application built with MERN stack featuring premium UI/UX, admin management, a
