ClinicOps holds medical records, so we treat every patient record as sensitive personal data. This page describes the security controls we have actually built and deployed today — stated factually, without certification claims we don't hold and without describing planned work as already live. Published in support of Rule 8 of the IT (SPDI) Rules, 2011 (reasonable security practices and procedures).
Prescription content and selected clinical-encounter fields get field-level application encryption (AES-256-GCM) wherever a deployment's encryption key is configured.
Patient-uploaded reports, scans and photos are held on access-controlled server storage, scoped to the owning clinic. They are not individually encrypted by the application today.
All traffic between your browser or WhatsApp and our servers travels over TLS (HTTPS). There is no unencrypted access path.
Every clinic is a separate tenant, enforced with PostgreSQL row-level security at the database layer. A startup check refuses to run the application at all if the database role it connects as could bypass that isolation.
Sensitive reads, writes and data exports are written to an append-only audit trail — who did what, when and from where. The application's database role cannot alter or delete audit rows, even with direct SQL access.
Staff sign in to opaque, individually revocable sessions (12-hour lifetime) carried in an HttpOnly cookie — not a long-lived bearer token. Logins are rate-limited with lockout, and staff can enable TOTP two-factor authentication.
Every action is checked against the acting user's specific capabilities and record scope, not just their role. A supervised "break glass" path for emergency access is itself logged to the audit trail.
Once a prescription or clinical encounter is finalized, that version is immutable and carries a SHA-256 integrity hash, so any tampering with the stored record can be detected.
Application and database run in India, with a startup check that enforces this data residency. Encrypted database backups run daily and are also retained in India.
If you believe you've found a security issue in ClinicOps, email support@logicues.com with details. We acknowledge reports promptly, won't take action against good-faith research, and will credit you if you'd like once the issue is fixed.