App Store Label: Data Not Collected

Device-Level Protection.
Zero Data Collected.

Foxeo is privacy-first, offline-first self-management software designed to filter websites and block applications on-device with cryptographic integrity.

Architectural Pillars

Engineered for security, dignity, and absolute data privacy.

100% On-Device Privacy

Zero accounts, zero analytics SDKs, and zero behavioral telemetry. Your settings, counters, and blocklists remain strictly stored in local device vaults.

Detached Ed25519 Signatures

Blocklist updates are verified against pinned public keys using Ed25519 detached byte signatures before parsing begins, guaranteeing tamper-proof execution.

Intentional Cooling-Off Delays

Protection modification and removal requests are bound by hardware-backed 24โ€“48 hour delay vaults to outlast impulsive moments with dignity.

egress_allowlist.dart โ€” Architectural Network Bounds
// Foxeo Egress Bounds (SPEC-008 ยง6.4a)
// The app's complete network egress is strictly two hosts.
const String kRevenueCatHost = 'api.revenuecat.com';
const String kBlocklistCdnHost = 'cdn.foxeo.site';

Set<String> get egressAllowlist => <String>{
  kRevenueCatHost,
  kBlocklistCdnHost,
};

// Automated in-process interceptors assert zero unauthorized egress.