Skip to main content
Security & Architecture

Threat model

Heads up — This page lists what we design for (DB leak, insider, small n , access codes) and honest limits . For the behavior spec, see Zero-knowledge…

2 MIN READUPDATED JUL 28, 2026
On this page

InviziPoll is designed for respondent anonymity and confidentiality by design: the platform cannot read plaintext answers or access admin key material without secrets that stay on the client or with trusted admins.

What the architecture protects against

ThreatHow we address it
Database breachResponses are stored as encrypted blobs with no usable plaintext for the service.
Insider access to sensitive dataDatabase permissions restrict routine operational access so that response ciphertext, key material, and data that could re-link access codes to submissions are not available through standard tooling.
Small-group deanonymizationPoll results stay locked until at least 3 responses; cohort breakdowns require at least 5 matching responses before showing splits. Below threshold, the product stays locked and does not expose exact counts.
Linking access codes to responsesAccess codes are verified without retaining a reversible link to submissions. Storage is designed so the service cannot associate a consumed code with a particular response.
Ordering inferenceAuthorized decrypt flows receive ciphertext blobs in random order so list position does not imply submission sequence.

What we do not claim to prevent

LimitationNotes
Compromised admin deviceMalware or physical access to an unlocked admin session can see what that admin sees after decryption.
Weak backup passwordsStrong key derivation slows guessing but cannot fix low-entropy passwords.
Social engineeringUsers may be tricked into sharing backup files, passwords, or recovery secrets.
Server-assisted checks (non-content)Some flows use the server for eligibility or delivery checks in ways that do not require decrypting poll answers. This is separate from the client-held keys that protect response ciphertext end-to-end.
AvailabilityDDoS and outages are separate from confidentiality guarantees.