╔═══════════════════════════════════════════════════════════════╗ ║ ║ ║ 📋 ملخص البروتوكول - IBO Ultimate ║ ║ ║ ╚═══════════════════════════════════════════════════════════════╝ 🌐 1. API Request ═══════════════════════════════════════════════════════════════ Endpoint: https://cp5.uk/RBDSEF8JCG/api/auth Method: GET/POST Response: JSON {"data": [array of 58 encrypted strings]} 🔓 2. Layer 1: AES-128-CBC Decryption ═══════════════════════════════════════════════════════════════ Function: com.andyhax.Crypt.aesDecrypt(encrypted, key, iv) Input: • encrypted: Base64 string (~200 chars) • key: "Al4mK7AwxtYS1yC7" (16 bytes) ✅ • iv: من أول 16 بايت من encrypted data Algorithm: AES/CBC/PKCS5Padding Output: Base64 string (172 chars) Status: ✅ 58/58 items decrypted (100% success) 🔒 3. Layer 2: RSA-1024 Tokens ═══════════════════════════════════════════════════════════════ Input: 172 chars Base64 → decode → 128 bytes Type: RSA-1024 encrypted tokens Size: Fixed 128 bytes (116 visible في JSON) Entropy: 35-38% (low variance) Status: 🔒 Requires server private key Purpose: Authentication/License tokens 🔑 المفاتيح المكتشفة ═══════════════════════════════════════════════════════════════ من libhax.so: Key 1: EsySxALGhVMgDldp Key 2: Al4mK7AwxtYS1yC7 ✅ (Active) من Frida Runtime: Key: zVhdXOltYkluLqYx ✅ (Active) IV: CzOHfCErMZxJYXdb Device Key: 229572 📊 الإحصائيات ═══════════════════════════════════════════════════════════════ API items: 58 Decryption success: 100% Total encrypted data: ~11,600 chars Total decrypted: ~9,976 chars (7,424 bytes) 🎯 الوضع الحالي ═══════════════════════════════════════════════════════════════ ✅ Layer 1 (AES): مفكوك 100% ✅ API Protocol: مفهوم بالكامل ✅ Keys/IVs: مكتشفة ومستخرجة 🔒 Layer 2 (RSA): يحتاج Frida لمراقبة الاستخدام 🔬 الخطوة التالية مع Frida ═══════════════════════════════════════════════════════════════ 1. Hook rsaDecrypt() لمعرفة Output 2. تتبع استخدام الـ tokens بعد فك RSA 3. مراقبة البيانات الأصلية قبل التشفير 4. تحليل API endpoints الأخرى 💡 الأمر للبدء ═══════════════════════════════════════════════════════════════ frida -U -f com.flextv.livestore -l frida_simple.js --no-pause ═══════════════════════════════════════════════════════════════