Why this matters
Controls on data exfiltration are expected for SOC 2 confidentiality.
All bulk exports of PII require approval, step-up MFA, rate limits, and watermarking of files with requestor and timestamp; record export_id in the audit log.
Controls on data exfiltration are expected for SOC 2 confidentiality.
Side-by-side examples engineers can pattern-match during review.
GET /export/users.csv # no auth, no loggingPOST /v1/exports/users # approval + MFA; file includes footer: 'Requested by u_123 @ 2025-08-28'log_audit({ action:"export.create", export_id })download("users.csv")From the same buckets as this rule.
Public services must require TLSv1.2 or higher and set HSTS (max-age ≥ 15552000, includeSubDomains). Reject plaintext HTTP and weak ciphers; cookies must be Secure and HttpOnly with SameSite set.