Sovereign Phone Shield

WAB now extends from browser protection into communication protection: behavioral IDS, local connection risk analysis, community threat intelligence, and personal vault cryptography. This page is fully connected to live endpoints under /api/sovereign/shield.

Live Shield Telemetry

Real-time global stats from the sovereign shield service.

[]

Connection Risk Analyzer

Simulate app traffic and run behavioral analysis to decide: allow, warn, or block.

{}

Personal Cloud Vault (AES-256-GCM)

Encrypt sensitive text locally via API cryptography endpoint, then decrypt with passphrase.

{}

Community Threat Intelligence

Submit suspicious host fingerprints. After multiple independent reports, indicators are promoted automatically.

{}

Android/iOS Local Tunnel Integration

Use these production endpoints from your mobile VPN service / Network Extension: register device, heartbeat, then stream packet metadata in batches.

POST /api/sovereign/shield/devices/register
{
  "deviceFingerprint": "android-uuid-001",
  "platform": "android",
  "appVersion": "1.0.0",
  "osVersion": "14",
  "model": "Pixel 8"
}

POST /api/sovereign/shield/devices/heartbeat
{
  "deviceFingerprint": "android-uuid-001",
  "platform": "android",
  "batteryLevel": 77,
  "networkType": "wifi"
}

POST /api/sovereign/shield/devices/telemetry
{
  "deviceFingerprint": "android-uuid-001",
  "connections": [
    {
      "app": "whatsapp",
      "destination": "example-host.com",
      "bytesOut": 220000,
      "bytesIn": 130000,
      "background": true,
      "micAccess": false,
      "cameraAccess": false,
      "contactsAccess": false
    }
  ]
}
Devices API Intel Feed API