index.md (3578B)
1 --- 2 label: WhatsApp Logger 3 icon: comment-discussion 4 order: 900 5 --- 6 7 # WhatsApp Logger (Self-Hosted) 8 9 A privacy-focused, self-hosted WhatsApp archiving tool. It captures messages — including deleted ones — via a linked device connection and stores them in your own Firebase Firestore database. 10 11 ## Upgrade notes (v4.2.x) 12 13 If you're updating from an older version, here's everything that changed across the v4.2.x line in one place: 14 15 - **v4.2.1 — Security fix.** Removed the public Firebase Web SDK config from the frontend. The frontend now only talks to your Render backend, never Firestore directly. Update your Firestore rules to deny all direct client access, as shown in [Firebase Setup](firebase-setup.md). 16 - **v4.2.2 — Real-time sync now covers every chat, not just the one you have open.** Previously, new messages only arrived for a chat you already had open — anything happening in other chats sat on the server until you clicked into them. Now a single sync connection streams updates for *all* chats at once, so incoming messages show up across every contact the moment they arrive, the way WhatsApp itself behaves when your phone comes back online. 17 - **v4.2.2 — Full resync with real progress.** `Settings` → refresh icon → `Hard Reset` now pulls your entire message history chat-by-chat instead of one giant download, so the progress bar reflects actual messages fetched instead of a rough guess. Use this if you ever open a chat that shows nothing locally even though the server has history for it — for example after clearing site data, or on a new device or browser. 18 - **UI refresh.** Reworked to three selectable themes — Catppuccin Latte (light), Catppuccin Mocha (dark), and a true-black AMOLED theme — replacing the old dark-mode toggle and the multiple chat-background picker. Find it under `Settings` → `Appearance` → `Theme`. 19 20 !!!success Is this safe to use? 21 Yes. WhatsApp bans accounts for *sending* spam or unauthorized automated messages — this tool is a **100% passive, read-only listener**. It connects using the official Multi-Device WebSocket protocol, the same way linking a second browser to WhatsApp Web works. Since it doesn't interact with anyone, there's no risk of being reported. 22 !!! 23 24 ## Features 25 26 - **Anti-Delete** — messages are logged instantly, so they're preserved even if the sender deletes them 27 - **Privacy first** — you host the backend and database; no third-party servers touch your data 28 - **Secure access** — the frontend is password-protected against your own backend 29 - **Search & filter** — search by content or filter by date 30 - **Export** — download chat logs as `.txt` files 31 - **Offline ready** — IndexedDB caching lets you read logs without an internet connection 32 33 ## Recommended setup 34 35 - Install the web app as a **PWA** after publishing it, for better security and a native feel 36 - Enable **PIN or biometric authentication** inside the web app (Settings) 37 38 ## Get started 39 40 - [Prerequisites & Architecture](prerequisites.md) 41 - [Step 1 — Firebase Setup](firebase-setup.md) 42 - [Step 2 — Deploy the Backend](deploy-backend.md) 43 - [Step 3 — Connect WhatsApp](connect-whatsapp.md) 44 - [Step 4 — Setup the Frontend](setup-frontend.md) 45 - [Step 5 — Usage](usage.md) 46 - [Step 6 — Keep it Alive](keep-alive.md) 47 - [Troubleshooting](troubleshooting.md) 48 - [Frequently Asked Questions](faqs.md) 49 50 ## Disclaimer 51 52 This tool is for personal archiving purposes. Using it to log conversations without consent may violate privacy laws in your jurisdiction. The author is not responsible for misuse.