Instiq
Chapter 1 · Security Concepts·v1.0.0·Updated 7/20/2026·~16 min

What's changed: Initial version

1.2Comparing security deployments

Key points

Covers network, endpoint, and application security deployments, agent-based vs. agentless, legacy AV vs. NGAV, the division of roles among SIEM, SOAR, and log management, plus visibility differences in container/virtualization and cloud environments, framed as the judgment of "which deployment fills this visibility gap."

SOC visibility is decided by "where you placed the sensors." Watching only the network leaves host-internal behavior invisible; without an agent you cannot follow the contents of encrypted traffic. This section organizes the placement of deployments—network, endpoint, and application—along with agent presence, the difference between legacy AV and next-generation controls, and the roles of SIEM (collect and correlate logs) and SOAR (automate response), as the judgment of "which deployment fills this visibility gap."

1.2.1Placement and agents

  • Network-based (NGFW, IPS, NetFlow, proxy, etc.) inspects traffic on the path. It monitors a wide area at once without installing software on hosts, but its weakness is that end-to-end encrypted traffic contents are invisible unless decrypted.
  • Endpoint-based (HIDS/EDR, host firewall, anti-malware) installs an agent on the host to observe internal behavior—process creation, file operations, registry changes. It can capture pre-encryption/post-decryption data and OS events, but incurs deployment/maintenance cost across every device.
  • Agentless collects state via API integration or from the network side without a resident agent on the device. It is lightweight to deploy and suits BYOD and cloud, but its detail is inferior to agent-based. Conversely, agent-based yields deep telemetry at the cost of device overhead and operations—choose along this visibility/overhead trade-off.

1.2.2Legacy AV and next-generation

  • Legacy AV (antivirus) centers on matching signatures (known patterns) of known malware and is weak against unknown/variant or fileless attacks. By contrast, NGAV/EDR combines behavioral detection, machine learning, and endpoint recording and response to catch attacks not in a signature via their behavior.
  • Application-based (WAF, RASP, app logs) inspects app-specific attacks like SQLi and XSS at the web app's input/output layer. It is the layer for catching attacks against application logic that are hard to see from network- or endpoint-based controls.

1.2.3SIEM, SOAR, log management, and new environments

  • Log management aggregates, stores, and searches logs from devices (retention and search are its purpose). SIEM adds correlation and alerting on top, cross-referencing events from multiple sources to surface threats. SOAR further handles automating response (playbook execution, containment). So the split is collect -> correlate and notice -> act automatically.
  • Container/virtualization environments are ephemeral—created and destroyed quickly—so traditional per-host monitoring cannot keep up; container-aware sensors and orchestrator integration are needed. In the cloud, you cannot touch the hardware, so visibility comes mainly from the provider's APIs/audit logs (e.g., cloud audit trails), and you must clarify which layer your organization must watch under the shared-responsibility model.
Exam point

Most-tested role splits: network-based = broad on the path but blind to encrypted contents / endpoint (agent) = sees internal behavior but has deployment overhead / agentless = light but less detailed, legacy AV = signatures / NGAV, EDR = behavioral detection, and log management = aggregate & store / SIEM = correlate & alert / SOAR = automate response. Solve by asking which deployment to add for a given visibility gap.

Your SOC monitors with only a network-based NGFW and NetFlow. One day NetFlow shows a device periodically talking to an unknown external domain over TLS (encrypted), but the contents are encrypted and you cannot tell what is being sent. Jumping to "if the network cannot see through encryption, just decrypt everything at the boundary (SSL inspection)" is not always optimal given privacy, performance, and certificate operations. The sounder judgment is to identify the nature of the visibility gap. What you want now is "which process inside that device is emitting this traffic," which a path-based network control fundamentally struggles to see; deploying an endpoint-based control (EDR agent) captures the process, command line, and write targets before encryption. If the device is BYOD and cannot host a resident agent, you switch to alternatives: accept limited agentless visibility via API, or evaluate the destination reputation from network-side DNS/proxy logs. In the SIEM you correlate NetFlow, DNS, and EDR; once "periodic traffic to an unknown domain + a newly spawned suspicious process + registry auto-run" line up, suspicion of C2 (command and control) grows strong. As confidence rises, a SOAR playbook automatically isolates the device and blocks the domain. The lesson is a chain of deployment judgments: rather than blaming encryption and brute-forcing decryption, choose the deployment (network / endpoint / agent presence) to match the kind of visibility you need, unify it in SIEM, and act with SOAR.

DeploymentWhat it seesWeakness/costGood for
Network-basedTraffic on the path (broad)Blind to encrypted contentsBroad monitoring, flow visibility
Endpoint (agent)Process/file/OS-internal behaviorDeploy/maintain across all devicesPre-encryption data, deep telemetry
AgentlessState via API/networkLess detail availableBYOD, cloud, lightweight rollout
SIEM / SOARCross-source correlation / auto responseTuning and playbook upkeepCorrelation detection and response automation
Warning

Trap: "Network-based monitoring alone can grasp host-internal behavior" is wrong—a path-based network control fundamentally struggles to see encrypted contents or host-internal processes, so internal detail requires an endpoint-based control (agent). Also wrong: "installing a SIEM auto-responds to threats"—a SIEM goes only as far as correlation and alerting, while automating response like containment is the role of SOAR.

Network vs. endpoint deployment, agent presence, and SIEM/SOAR roles.
Which deployment fills the visibility gap

1.2.4Section summary

  • Choose deployment by the visibility gap: network-based is broad but blind to encrypted contents, while endpoint-based (agent) sees internal behavior at deployment cost
  • Legacy AV matches signatures, NGAV/EDR detects behavior; app-specific attacks are caught by app-based controls (WAF, etc.)
  • The staged split log management (aggregate) -> SIEM (correlate/alert) -> SOAR (automate response); containers are ephemeral and cloud visibility comes from APIs/audit logs

Sign in to track progress — Log in.

Quick check

(just a quick review)

Q1. NetFlow detects a device periodically talking to an unknown external domain over TLS, but it is encrypted and you cannot tell "which process inside the device is communicating." Which deployment most directly fills this visibility gap?

Q2. A novel fileless attack not in known signatures parasitizes a legitimate process and behaves maliciously in memory. Legacy AV failed to detect it. Which mechanism is most likely to detect this threat?

Q3. A SOC can now aggregate, store, and search logs from multiple devices in one place. Next it wants to "cross-reference events from multiple sources to surface threats, and once confidence rises, automatically execute containment." Which combination best satisfies this?

Check your understandingPractice questions for Chapter 1: Security Concepts