Major RCS/SMS exploitation rewrite (v2.0): - bugle_db direct extraction (plaintext messages, no decryption needed) - CVE-2024-0044 run-as privilege escalation (Android 12-13) - AOSP RCS provider queries (content://rcs/) - Archon app relay for Shizuku-elevated bugle_db access - 7-tab web UI: Extract, Database, Forge, Modify, Exploit, Backup, Monitor - SQL query interface for extracted databases - Full backup/restore/clone with SMS Backup & Restore XML support - Known CVE database (CVE-2023-24033, CVE-2024-49415, CVE-2025-48593) - IMS/RCS diagnostics, Phenotype verbose logging, Pixel tools New modules: Starlink hack, SMS forge, SDR drone detection Archon Android app: RCS messaging module with Shizuku integration Updated manuals to v2.3, 60 web blueprints confirmed Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<navigation
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/nav_graph"
|
|
app:startDestination="@id/nav_dashboard">
|
|
|
|
<fragment
|
|
android:id="@+id/nav_dashboard"
|
|
android:name="com.darkhal.archon.ui.DashboardFragment"
|
|
android:label="@string/nav_dashboard" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_messaging"
|
|
android:name="com.darkhal.archon.ui.MessagingFragment"
|
|
android:label="@string/nav_messaging" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_links"
|
|
android:name="com.darkhal.archon.ui.LinksFragment"
|
|
android:label="@string/nav_links" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_modules"
|
|
android:name="com.darkhal.archon.ui.ModulesFragment"
|
|
android:label="@string/nav_modules" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_setup"
|
|
android:name="com.darkhal.archon.ui.SetupFragment"
|
|
android:label="@string/nav_setup" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_settings"
|
|
android:name="com.darkhal.archon.ui.SettingsFragment"
|
|
android:label="@string/nav_settings" />
|
|
|
|
</navigation>
|