My main target is the UI and overall smoothness, so users can have a better experience while editing DEX files. This is not a complete project yet I’m currently working on the text editor. After that, I’ll add a class smali viewer, smali text search, and more features
I’m not using the Sora Editor because I want to build my own editor from scratch. I think I can complete it within a week, so stay tuned and follow this GitHub repository for updates
https://github.com/ispointer/DexEditorPlus
I’m not using the Sora Editor because I want to build my own editor from scratch. I think I can complete it within a week, so stay tuned and follow this GitHub repository for updates
https://github.com/ispointer/DexEditorPlus
GitHub
GitHub - ispointer/DexEditorPlus
Contribute to ispointer/DexEditorPlus development by creating an account on GitHub.
❤9😁5❤🔥1
Smali-Search-Engine.zip
13 MB
Smali-Search-Engine
You can use this library in any Java or Android project
Supported Search Modes
Smali Search
Class Name Search
Method Name Search
Field Name Search
String Search
Integer Value Search
Idea and development by : bin Mt manager Owner & Modder_Hub
ClassDef Modifi
Library developed By - @RevDex
You can use this library in any Java or Android project
Supported Search Modes
Smali Search
Class Name Search
Method Name Search
Field Name Search
String Search
Integer Value Search
Idea and development by : bin Mt manager Owner & Modder_Hub
import com.smalisearch.engine.SmaliSearchEngine;
import com.smalisearch.engine.SearchMode;
import com.smalisearch.engine.SearchOptions;
import com.smalisearch.engine.SearchResult;
SmaliSearchEngine engine = new SmaliSearchEngine();
SearchOptions opt = new SearchOptions();
opt.setMode(SearchMode.SMALI);
opt.setPath("com/example");
opt.setSearchSubfolders(true);
opt.setMatchCase(false);
ClassDef Modifi
public byte[] rebuildOneClass(
byte[] oldDexBytes,
SearchResult result,
String newSmali
) throws Exception {
int version = DexUtil.verifyDexHeader(oldDexBytes, 0);
DexBackedDexFile oldDex = DexBackedDexFile.fromInputStream(
Opcodes.forDexVersion(version),
new ByteArrayInputStream(oldDexBytes)
);
String targetType = result.getClassType();
/* Def Byte just mod :-+ jk */
ClassDef newClassDef = SmaliAssembler.assemble(newSmali, version);
DexPool pool = new DexPool(Opcodes.forDexVersion(version));
for (ClassDef cls : oldDex.getClasses()) {
if (cls.getType().equals(targetType)) {
pool.internClass(newClassDef);
} else {
pool.internClass(cls);
}
}
MemoryDataStore store = new MemoryDataStore();
pool.writeTo(store);
return store.getData();
}
Library developed By - @RevDex
❤21❤🔥1👌1
Forwarded from Dr.FarFar
Please open Telegram to view this post
VIEW IN TELEGRAM
GitHub
GitHub - AkaTorich/KernelFlirt: KernelFlirt is powerful kernel debugger.
KernelFlirt is powerful kernel debugger. Contribute to AkaTorich/KernelFlirt development by creating an account on GitHub.
❤2
runtime il2cpp running function capture it's a lib Trace universal ♾️ you can Trace cocos2d engine & UE4 Sdk Trace what function are calling in current runtime
🤯8❤🔥3👌1👀1
runtime_dump.cs
147.9 KB
Testing Subway Surfers (ARM64) 🙈♾️. MenTool doesn't have any runtime search limits 🔍 allowing me to capture the entire IL2CPP API at runtime without method trace restrictions
logic from the following open-source repositories:
- https://github.com/Perfare
- https://github.com/capstone-engine/capstone
- https://github.com/frida/frida-gum
logic from the following open-source repositories:
- https://github.com/Perfare
- https://github.com/capstone-engine/capstone
- https://github.com/frida/frida-gum
👌8❤1
Forwarded from MemTool
MemTool_release-zygisk_v3.2 Test.zip
26.2 MB
#1 Runtime IL2CPP API Dumping
#2 WebUI Update
- Currently displays app icons and application information on the web interface
⚠️ This is a test version.
Key: dev
#2 WebUI Update
- Currently displays app icons and application information on the web interface
⚠️ This is a test version.
Key: dev
❤8👌4❤🔥1
MemTool currently supports Flutter SDK tracing
It can externally capture the Flutter VM Runner, intercept methods that are currently executing, and dump the entire Dart VM snapshot at runtime. This feature allows users to monitor which methods are being called in real time and analyze Flutter application behavior dynamically.
This implementation is based on the reFlutter and Blutter projects, and proper credit is given to their developers.
This is an external Flutter VM Runner code grabber and runtime tracing implementation
It can externally capture the Flutter VM Runner, intercept methods that are currently executing, and dump the entire Dart VM snapshot at runtime. This feature allows users to monitor which methods are being called in real time and analyze Flutter application behavior dynamically.
This implementation is based on the reFlutter and Blutter projects, and proper credit is given to their developers.
This is an external Flutter VM Runner code grabber and runtime tracing implementation
❤18👌2
Forwarded from Modder Hub
https://github.com/developer-krushna/Dex-Editor-Android
Dexeditor Android
* Support multiple classes editing
* Search replacement
* String list
* Compilation options
* Dex compilation is much faster than ever
Dexeditor Android
* Support multiple classes editing
* Search replacement
* String list
* Compilation options
* Dex compilation is much faster than ever
GitHub
GitHub - developer-krushna/Dex-Editor-Android: A work in progress Android dalvik byte code(DEX) editor
A work in progress Android dalvik byte code(DEX) editor - developer-krushna/Dex-Editor-Android
❤5👌2
Forwarded from Maharna's Tech
app-release.apk
12.1 MB
Dex Editor +
* Added batch class editor like MT Manager
* Editor Fragment will support all the problems related to smali editing
* Smooth navigate to other classes
* Search and replace with search type like Smali, Strings, Field, method, integer all search type support like MT Manager
* Support listing Strings in string fragment
* Dexeditor compilation options like remove debug infos and version change
Contribute here - https://github.com/developer-krushna/Dex-Editor-Android
* Added batch class editor like MT Manager
* Editor Fragment will support all the problems related to smali editing
* Smooth navigate to other classes
* Search and replace with search type like Smali, Strings, Field, method, integer all search type support like MT Manager
* Support listing Strings in string fragment
* Dexeditor compilation options like remove debug infos and version change
Contribute here - https://github.com/developer-krushna/Dex-Editor-Android
❤11
LGL 3.2 Zygisk Project.zip
904.6 KB
LGL 3.2 Zygisk Project.zip
Memory loader by NepMod
Full GUI design inspired by RevDex
Prebuild - https://t.me/RevDex/354
Memory loader by NepMod
Full GUI design inspired by RevDex
Prebuild - https://t.me/RevDex/354
❤4
Forwarded from Snoop Christ (Alex)
GitHub
GitHub - nitanmarcel/dpt-unpacker: A tiny Python tool that pulls the real method bodies out of an APK packed with [dpt-shell](…
A tiny Python tool that pulls the real method bodies out of an APK packed with [dpt-shell](https://github.com/luoyesiqiu/dpt-shell). - nitanmarcel/dpt-unpacker
❤1