ELI5: What are Security Layers?

Picture an onion with many layers. A bad guy has to peel through the fence, then the locked door, then the computer password, then the app password, and finally the scrambled data. Each layer is one more thing standing in their way.

Definition

Security layers represent the concentric zones of protection in a defense-in-depth architecture, arranged from the outermost perimeter to the most sensitive inner data layer. Each layer provides independent protection, so that an attacker who breaches one layer still faces additional defenses before reaching the protected asset. The classic model progresses from physical security through network, host, application, and data layers.

Key Details

  • Perimeter (outer): Physical security (fencing, bollards), network firewall, DMZ—first line of defense.
  • Network: Internal firewalls, VLANs, IDS/IPS, network access control (NAC)—controls traffic between zones.
  • Host: Endpoint security (antivirus, EDR), host-based firewalls, OS hardening, patch management.
  • Application: Application firewalls (WAF), secure coding practices, input validation, authentication and authorization controls.
  • Data (inner): Encryption at rest, database access controls, DLP, data classification—last line of defense.
  • Each layer is protected independently—compromise at one layer does not automatically mean compromise at the next.

Connections