Dennis Academy crestDENNIS ACADEMY

1.0 Security Operations

System and Network Architecture Concepts in Security Operations

Sign in to track progress

Simple explanation

Before you can analyze security data, you need to understand the environment producing it. This lesson covers the architectural building blocks a SOC analyst has to understand — logs, time sync, OS concepts, infrastructure models, and where sensitive data actually lives.

Technical explanation

  • Log ingestion — collecting logs from every relevant source into a central place (typically a SIEM) so they can be correlated together instead of reviewed in isolation.
  • Time synchronization (NTP) — every device's clock must agree, via Network Time Protocol, or correlating events across systems by timestamp becomes unreliable — a two-second clock drift can make an attack timeline look wrong.
  • OS concepts — Windows, Linux, and macOS each have different log formats, process models, and normal-behavior baselines; an analyst needs enough fluency in each to tell normal from anomalous.
  • Infrastructure concepts: serverless (no persistent server to monitor, but ephemeral execution changes what "normal" logging looks like), virtualization (multiple VMs on shared hardware — a compromise can potentially cross VM boundaries), containerization (lightweight, share the host kernel — different attack surface than full VMs).
  • Network architecture: on-premises, cloud, and hybrid each shift where data and control actually live, and network segmentation limits how far a compromise can spread once it starts.
  • Identity and access management — understanding how authentication/authorization works in the environment is prerequisite to spotting when it's being abused.
  • Encryption — knowing what's encrypted (and what isn't) changes what visibility monitoring tools actually have into traffic content.
  • Sensitive data protection — knowing where regulated data types live (PII, PCI — payment card data, PHI — protected health information) focuses monitoring priority on what actually matters most if compromised.

Synonyms / related terms

| Term | Means | |---|---| | NTP | Network Time Protocol | | PII / PCI / PHI | Personally Identifiable Information / Payment Card Industry data / Protected Health Information | | SIEM | Security Information and Event Management |

Concept Check

"An analyst investigating a suspected breach notices two servers' logs show the same event happening three minutes apart, but other evidence suggests they should be simultaneous." This isn't necessarily two separate events — the first thing to check is NTP/time synchronization drift between the two systems before concluding anything about attack sequencing.

Interview-style Q&A

Q: Why does understanding infrastructure architecture matter for a SOC analyst who isn't a systems engineer? A: "Because what counts as 'normal' looks completely different in a serverless environment than a traditional on-prem data center. Without understanding the architecture, an analyst can't tell the difference between expected ephemeral behavior and a real anomaly — you'd either drown in false positives or miss real threats that don't fit an outdated mental model."

Memory trick

"Log it, Time it, Know the OS, Know the Infra, Know the Data" — the five things to understand about an environment before you can meaningfully analyze what's happening inside it.