[+] OPERATOR : Muhammad Ridwan Firdaus
[+] ARCHITECTURE : Android Low-Level Internals | White-Hat Vulnerability Research | AI Tooling
[+] ARSENAL : Reverse Engineering (Ghidra, Frida, Jadx) • Kernel/AOSP Modding • Native NDK (C++)
[+] CREED : "Dissect the binary to understand the flaw; harden the kernel to shield the world."
[+] CURRENT FOCUS : Anti-Tamper Frameworks, Play Integrity Hardening & Autonomous MCP Security Agents|
Aplikasi parental control generasi baru untuk keamanan digital anak di Indonesia. Dilengkapi mekanisme anti-uninstallation, proteksi endpoint, monitoring akses real-time, dan mitigasi eksploitasi pada perangkat Android anak. |
Enterprise school portal berbasis Android native (Kotlin, Jetpack Compose) dengan arsitektur modern, implementasi R8 bytecode shrinking & obfuscation, serta automated cryptographic signing pipeline via GitHub Actions. |
|
Mesin analitik otomatis berbasis AI/LLM untuk ekstraksi konten YouTube, podcast, dan live stream audio menjadi ringkasan terstruktur dengan latensi ultra-rendah dan integrasi API asinkron. |
Platform pelacakan posisi dan logistik kereta api secara real-time dengan verifikasi koordinat, mitigasi mock location spoofing, dan sinkronisasi data telemetri berkecepatan tinggi. |
📂 [CLICK TO EXPAND] Threat Assessment & Security Protocols
# Security & Reverse Engineering Checklist
├── 01. Static Analysis : Decompile APK -> Check Manifest Permissions -> Hardcoded Secrets Detection
├── 02. Dynamic Analysis : Frida Hooking -> SSL Pinning Bypass -> Root & SafetyNet/Play Integrity Audit
├── 03. Binary Inspection : ELF .so Native Libraries -> Ghidra Decompiler -> JNI Calls Hardening
├── 04. Network Forensics : Burp Proxy -> TLS Handshake Verification -> Replay Attack Mitigation
└── 05. Anti-Tamper Shields : ProGuard / R8 Name Obfuscation -> Checksum Verification -> Hook Detection💻 [CLICK TO EXPAND] Quick Modder Command Palette
# Dump and analyze Android memory in real-time
$ frida -U -f com.target.app -l hook_script.js --no-pause
# Audit native symbols from shared objects (.so)
$ readelf -s libnative-sec.so | grep -E "Java_|JNI_OnLoad"
# Real-time Logcat stream filtered by security alerts
$ adb logcat -v color | grep -E "(FATAL|SecurityException|TamperDetected)"