Privacy Verification
We claim your data never leaves your browser. Here is how you can verify it yourself.
The Architecture
What Does Grok Know? is a static Next.js application. After the initial page load, all processing happens entirely in your browser:
- File parsing runs in a Web Worker — a sandboxed browser thread with no network access by default
- Data storage uses IndexedDB — a browser-native database that stores data on your device only
- NLP analysis (topics, sentiment, behavioral profiling) runs in a second Web Worker — entirely client-side
- 3D visualization uses WebGL via Three.js — rendered by your GPU, no server involvement
How to Verify: Network Tab
The most straightforward way to verify that no data is sent to a server:
- Open your browser Developer Tools (press
F12orCtrl+Shift+I) - Go to the Network tab
- Clear the existing network log
- Now import your Grok JSON file into the app
- Watch the Network tab — you will see zero outgoing requests containing your chat data
What you will see: After the initial page load (HTML, JS, CSS assets), the only activity is local. The parsing and analysis happen in Web Workers which do not make network requests. You can even disconnect from the internet after the page loads and the app will continue to work perfectly.
How to Verify: Offline Mode
For absolute certainty:
- Load the app in your browser
- Disconnect from the internet (turn off WiFi or unplug ethernet)
- Import your Grok JSON file
- The app will parse, analyze, and visualize your data completely offline
If data were being sent to a server, the import would fail offline. The fact that everything works offline proves the processing is 100% local.
How to Verify: Application Storage
You can inspect exactly where your data is stored:
- Open Developer Tools → Application tab
- Expand IndexedDB in the sidebar
- You will see "GrokBrainDB" with tables for conversations and messages
- Click any table to browse data — all stored locally on your device
- Check Cookies — you will find none from this app
How to Verify: Source Code
The app is fully open source:
- View the source code on GitHub
- Search for
fetch,XMLHttpRequest, oraxios— none transmit user data
How to Delete Your Data
- Browser settings: Clear site data for this domain
- Developer Tools: Application → IndexedDB → right-click "GrokBrainDB" → Delete database
- In the app: Use "New Import" to replace existing data