fa
Feedback
Codex

Codex

رفتن به کانال در Telegram

Content channel : - App Development - Python , C++, kotlin , Golang, Java , JS , Rust This Channel Doesn't Promote Any Illegal Activities It's Just For Fun Educational Purposes Owner : @Qwanwin From : Indonesia

نمایش بیشتر
1 406
مشترکین
اطلاعاتی وجود ندارد24 ساعت
اطلاعاتی وجود ندارد7 روز
+1930 روز
آرشیو پست ها
Codex
1 406
Rebuild Dex2C with other protection 😊
Rebuild Dex2C with other protection 😊

Codex
1 406
🛡️ CustomBase String Encryption (C++) Protect your native strings and URLs from reverse engineering using libencryption.so — a lightweight runtime encryption system for Android NDK projects. 🔧 Features • Encrypt & decrypt any string in C++ • Custom key (min. 10 chars) • Ideal for mod menus, API endpoints, update URLs 📂 Setup 1️⃣ Copy libencryption.so to: app/src/main/jniLibs/arm64-v8a/ app/src/main/jniLibs/armeabi-v7a/ 2️⃣ Include the header: #include "BaseEncryption.h" 3️⃣ Use the API: std::string dec = BaseEncryption::Decrypt("EncryptedText", "YourKey"); std::string enc = BaseEncryption::Encrypt("https://google.com", "YourKey"); ⚙️ Notes • Key length > 10 characters • .so must export: EncryptMessage, DecryptMessage, getEncrypted, getDecrypted • Rebuild with extern "C" if symbols are mangled 💡 Purpose Hide sensitive URLs, endpoints, and license data from static analysis tools like IDA, Ghidra, or JADX — keep your links safe inside native memory. don't remove me 😌 @Qwanwin

Codex
1 406
default.mtz location =>Under MUI 11 /MIUI/theme/default.mtz => Up MUI 12 1. Go to /system/media/theme/default/ 2. There are usually files there: com.miui.home framework-res systemui icons description.xml Zip all of that, then change it to Default.mtz If that folder isn't there, try: /system/product/media/theme/ Use this app for build your own thema Xiaomi model https://play.google.com/store/apps/details?id=com.arteneta.miuithemetester Write by me 😂

Codex
1 406
Build original my thema 😊
+4
Build original my thema 😊

Codex
1 406
I love this book 📚

Codex
1 406
Source code ! https://vmpsoft.com/files This Leaked version

Codex
1 406
Support UE1-UE4 How to use? https://github.com/Cynthia-cnn/Docs/blob/main/README.md Author? Idk 😐

Codex
1 406
v

Codex
1 406

Codex
1 406
Framework hooking for Android ARM64 - Remove useless code - Optimization code Thank you for your suggestion !! @aantik_lite Processing time : 8 hours 30 minutes Release date : Monday 13-Oct-2025 Author @Qwanwin

Codex
1 406
Framework Hooking For Windows x64 Author : https://github.com/TsudaKageyu/minhook

Codex
1 406
Framework hooking for Android ARM64 Author @Qwanwin

Codex
1 406
A fun programming language in Indonesian (biarkan, tulis, jika, ulang, fungsi, kembalikan, benar/salah). Repo: https://github.com/Cynthia-cnn/CynLang

Codex
1 406
Some of my learning about ELF came from the links below. Thanks to all the article creators. my regards @Qwanwin 1. 简单介绍一下Linux中ELF格式文件 https://www.cnblogs.com/bxf0011/p/15183422.html 2. ELF文件格式入门 https://blog.csdn.net/u012041204/article/details/126914506 3. Linux ELF格式分析(多篇) https://www.cnblogs.com/sky-heaven/p/15863004.html 4. 搞懂ELF - 从入门到遗忘 https://www.51cto.com/article/720922.html 5. ELF 格式详解 https://blog.csdn.net/kunkliu/article/details/129648744 6. ELF 文件格式原创(xukang95) https://blog.csdn.net/xukang95/article/details/114332714 7. ELF-Header https://segmentfault.com/a/1190000016766079 8. CSDN 教程合集 - 从0开始学 ELF(操作系统/loader 关联) https://blog.csdn.net/charlie114514191/article/details/145703920

Codex
1 406
Shared project encryption https://www.xmprotect.com Future: Anti-Tampering: Encrypt code and data, prevent file modification and repackaging Anti-Debug: Multiple anti-debugging solutions, prevent dynamic debugging, code tracing, and simulation Obfuscation: Instruction splitting and reordering, obfuscate call flow Virtualization Protection: Proprietary VM engine for core function virtualization protection Anti-Hook : Prevent code injection and HOOK attacks User :- Admin1 Password :- Admin1 @Qwanwin

Codex
1 406
Module GameGuardian ! Version: v1.0 Support : •Magisk 20->29 •Ksu GKI •Ksu next (GKI & No GKI) Improvement • Add Apatch support ! • FIX SDK : Click ME SS Use Zygisk Next / ReZygisk Author: @Qwanwin https://t.me/codex4444 Release date : Tuesday 23-Sep-2025

Codex
1 406
Module GameGuardian ! Version: v1.0 Support : •Magisk 20->29 •Ksu GKI •Ksu next (GKI & No GKI) SS Use Zygisk Next / ReZygisk Author: @Qwanwin https://t.me/codex4444 Release date : Tuesday 23-Sep-2025

Codex
1 406
photo content
+1

Codex
1 406
SurfaceBlobKit — a dynamic loader for Android native-surface (.so) directly from memory. • Loads API-specific blobs (Android 9–13) • Resolves functions such as createNativeWindow • Exposes a safe and unified API multi-platform testing, integration in custom builds (e.g., kernel modules, device-specific surface handling). file include -How to use.txt (don't ask me) Author: @Qwanwin Telegram: https://t.me/codex4444

Codex
1 406
Hex-Rays just dropped a brand-new Python API that makes IDA scripting cleaner, shorter, and way more Pythonic. See the difference in 5 seconds
OLD (IDAPython SDK):
ea = here()
func = get_func(ea)
name = get_func_name(func.start_ea)

NEW (IDA Domain API):
from ida_domain import Database
with Database() as db:
    print(db.functions.get_name(func))
Key points • No more verbose IDAPython boilerplate • Runs inside IDA or headless (batch automation) Install:
 pip install ida-domain
 
Docs & examples: https://hex-rays.com/blog/ida-domain-api