ЯevDex
4.26K subscribers
119 photos
59 videos
122 files
156 links
My GitHub - https://github.com/ispointer
Telegram Bot - @RevDexbot
Telegram Chat: @RevDexChat
RevDex Team Identity -- > Reverse Engineer & Indie Developer
Download Telegram
1
dex2c pro v2.0.apk
40.1 MB
Dex2C Pro v2.0 (Offline Support)


New Added :

# Fixed UI glitches
# Added UI scaling support
# You can now scale the global UI

# Protect any APK completely offline
# Only a one-time NDK setup download is required

# Added custom Class Name & libname options
# New protection flags added
# Added #2 sub inner support inside dex2clib

Improvements :

Faster performance
Improved I/O optimization
Real-time memory caching added for faster build speeds

Video Tutorial:
Soon...
36❤‍🔥6👌6
Media is too big
VIEW IN TELEGRAM
Thanks for finding this bug @Newbotprexh

Some people reported that after applying the protection, certain apps were crashing I now understand why the crashes were happening and I’m going to fix the issue in the next update

By the way thanks for helping me find this bug If anyone else experiences problems or has suggestions make sure to share your opinion in the comments below
20❤‍🔥2
Media is too big
VIEW IN TELEGRAM
dolphin 🐬 Penel cracking tutorial

By - @revdex
❤‍🔥13🤯84😁4
DexEditor Project started
8❤‍🔥3
DexShellx_com,x,dexprotectx_26,0(2).apk
45.3 MB
Cracked Version

Cracked by - @nitanmarcel
11😁9🤯2
classes.dex
2.7 MB
DexShell's dex code
7🥰2
Unencrypted, readable
11❤‍🔥3
MT Manager Dex Editor Plus Open source soon
31😱5❤‍🔥2😁2🤯2
40% complete 💯 soon clone this is a fully dynamic & custom recursive hierarchical tree renderer using RecyclerView faah mt
37😱4🤓2👀2❤‍🔥1🥰1
isms hook zygisk.zip
60.3 MB
Frida-gum static example Undetectable Pairip Application Also working

Author - @revdex
13🤓1
Forwarded from Void Killer
Void Killer.apk
5.6 MB
VOID KILLER — APK Signature Killer
PMS Hook Mode
IProxy → Proxy Agent
ICreator → Creator Agent
IBinder → Binder Agent
🔀 IO Redirect Mode
JAVA → Java API redirect
LIBC → Native libc redirect
SVC → Syscall redirect
🛡️ Anti Exit
Kill → Block killProcess()
Finish → Prevent finish()
EXIT → Neutralize System.exit()
Finish Affinity → Stop finishAffinity()
⚙️ Extra Features
Path Spoof → Hide real APK paths
Class Spoof → Hide Killer Application & App component factory
Installer Spoof → Fake installer source
😱215❤‍🔥2👌1
Media is too big
VIEW IN TELEGRAM
I fully cloned the MT Manager DexEditor UI After writing the code I compared it side by side with the original MT Manager and this is the result See this video haha

Animation & Fastrecyclerview etc...
😍126❤‍🔥3👌2
DexEditorPlus UI_sign.apk
2.2 MB
DexEditorPlus_UI_sign.apk

This APK is mainly focused on the Tree View UI. You can check it and give me feedback. Basically, my main focus is UI, UI, and UI. I want the interface to feel very smooth, which is why I’m sharing this APK Please compare it with MT Manager and give me your feedback

Temporary post 📯
26👌7❤‍🔥4
Media is too big
VIEW IN TELEGRAM
Game over 😂 Undetectable Framework

I can directly hook into Pairip protected apps using my own framework, even i injected a a custom dialog box through my framework just watch 😎 LSPosed can't do this 😂🤦‍♀️🤡
👌187🤯6🙈1
Kpm Example.zip
3.5 MB
Pass - 1
9
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
9😁5❤‍🔥1
Copy running 😃😂
3🤓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

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