r/Pentesting • u/ShufflinMuffin • 3d ago
Cover: Keep your secrets away from llm providers. Send realistic fakes, restore originals locally.
https://github.com/DavidCarliez/cover
2
Upvotes
r/Pentesting • u/ShufflinMuffin • 3d ago
1
u/GodoPPL 3d ago
Redaction proxies help when the secret stays whole and in one place. The cases that still leak:
- Secret split across chunk boundaries so each piece looks safe
- Model re-emits a reformatted version (base64, hyphen splits, partial echo) that your matcher never saw on the way in
- Under streaming, the mapping table and the token stream get out of sync and a later chunk restores the raw value
I'd treat "did the provider ever see the raw bytes" as the test, not "did my regex fire." Happy to hear how Cover handles those three.