satya@web:
/mobile
$
/

Mobile Architect

> Systems Engineering // Kernel Interactions // Cross-Platform

NATIVE

Android Internals

Deep diving into the OS. Root/Shizuku privileges, NDK integration, and hidden API exploitation.

SmaliBroadcastsTelephonyManager
CROSS-PLATFORM

Flutter Architecture

Building pixel-perfect interfaces at 120fps. Method channels, FFI, and complex state management.

RenderObjectsFFIIsolates
OFFENSIVE

Mobile Security

Analyzing attack surfaces. Intent interception, downgrade attacks, and forensic data recovery.

Burp SuiteADBReverse Eng
SYSTEM INTERCEPTION

Ai-Eze & Intent Hooks

Why open an app when the system can do it for you? Ai-Eze hooks directly into the Android PROCESS_TEXT intent.

  • Context Menu IntegrationSelect text -> "Ai-Eze" -> Instant Summary/Translation.View Source →
  • URL Check InterceptorCatches all http:// intents to prevent malicious clicks.
}
AndroidManifest.xml
<activity android:name=".ProcessTextActivity">
    <intent-filter>
        <action android:name="android.intent.action.PROCESS_TEXT" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="text/plain" />
    </intent-filter>
</activity>
📡 ble_controller.dart
// Collision Resistance Algorithm
void startAdvertising() {
  final baseInterval = 200;
  final jitter = Random().nextInt(100);
  
  // Staggered advertising prevents
  // packet collision in 200+ device environments
  _ble.advertise(
    interval: baseInterval + jitter,
    data: _getEncryptedPayload(),
  );
}
PROTOCOL ENGINEERING

Attend & AnonChat

Handling 200+ concurrent devices isn't just an app problem; it's a physics problem.

Engineered a custom BLE protocol achieving ~55% collision reduction and implemented SSE for battery-efficient real-time updates.

SECURITY RESEARCH

The art of "Breaking In"

VULNERABILITY

WhatsApp Downgrade Attack

Automated extraction of encryption keys using ADB backup/restore exploits. Force-downgrades to a debuggable version to dump .crypt14/15 databases.

TELEPHONY

TowerLink Cellular Monitor

Bypassing Android's background execution limits with persistent Foreground Services to log real-time LTE/5G signal strength and cell handover events.

View Code →

Ready to build something robust?