Designsecurityarchitectureview

Security Architecture View

Overlay public entry points, identities, authorization, trust boundaries, encrypted links, sensitive stores, privileged services and audit sinks on the ordinary system diagram.

▶ Run the labFollow the failure

Frame the problem

Security starts with a concrete asset, attacker capability and trust crossing.

Asset
A reviewable map of where security decisions and high-value data actually live.
Attacker & capability
Any caller or compromised component whose path is hidden by a functional-only diagram.
Trust boundary
Functional architecture → explicit security architecture
AssetThreatAttack SurfaceTrust BoundaryVulnerabilityExploit PathImpactMitigationDefense in DepthResidual Risk

Why the system fails

The diagram shows components but omits exposure, identities, data classification and enforcement, so reviewers cannot see a missing control or oversized blast radius.

The important question is not “what is Security Architecture View?” but “which assumption let untrusted data or an over-scoped identity cross functional architecture → explicit security architecture?” Trace the decision at the boundary, then constrain what can happen after the first control fails.

Design the control in layers

Start with the control closest to the interpretation or privilege boundary: Make exposure, trust, identity and privilege visible on every architecture Then add a control that reduces blast radius and telemetry that proves the decision was enforced.

The resulting design is not labelled secure. Record the identified controls, the known failure paths, the remaining exposure, and the evidence you would need during an incident.

PreventDetectRecover
Make exposure, trust, identity and privilege visible on every architecture · Name the enforcement point on each privileged flow · Record sensitive stores, secrets and audit evidenceReview overlays for public-to-sensitive paths with no guard or telemetryContain the affected identity or component, scope impact from audit evidence, and preserve a regression test.

Key points

  • Asset: A reviewable map of where security decisions and high-value data actually live.
  • Boundary: Functional architecture → explicit security architecture
  • Primary control: Make exposure, trust, identity and privilege visible on every architecture
  • Detection signal: Review overlays for public-to-sensitive paths with no guard or telemetry
  • Always ask what limits damage when the primary control fails.

Secure This Architecture

Change the system and observe which assumption moves.

Secure This Architecture
Add controls, then read what is still reachable. There is no score and no “secure” verdict.
Internet
Untrusted
plaintext
API
no identity check
unvalidated
Backend
static credentials
open route
Database
broad role
Click a control to add it to the architecture
Each one changes the threat verdicts below. Read the cost line before you add it.
0 of 16 added
Transport
Identity
Authorization
Input
Abuse
Blast radius
Network
Secrets
Detection
Threats against this architecture12 open · 0 contained · 0 prevented

A legitimate, authenticated user changes a resource id in the URL.

If it works: Cross-tenant disclosure through traffic that looks entirely normal.

Residual: Sharing, delegation and support tooling bypass ownership by design.

Prevented by Resource-scoped authorization · contained by Row-level tenant policy · seen by Audit log or Anomaly alerting

Identified controls
  • • None yet.
Open paths
  • • Credential read in transit
  • • Anonymous caller reaches a privileged operation
  • • Credential stuffing
  • • Customer reads another customer’s record
  • • Input interpreted as SQL
  • • Stolen session replayed
  • • Database reachable beyond the backend
  • • Database credential leaks
  • • Compromised backend exfiltrates data
  • • One request exhausts the database
  • • Unexpected shape reaches business logic
  • • No record of a privileged action
Residual risk
  • Add a control to see what survives it.
Unknowns
  • • Whether each control is actually applied on every endpoint, or only on the ones that were reviewed.
  • • What the admin, support and reporting paths do — they usually bypass ownership checks by design.
  • • Where copies of this data already exist: replicas, backups, exports, search indexes, logs, analytics.
  • • Whether revocation and restore have ever been exercised, rather than merely implemented.
Reading this
Most paths to the database are unobstructed: one application defect reaches the asset directly. Start with the controls that prevent, not the ones that report.

Follow the attack

Safe conceptual simulation: capability → missing control → crossed boundary → asset impact.

  1. 1
    Attacker starts with: Any caller or compromised component whose path is hidden by a functional-only diagram.
  2. 2
    The diagram shows components but omits exposure, identities, data classification and enforcement, so reviewers cannot see a missing control or oversized blast radius.
  3. 3
    The weak or missing boundary control is crossed: Functional architecture → explicit security architecture
  4. 4
    Impact: Security assumptions remain implicit and alternate attack paths survive design review.
Blast radius
  • Security assumptions remain implicit and alternate attack paths survive design review.

Defend, detect, recover

One prevention is a single point of security failure. Layer it and make failure observable.

Prevent
  • • Make exposure, trust, identity and privilege visible on every architecture
  • • Name the enforcement point on each privileged flow
  • • Record sensitive stores, secrets and audit evidence
Detect
  • • Review overlays for public-to-sensitive paths with no guard or telemetry
Respond & recover
  • • Contain the affected identity or component.
  • • Scope access from audit evidence.
  • • Fix the boundary and add a regression test.
Residual risk
  • • Misconfiguration and new access paths can bypass the intended control.
  • • A privileged insider or compromised control plane may still reach the asset.

Misconceptions

Claim
“A single make exposure, trust, identity and privilege visible on every architecture control makes this safe.”
Reality
One control changes risk; it does not erase it. Design prevention, detection, recovery, and blast-radius limits together.