-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Gautam Kumar edited this page Jan 8, 2026
·
2 revisions
SafePaste is a client-side security layer designed to prevent Data Exfiltration to LLMs. This wiki contains technical details on our detection engine, privacy architecture, and contribution guidelines.
SafePaste operates on a "Zero-Trust" model regarding the clipboard. Unlike standard extensions that monitor every keystroke, SafePaste only activates upon a specific user intent (Ctrl+Alt+V).
- Trigger: User hits the shortcut.
-
Capture: The extension reads the system clipboard via
clipboardRead. -
Analysis: The
piiDetector.tsengine runs 25+ regex suites locally. - Intervention: The "Ghost Overlay" renders a React-based UI over the AI's text area.
- Injection: Upon selection, the masked or filtered text is programmatically injected into the DOM.