Trust Center
Privacy by Design
Our privacy guarantees are not just promises—they are technically enforced by our Zero-Knowledge architecture.
Back to Home
Privacy Proof Status
Live telemetry from your browser session demonstrating that zero user data leaves this device.
Zero Data Collection Verified
Session Hash: R4BNZ7O1 • Loading...
Network Activity
Total Requests0
External Analytics0
Data Uploaded0 KB
Ad Trackers0
Storage & Privacy
Tracking Cookies0
Local Storage Items0
Session RecordingDisabled
FingerprintingBlocked
Privacy Proof Certificate
RexoGate - Zero Data Collection Verification
Verification Details
Timestamp:
App Version Hash: nqgkrz9ju9h
Network Activity
Total Requests: 0
External Requests: 0
Upload Bytes: 0
Download Bytes: 0
Privacy Metrics
WebSocket Connections: 0
Cookies: 0
Third-Party Scripts: 0
Local Storage
Items: 0
Total Size: 0.00 KB
This certificate verifies that RexoGate processes all data locally in your browser without external uploads or tracking.
Verified Architecture Claims
All URL verification happens locally via WASM/Client-side logic
No metadata is uploaded to external servers
No tracking scripts or analytics collect behavior
Backend is isolated to Payment Processing (Stripe) only
1
Zero-Knowledge Link Processing
Our core verification engine accepts your input, processes it in memory, and discards it. No API calls transmit the link data.
src/lib/linkService.ts Verified Client-Side Only
// Core Verification Logic
export const verifyLink = async (url: string) => {
// 1. Local Regex Pattern Matching
const patterns = await loadLocalPatterns();
// 2. Browser-Native Security Check
// (Uses browser's own blocking list, no data leaves)
const safety = performLocalHeuristic(url);
// 3. Result returned directly to UI
return {
score: safety.score, // 0-100
isSafe: safety.isSafe
};
// Note: NO fetch() calls to analytic servers here
}2
Analytics-Free Codebase
We track nothing. Most sites load 5MB of trackers. We load 0 bytes. Our 'analytics' function is literally a no-op in production.
src/utils/analytics.ts Verified Client-Side Only
export const trackEvent = (event: string, data: any) => {
if (process.env.NODE_ENV === 'development') {
console.log('[DEV LOG]', event, data);
}
// In Production, this function is tree-shaken
// or strictly empty.
// Zero requests are dispatched.
return;
}