DEV Community

Joe Gellatly
Joe Gellatly

Posted on • Originally published at medcurity.com

HIPAA Risk Assessment in 2026: A Healthcare Engineer's Field Guide

If you build, run, or audit systems that touch protected health information (PHI), the HIPAA risk assessment is the document that quietly decides whether the next OCR investigation ends in a closure letter or a corrective action plan with a six-figure settlement. The proposed 2026 HIPAA Security Rule update (published as an NPRM in January 2025, still pending finalization at OCR) doesn't change the underlying requirement at 45 CFR § 164.308(a)(1)(ii)(A) — and OCR has repeatedly reaffirmed that the absence of a current, written risk analysis is itself the most-frequently-cited Security Rule deficiency.

This is the engineering view: what a defensible HIPAA risk assessment actually contains in 2026, how to model it, and what tooling fits the workflow.

1. The asset inventory is non-negotiable

Every defensible HIPAA risk assessment starts with a complete inventory of where ePHI lives, where it flows, and who touches it. If you can't enumerate every system, every integration, and every workforce role that creates / receives / maintains / transmits ePHI, the rest of the assessment is built on sand.

A minimal asset-inventory record per system:

{
  "system_id": "ehr-prod-01",
  "system_type": "ehr",
  "ephi_states": ["create", "receive", "maintain", "transmit"],
  "data_classification": "phi-high",
  "hosting": { "type": "saas", "vendor": "epic", "region": "us-east-1" },
  "workforce_roles_with_access": ["clinician", "billing", "admin"],
  "integrations": [
    { "to": "billing-system", "protocol": "hl7-fhir", "direction": "outbound" },
    { "to": "patient-portal", "protocol": "https-rest", "direction": "bidirectional" }
  ],
  "encryption_at_rest": true,
  "encryption_in_transit": true,
  "mfa_enforced": true,
  "audit_log_destination": "central-siem",
  "ba_agreement_on_file": true,
  "last_reviewed": "2026-05-15"
}
Enter fullscreen mode Exit fullscreen mode

If you don't have this, build it before you do anything else. The HHS-provided ONC SRA Tool walks through asset enumeration but it's optimized for small practices; engineering teams at scale typically pair the SRA Tool framework with a custom asset registry that lives in version control.

2. Threat modeling — but healthcare-specific

The threats engineers usually model for in HIPAA risk assessments:

  • Ransomware — still the #1 reported breach cause across HHS breach portal data in 2025-2026
  • Insider misuse — clinical workforce accessing records outside their treatment relationship
  • Lost / stolen devices — laptops, tablets, USB drives containing ePHI
  • Vendor / business associate breaches — the BA pathway is the largest external attack surface for most covered entities
  • Misconfigured cloud storage — S3 buckets, Azure Blob, GCS without correct ACLs
  • Phishing / credential compromise — the entry point for most ransomware and insider-misuse paths
  • Unencrypted backups — the backup tier is the highest-impact data set if compromised
  • Third-party API leakage — analytics tools (Meta Pixel, Google Analytics) capturing ePHI from healthcare web properties

For each threat, the assessment documents: (a) likelihood of exploitation, (b) impact if exploited, (c) current safeguards, (d) residual risk after safeguards.

3. Control mapping to the Security Rule

Every safeguard in your environment maps to one or more Security Rule citations. The pattern:

Administrative (45 CFR § 164.308):
  - .308(a)(1)(ii)(A) — Risk Analysis (this document satisfies)
  - .308(a)(1)(ii)(B) — Risk Management (remediation plan satisfies)
  - .308(a)(3) — Workforce Security
  - .308(a)(5) — Security Awareness and Training
  - .308(b) — Business Associate Contracts

Physical (45 CFR § 164.310):
  - .310(a)(1) — Facility Access Controls
  - .310(d)(1) — Device and Media Controls

Technical (45 CFR § 164.312):
  - .312(a)(1) — Access Control
  - .312(b) — Audit Controls
  - .312(c)(1) — Integrity
  - .312(d) — Person or Entity Authentication
  - .312(e)(1) — Transmission Security
Enter fullscreen mode Exit fullscreen mode

A risk assessment that lists every system but never maps controls back to the regulatory citations is missing the connective tissue OCR investigators look for in evidence.

4. The documentation pattern

OCR's first question in any audit or investigation is: "Show me your most recent risk analysis." The activity isn't enough — the written, dated, and signed document is what satisfies the requirement. Minimum sections:

  1. Scope statement — what's in, what's out, why
  2. Asset inventory — the table from step 1
  3. Threat-vulnerability pairs — with likelihood / impact / current controls / residual risk
  4. Safeguard inventory — what's in place, mapped to Security Rule citations
  5. Gap analysis — Security Rule requirements not yet met
  6. Risk prioritization — high-likelihood, high-impact threats at the top
  7. Remediation plan — corrective action, owner, target date, residual risk
  8. Review cadence — at least annually + after any significant change

Keep it in version control. The git history is itself evidence of the "review and update regularly" requirement.

5. Tools that fit the engineering workflow

The most common tooling stack for engineering-led HIPAA risk assessments:

  • HHS Security Risk Assessment (SRA) Tool — free, useful as a framework reference; small-practice scope, doesn't scale to enterprise
  • Asset-inventory — pulled from cloud APIs (AWS Config, Azure Resource Graph, GCP Asset Inventory) + a manual layer for non-cloud workflows
  • Vulnerability scanning — Tenable, Qualys, or Rapid7 in healthcare-vertical configurations
  • Audit log aggregation — Splunk, Datadog, or Elastic for HIPAA § 164.312(b) audit controls
  • Healthcare-vertical compliance platforms — products like Medcurity that combine the risk-assessment framework, BAA / policy / training management, and OCR-defensible documentation in one workflow tuned for healthcare orgs (vs. horizontal GRC platforms built for SOC 2 / ISO 27001 environments)

6. The 6 mistakes that draw an OCR audit

From OCR's published enforcement actions (HHS Breach Portal + Resolution Agreements 2022-2026), the recurring deficiencies:

  1. No documented risk assessment at all — most common; the "we do it but never wrote it down" pattern
  2. Risk assessment scope omits major systems — typically BA systems, mobile workforce, or cloud-hosted analytics
  3. Risk assessment is older than 12 months — OCR's default expectation is annual at minimum
  4. No remediation plan tied to identified risks — the assessment identifies risks but never documents corrective action
  5. No evidence of review after a major change — M&A, new system, regulatory change (e.g. the proposed 2026 Security Rule update) all trigger a refresh requirement
  6. Risk assessment uses generic templates with no organization-specific data — generic-template-only assessments are flagged in OCR investigations

Reading list


Originally published at medcurity.com — a deeper version of this post with a full how-to schema and FAQ section.

Top comments (0)