Table of Contents

Click Here to Return To the CompTIA SecurityX Course Page

Security Operations is 22% of the CompTIA SecurityX (CAS-005) exam. This module covers how you detect, hunt, and respond to threats with data and intelligence. SecurityX expects you to analyze evidence and recommend action, not just name a tool.

Operations turns telemetry into decisions. You parse logs into signal, hunt for what alerts missed, share intelligence in standard formats, and reconstruct what happened after a breach. Strong analysis here shortens the time an attacker stays in your network.

Monitoring and Response

You analyze data to detect threats fast.

  • SIEM event parsing normalizes logs from many sources into a common format.
  • Correlation ties separate events into one story, like a failed login followed by a successful one from a new country.
  • Audit log reduction filters noise so analysts see what matters.
  • Behavior baselines define normal so anomalies stand out.
# Surface the top source IPs hitting a web server log during triage
awk '{print $1}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head

Vulnerabilities and Attacks

You analyze attacks and recommend solutions. Know each by its mechanism.

AttackMechanism
InjectionUntrusted input runs as code (SQL, command)
XSSMalicious script runs in a victim’s browser
Race conditionTiming flaw between check and use (TOCTOU)
CSRFForces a logged-in user to send an unwanted request
SSRFTricks a server into requesting attacker-chosen URLs
DeserializationCrafted serialized data executes code
Weak ciphersOutdated encryption an attacker can break

Applying Mitigations

You fix the root cause, not just the symptom.

  • Input validation rejects malformed input that drives injection.
  • Output encoding neutralizes script before it reaches a browser, stopping XSS.
  • Safe functions replace dangerous calls with hardened equivalents.
  • Least privilege limits what a compromised account can reach.
  • Secrets management keeps keys and passwords out of code, using a vault.
  • Defense in depth layers controls so one failure does not breach the system.

Threat Hunting and Threat Intelligence

You hunt proactively rather than waiting for alerts. You combine internal and external sources.

Source typeExamples
InternalAdversary emulation, hypothesis-based searches, honeypots
ExternalOSINT, dark web monitoring, ISACs

A hypothesis-based hunt starts with a theory, such as “an attacker is using a scheduled task for persistence,” then searches the data to prove or disprove it. Honeypots lure attackers into decoys so you study their methods safely. For more on passive detection hardware, see the ESP32 Wi-Fi canary project .

Sharing Indicators of Compromise

You share IOCs in standard formats so defenders move at machine speed.

StandardRole
STIXStructured language to describe threat data
TAXIITransport protocol to exchange STIX
SigmaGeneric signature format for SIEM logs
YARAPattern matching to identify malware files
SnortNetwork intrusion detection rules

Incident Response and Forensics

You analyze artifacts to understand and contain an incident.

  • Malware analysis runs samples in a sandbox to observe behavior.
  • Reverse engineering disassembles code to understand its logic.
  • Volatile storage analysis captures RAM, network state, and running processes before they vanish.
  • Non-volatile storage analysis examines disks and logs for persistent artifacts.
  • Metadata analysis reads timestamps, authorship, and file history.

You preserve evidence with hashing and a documented chain of custody. Verify file integrity using the methods in how to get hashes of files on Linux .

Timeline Reconstruction and Root Cause Analysis

You build a timeline that orders every event so you see how the attacker entered, moved, and acted. You then perform root cause analysis to find the underlying failure, not just the symptom, so the same incident cannot recur. A fix that treats the symptom leaves the door open.

Next Steps

You have now covered all four SecurityX domains. Test your readiness, then review weak areas across Governance, Risk, and Compliance , Security Architecture , and Security Engineering . Return to the CompTIA SecurityX Course , explore more paths in Courses and Playbooks , and read tips for passing CompTIA exams .