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>
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.darkhal.archon"
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
applicationId = "com.darkhal.archon"
|
|
minSdk = 26
|
|
targetSdk = 36
|
|
versionCode = 2
|
|
versionName = "2.0.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
|
|
packaging {
|
|
jniLibs {
|
|
useLegacyPackaging = false
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.core:core-ktx:1.12.0")
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
|
implementation("com.google.android.material:material:1.11.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
implementation("androidx.navigation:navigation-fragment-ktx:2.7.7")
|
|
implementation("androidx.navigation:navigation-ui-ktx:2.7.7")
|
|
implementation("androidx.preference:preference-ktx:1.2.1")
|
|
implementation("androidx.webkit:webkit:1.10.0")
|
|
|
|
// Local ADB client (wireless debugging pairing + shell)
|
|
implementation("com.github.MuntashirAkon:libadb-android:3.1.1")
|
|
implementation("org.conscrypt:conscrypt-android:2.5.3")
|
|
|
|
// Shizuku for elevated access (SMS/RCS operations)
|
|
implementation("dev.rikka.shizuku:api:13.1.5")
|
|
implementation("dev.rikka.shizuku:provider:13.1.5")
|
|
}
|