SY0-701 · Security Architecture · Updated July 25, 2026
Host-Based Intrusion Prevention (HIPS): Blocking Threats on the Endpoint
A host-based intrusion prevention system (HIPS) is software installed on an individual endpoint that watches activity on that machine — process behavior, file access, registry changes, local network calls — and actively stops malicious actions as they happen. Where a host-based intrusion detection system (HIDS) can only raise an alert after observing something suspicious, a HIPS can kill the offending process, deny the file write, or block the connection in real time. When a requirement says “block it on the host, at the moment it happens,” HIPS is the answer.
What a HIPS actually monitors
Because it runs on the endpoint itself, a HIPS has visibility that no network device can match. It typically hooks into the operating system to intercept:
- File system operations — attempts to modify protected system files, overwrite binaries, or drop executables into startup locations.
- Process behavior — code injection into other processes, a word processor spawning a shell, unsigned drivers loading.
- Registry and configuration changes — persistence mechanisms such as autorun keys or service creation.
- Memory activity — buffer-overflow patterns and shellcode-like execution.
- Local network activity — the host’s own inbound and outbound connections, inspected after decryption, which means encrypted traffic that blinds a network sensor is fully visible here.
The defining feature is interception before completion. The HIPS sits in the path of the system call: when a suspicious process tries to write to a protected operating system file, the write is denied at that instant — the file is never touched. Alerting still happens, but as a byproduct of the block rather than the entire response.
HIDS vs HIPS: detection vs prevention on the host
The two share sensors, agents, and often a product line; the difference is authority to act.
| HIDS | HIPS | |
|---|---|---|
| Core action | Detects and alerts | Detects, then blocks or terminates |
| Timing | After or during the event, response is manual | At the moment of the event, response is automatic |
| Risk profile | Missed response window if nobody reacts | A false positive can break a legitimate application |
| Typical use | Logging, file integrity monitoring, compliance | Active protection of servers and workstations |
That third row deserves attention. Granting software the power to terminate processes means a bad rule can stop a legitimate process — the endpoint equivalent of an inline network device blocking good traffic. Mature deployments start new policies in alert-only mode, observe, and only then enable enforcement. The same trade-off appears on network devices; the reasoning in false positives and false negatives applies on the host as well.
HIPS vs network-based IPS
A network-based intrusion prevention system (NIPS) inspects traffic flowing through a chokepoint and protects many hosts at once — but it only sees packets. A HIPS protects one machine — but it sees everything that machine does.
- A NIPS cannot observe an attack that never crosses the wire: malware such as a keylogger launched from a universal serial bus (USB) drive, a local privilege escalation, or tampering with system files happens entirely on the host.
- A NIPS increasingly inspects ciphertext; the HIPS sees the plaintext after the host decrypts it.
- Conversely, a HIPS protects only where the agent is installed, consumes resources on every endpoint, and must be deployed and updated at fleet scale.
The two are complements, not competitors — defense in depth pairs a network layer (see IDS vs IPS) with a host layer, so an attack that slips past one control meets another.
HIPS, antivirus, and EDR: overlapping cousins
Three endpoint technologies get confused on the exam, and the distinctions are testable:
- Antivirus/anti-malware identifies known-bad files, primarily by signature-based detection and heuristics, and quarantines them. Its unit of analysis is the file.
- HIPS enforces rules about behavior — which actions processes are allowed to take against the system — and blocks violations regardless of whether the file involved is known malware. It can stop a never-before-seen threat because it judges the action, not the file’s identity.
- Endpoint detection and response (EDR) continuously records endpoint telemetry for hunting, investigation, and remediation, with heavy emphasis on visibility and analyst-driven response across the fleet. Modern EDR platforms absorb HIPS-style blocking as a feature, but on the exam, when the requirement is narrowly “automatically prevent a hostile action on a host,” the textbook answer remains HIPS.
Pick by requirement verb: quarantine a known-bad file → antivirus; stop a hostile action as it executes → HIPS; investigate and respond across endpoints with recorded telemetry → EDR.
How the SY0-701 exam tests this
- A requirement to actively stop a process from performing a dangerous action on a host — such as writing to a protected system file — the instant the behavior occurs. The word “block” plus host-level scope eliminates HIDS (alert-only) and network devices (wrong layer); the answer is HIPS.
- A comparison scenario where a team already receives host alerts but wants automated blocking instead of manual response — the upgrade path from HIDS to HIPS.
- A scenario involving a threat that never touches the network (removable media, local tampering), asking which control could have stopped it — host-based prevention, because network sensors were blind to it.
- A false-positive angle: after enabling a new HIPS policy, a business application crashes repeatedly — the cause is an enforcement rule terminating a legitimate process, and the fix is tuning or alert-only staging, not uninstalling endpoint protection.
The HIDS/HIPS/EDR distinctions blur fast without reinforcement — practice questions for SY0-701 that force the choice are the cure.
Quick reference
- HIPS = agent on the endpoint that detects and blocks malicious activity in real time; HIDS detects and alerts only.
- The action-vs-alert distinction is the exam’s favorite discriminator between the two.
- HIPS intercepts operations — file writes, process launches, registry edits — before they complete, so a denied action never takes effect.
- Host agents see what network devices cannot: local attacks, USB-borne malware, and decrypted application traffic.
- NIPS protects many hosts at a network chokepoint; HIPS protects one host in depth — deploy both for layered defense.
- Antivirus judges files; HIPS judges behavior; EDR records telemetry for detection, hunting, and response.
- Enforcement power cuts both ways: a misconfigured HIPS rule can break legitimate software, so stage policies in alert-only mode first.