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.
Real-time global stats from the sovereign shield service.
[]
Simulate app traffic and run behavioral analysis to decide: allow, warn, or block.
{}
Encrypt sensitive text locally via API cryptography endpoint, then decrypt with passphrase.
{}
Submit suspicious host fingerprints. After multiple independent reports, indicators are promoted automatically.
{}
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
}
]
}