A web tool for extracting JWT tokens and credentials from binary files. Upload .exe or .txt files, extract credentials in bulk, and download as a combined list.
Use the tool directly in your browser (no installation required): Launch Cache Extract
If you prefer to run the tool locally on your machine:
-
Install
pip install flask
-
Run
python app.py
-
Access
http://localhost:4444
- Upload: Drag-and-drop or click to select files
- Extract: Automatically parses binary data for JWT tokens
- Export: Download all credentials as
.txt - Manage: Copy or delete individual entries
- Reads file as binary
- Extracts ASCII strings (4+ chars)
- Detects JWT tokens (start with "ey", 50+ chars)
- Associates nearby usernames
- Stores in browser IndexedDB (no server upload)
- Bulk file processing
- Real-time progress updates
- Local browser storage (IndexedDB)
- Dark theme UI
- Export deduplicated credentials
├── app.py # Flask server
├── templates/index.html # Web UI + JS logic
└── README.md
- All data stored locally (not uploaded)
- Clearing browser cache deletes data
- Requires modern browser with IndexedDB support