SOVEREIGN
ANALYTICS
"Your data. Your infrastructure. No third party. Dattrack is the radical answer to the Schrems II problem and the end of data dependency."
— VisionGaia Technology
Architecture Paradigm
/// THE AEGIS FLOWAegis Crypto Core
Payload encryption via AES-256-GCM. IP anonymization via HMAC-SHA256 (Salted + Peppered). Your data exists in long‑term storage only as cryptographic noise.
O(1) Pagination
Deterministic performance. Thanks to keyset pagination (seek method), dashboard latency remains constant, whether you analyze 1,000 or 10,000,000 records.
Auto-Purge Lifecycle
Strict data sparing. Raw data is irrevocably deleted after 7 days. Keys rotate automatically every 30 days in the VGT Vault (isolated outside the web root).
The Market Conflict
| Solution | Schrems II | AES-GCM | Sovereign |
|---|---|---|---|
| Google Analytics | Illegal (USA) | ❌ | ❌ |
| Matomo Cloud | ⚠️ Restricted | ❌ | ❌ |
| VGT DATTRACK | ✅ COMPLIANT | ✅ | ✅ |
*Schrems II (EuGH C-311/18) makes the transfer of personal data to the USA effectively unlawful. Dattrack resolves this structurally.
Aegis Kernel Logic
aegis_crypto.php// IP Anonymisierung via HMAC-SHA256
$anon_ip = hash_hmac('sha256', $ip, $vgt_pepper . $daily_salt);
// AES-256-GCM Verschlüsselung
$ciphertext = openssl_encrypt($payload, 'aes-256-gcm', $vault_key, 0, $iv, $tag, $aad);
// Zero-Knowledge Persistence
$wpdb->insert($table, ['blob' => base64_encode($iv . $tag . $ciphertext)]);
Not even the administrator can view the raw data without the rotating master key from the isolated vault.
System Specifications
Dattrack is licensed under the GNU AGPLv3. Anyone who modifies this kernel or uses it in SaaS environments must disclose the source code of their infrastructure.
