A complete, self-paced prep course for Cisco's cybersecurity CCNA — the Cisco Certified CyberOps Associate credential (exam 200-201 CBROPS v1.1). This is the industry-recognized associate-level cert for Tier 1/2 SOC analysts. Includes 6 video lectures covering the exam orientation plus all 5 official domains, 6 class exercises (60 questions), 5 full-length practice exams, 3-page printable notes per lecture, official references, Pearson VUE registration walkthrough, and personalized improvement plans.
The Cisco Certified CyberOps Associate certification (exam code 200-201 CBROPS) is Cisco's associate-level cybersecurity credential — the CCNA of the security-operations world. It validates the skills required to work as a Tier 1 or Tier 2 analyst in a modern Security Operations Center (SOC): monitoring, triaging alerts, analyzing packet captures, correlating logs, and following documented incident-response playbooks. The current exam is CBROPS 200-201 v1.1, which Cisco refreshed with expanded cloud, endpoint-telemetry, and threat-hunting content. There are NO formal prerequisites, though 1 year of IT/networking experience and CCNA-level networking knowledge are strongly recommended.
The CBROPS 200-201 v1.1 blueprint is organized into five domains: (1) Security Concepts — 20%, (2) Security Monitoring — 25%, (3) Host-Based Analysis — 20%, (4) Network Intrusion Analysis — 20%, and (5) Security Policies and Procedures — 15%. The exam runs 120 minutes with roughly 95–105 questions in mixed formats: multiple-choice (single and multiple answer), drag-and-drop, testlet, and simulation. Cisco does not publish a fixed passing score — the passing threshold is scaled per form (typically around 825/1000), and Cisco does not release per-domain scores. That means EVERY domain must be studied — a strong Security Monitoring score cannot rescue a weak Security Policies score.
Register at pearsonvue.com/cisco after creating a Cisco account and a Certiport/Pearson VUE profile with your legal name (must match your government photo ID exactly). The current exam fee is US $300 plus local taxes. You can take the exam at any Pearson VUE test center worldwide or online via OnVUE remote proctoring. Certification is valid for 3 years and can be renewed through Cisco's Continuing Education (CE) program by earning 30 CE credits, by passing any Associate-level exam again, or by earning any Professional-level Cisco exam (e.g., CyberOps Professional, CCNP Security). Fresh grads often stack the CyberOps Associate with Security+ to strengthen entry-level SOC applications.
Every SOC decision maps back to the CIA triad — Confidentiality (encryption, access control, MFA), Integrity (hashing, digital signatures, HMAC), and Availability (redundancy, load balancing, DDoS defenses). Extend it with AAA — Authentication (proving identity, often via RADIUS or TACACS+ on Cisco gear), Authorization (what actions are permitted), and Accounting (audit trail). Common threat actors: nation-state APTs (long dwell, custom tooling), organized crime (ransomware, banking trojans), insiders (malicious or negligent), hacktivists, and script kiddies. Cisco emphasizes the difference between a vulnerability (weakness), a threat (potential exploit), and a risk (probability × impact).
Defense-in-depth layers controls so no single failure is catastrophic: perimeter (firewall, IPS), network (segmentation, VLANs, ACLs), endpoint (EDR, HIPS, disk encryption), application (WAF, secure SDLC, input validation), and data (encryption, DLP, rights management). Cisco's SAFE architecture and the Zero Trust model (never trust, always verify) both build on this idea. Attack surface reduction — disabling unused services, closing unused ports, removing default accounts, applying least privilege — is the fastest way to lower risk.
Cryptography basics tested on CBROPS: symmetric ciphers (AES-128/256, 3DES) share one key and are fast — used for bulk data. Asymmetric ciphers (RSA, ECC, Diffie-Hellman) use public/private key pairs — used for key exchange and digital signatures. Hashing (SHA-256, SHA-3, and legacy MD5/SHA-1) is one-way. PKI uses X.509 certificates issued by Certificate Authorities (CAs), validated through CRLs or OCSP. TLS 1.2/1.3 relies on all three primitives: asymmetric for handshake, symmetric for bulk transfer, hashing for integrity. Analysts should recognize the difference between encryption (reversible with a key) and encoding (Base64, URL — reversible with no key, NOT security).
SOC monitoring depends on collecting the right telemetry from the right sources. Full packet capture (PCAP) via Wireshark, tcpdump, Zeek/Bro, or Moloch/Arkime gives complete visibility but is expensive to store. Session data / NetFlow (or IPFIX, sFlow) records who talked to whom, when, how long, and how much — the ideal 'always on' data source. Transaction data (proxy logs, DNS logs, HTTP logs) enriches investigations. Alert data comes from IDS/IPS (Snort, Suricata, Cisco Firepower), EDR, and SIEM correlation rules. Statistical baselining and behavioral analytics highlight anomalies. Log types: application logs, system logs (syslog on RFC 5424), firewall/NetFlow logs, proxy logs, DNS logs, and authentication logs (Windows Security Event IDs 4624 logon, 4625 failed logon, 4720 account created).
Encrypted traffic (TLS/HTTPS) blinds packet-based inspection. Options to regain visibility: (1) SSL/TLS decryption at a next-gen firewall or proxy (privacy and CPU cost); (2) endpoint-based inspection with EDR that sees before encryption; (3) Encrypted Traffic Analytics (ETA) — Cisco's ML-based approach that infers malicious behavior from TLS handshakes, packet lengths, and inter-arrival times WITHOUT decryption. Certificates carry rich signals — self-signed certs, mismatched SNI, uncommon issuers, and short-lived Let's Encrypt certs on newly registered domains all warrant investigation. HTTP/2 and QUIC (HTTP/3 over UDP 443) increasingly break legacy IDS signatures.
IDS vs IPS: an Intrusion Detection System monitors and alerts (out-of-band or SPAN/mirror port); an Intrusion Prevention System sits inline and can drop malicious traffic. Signature-based detection matches known patterns (Snort/Suricata rules); anomaly-based detection flags deviations from baseline; heuristic and ML-based detection score suspicious behavior. The SIEM (Splunk, QRadar, Elastic, Cisco XDR/Secure Cloud Analytics) aggregates all sources, runs correlation rules, and generates prioritized alerts. Tier-1 analysts triage alerts by validating source data, checking Indicators of Compromise (IoCs) against threat intel (STIX/TAXII, MITRE ATT&CK), and escalating verified incidents to Tier 2/3.
Endpoint telemetry drives modern detection. On Windows, key sources are the Security event log (auth events), System log (drivers/services), Application log (installed software), Sysmon (process creation, network connections, image loads, DNS), PowerShell script-block logs, and Windows Event Forwarding (WEF) to a central collector. Autoruns, Prefetch, Amcache, ShimCache, and USN Journal reveal persistence and execution artifacts. On Linux, look at /var/log/auth.log or /var/log/secure (SSH, sudo), /var/log/syslog, /var/log/messages, ~/.bash_history, systemd journals (journalctl), and auditd rules. Cross-platform: EDR agents (Cisco Secure Endpoint, CrowdStrike, SentinelOne, Microsoft Defender for Endpoint) unify telemetry, apply behavioral detections, and enable remote response.
Malware analysis on the associate exam is introductory but expected. Static analysis: examine a file WITHOUT executing it — compute hashes (MD5/SHA-1/SHA-256), check reputation (VirusTotal, Cisco Talos), inspect strings (`strings file.exe`), review PE headers, section entropy (packed files show high entropy), and imported functions. Dynamic analysis: execute the sample in an isolated sandbox (Cuckoo, ANY.RUN, Joe Sandbox, Cisco Secure Malware Analytics) with network capture, and observe process trees, registry writes, dropped files, and command-and-control (C2) beacons. Never detonate malware on the production network — use an isolated VLAN with fake DNS/HTTP responders.
Attribute techniques to MITRE ATT&CK tactics: Initial Access (T1566 phishing), Execution (T1059 command line interpreter), Persistence (T1547 boot autostart, T1053 scheduled task), Privilege Escalation, Defense Evasion (T1027 obfuscation), Credential Access (T1003 LSASS dump via Mimikatz), Discovery, Lateral Movement (T1021 SMB / RDP), Collection, Command & Control (T1071 web protocols), and Exfiltration. Living-off-the-land binaries (LOLBins) — powershell.exe, wmic.exe, certutil.exe, mshta.exe, rundll32.exe — evade traditional AV by using signed system tools. Detection: baseline normal parent-child process relationships (winword.exe should NOT spawn powershell.exe) and alert on deviations.
Wireshark is the industry standard packet analyzer and is tested repeatedly on CBROPS. Core skills: apply display filters (`ip.addr == 10.0.0.5`, `tcp.port == 443`, `http.request.method == POST`, `dns.qry.name contains "evil"`), follow TCP/UDP streams, export objects (HTTP, SMB, FTP), decode TLS with a session-key log, and read the Statistics menu (Conversations, Endpoints, Protocol Hierarchy, IO Graphs). Recognize common attacks by their fingerprints: TCP SYN flood (many SYN, no ACK), port scan (single source touching many ports), ARP spoofing (multiple MACs answering for one IP), DNS tunneling (long, high-entropy TXT queries), and beaconing (regular short C2 check-ins).
Know the protocol landscape: HTTP (port 80), HTTPS (443), DNS (53 UDP/TCP), SMTP (25/587), IMAP (143/993), POP3 (110/995), FTP (20 data / 21 control), SSH (22), Telnet (23 — insecure), RDP (3389), SMB (445), LDAP (389 / LDAPS 636), Kerberos (88), NTP (123), SNMP (161/162), and syslog (514 UDP / 6514 TLS). Attackers often abuse legitimate ports — C2 over 443 mimics normal HTTPS. Look at protocol semantics, not just port numbers. TLS certificate anomalies (self-signed on a supposedly commercial site, freshly issued to a newly registered domain, JA3/JA3S fingerprint mismatch with known good clients) are strong hunt indicators.
Evidence handling on CBROPS follows the '5 Ws': WHO (user/host), WHAT (action/artifact), WHEN (timestamp UTC), WHERE (source/destination), and WHY (business context). Capture in order of volatility (CPU registers → RAM → network state → running processes → disk → archives), use write blockers on physical media, compute SHA-256 hashes before and after imaging, and document the chain of custody continuously. Keep original evidence read-only; work on copies. Understand the difference between the true-positive/false-positive/true-negative/false-negative matrix — an over-tuned IDS with too many false positives leads to alert fatigue; an under-tuned IDS misses real attacks (false negatives).
Incident response on CBROPS is anchored to NIST SP 800-61 Rev. 2. Its lifecycle has four phases: (1) Preparation — build the plan, tools, comms tree, jump kit, and train the CSIRT; (2) Detection & Analysis — validate, scope, prioritize, and document the incident; (3) Containment, Eradication & Recovery — isolate affected assets, remove the threat, restore clean systems, and monitor for re-infection; (4) Post-Incident Activity — lessons learned meeting within two weeks, plus playbook and control updates. NIST classifies incidents by attack vector: External/Removable Media, Attrition (brute force/DoS), Web, Email, Impersonation, Improper Usage, Loss/Theft, and Other.
Cisco expects familiarity with several complementary frameworks: SANS 6-step IR (Preparation, Identification, Containment, Eradication, Recovery, Lessons Learned) — essentially the same content re-partitioned. VERIS (Vocabulary for Event Recording and Incident Sharing) — the schema behind Verizon's DBIR. The Cyber Kill Chain (Lockheed Martin): Reconnaissance → Weaponization → Delivery → Exploitation → Installation → Command & Control → Actions on Objectives. MITRE ATT&CK maps observed adversary behavior to tactics and techniques. Frameworks are complementary — the kill chain shows sequence, ATT&CK enumerates techniques, VERIS records outcomes.
Roles in a modern SOC / CSIRT: Tier 1 Analyst (triage), Tier 2 Analyst (deep investigation), Tier 3 Threat Hunter / Forensic Analyst, SOC Manager, Incident Commander, Legal Counsel, PR/Communications, Executive Sponsor. Playbooks (runbooks) codify the exact steps for each alert type — phishing, malware, insider threat, data exfiltration, DDoS. SLAs define expected response times per severity. Compliance regimes referenced on CBROPS: PCI DSS (payment cards), HIPAA (US healthcare PHI), GDPR (EU personal data — 72-hour breach notification), and various sectoral regulations. Understand the difference between profiling (server baseline), server profiling (services/ports), and network profiling (protocols/talkers) — an anomaly against any baseline is a hunting lead.