Skip to main content

Last updated: May 2026

Practice Exam

350-701 SCORCisco Certified Internetwork Expert (CCIE) Security

Test your knowledge with official exam-style questions

Questions25Passing805/1000Exam time

Questions and options are shuffled each attempt

Cisco Certified Internetwork Expert (CCIE) SecurityPractice Set 1: All Questions & Explanations

Full question text, answer options, and explanations for this practice set — a spoiler-free alternative is the interactive quiz above for scored, shuffled practice.

  1. . A security architect is designing a PKI for an enterprise. The design requires that the root CA private key never be exposed to a network-connected system. Issuing CAs sign end-entity certificates and publish CRLs. The root CA signs only intermediate CA certificates and a single root CRL. Which PKI design pattern is described and what is its primary security benefit?

    • A. A flat single-tier PKI — all certificates are issued directly by one CA, simplifying management
    • B. An offline root CA with subordinate (issuing) CAs — the root CA's private key is protected from network-based compromise; if an issuing CA is compromised, only its subtree is revoked(correct)
    • C. A cross-certified PKI — two independent PKIs mutually trust each other's root CAs
    • D. A bridge CA architecture — a third-party bridge CA signs all certificates for interoperability

    Explanation: The offline root CA model is the industry-standard enterprise PKI design: the root CA is kept powered off and air-gapped, brought online only to sign subordinate CA certificates and CRLs. Online issuing (subordinate) CAs handle day-to-day certificate issuance. If an issuing CA is compromised, it can be revoked by the root CA and replaced, limiting blast radius to that CA's issued certificates. The root CA's private key is never exposed to network-connected systems, protecting the entire PKI trust anchor. A flat PKI exposes the root to network attacks. Cross-certification and bridge CAs are interoperability architectures.

  2. . A CCIE candidate is asked to explain the difference between RSA and ECC for key exchange in TLS. An organisation wants to minimise certificate key size while maintaining equivalent security to RSA-2048. Which ECC key size provides approximately equivalent security and why?

    • A. ECC-4096 — ECC keys must always be larger than RSA keys for equivalent security
    • B. ECC-256 — elliptic curve cryptography relies on the difficulty of the elliptic curve discrete logarithm problem, which is computationally harder to solve than RSA's integer factorisation for equivalent key sizes, providing comparable security with much smaller keys(correct)
    • C. ECC-128 — ECC provides a 16:1 key-size advantage over RSA in all cases
    • D. ECC and RSA provide identical security per bit; key size selection does not matter

    Explanation: Elliptic Curve Cryptography (ECC) achieves comparable security to RSA with significantly smaller key sizes because the underlying hard mathematical problem — the Elliptic Curve Discrete Logarithm Problem (ECDLP) — is currently more computationally difficult to solve than RSA's integer factorisation for equivalent key lengths. NIST guidance indicates that a 256-bit ECC key (e.g., P-256 / secp256r1) provides approximately the same security level as a 3072-bit RSA key. A 224-bit ECC key is roughly equivalent to RSA-2048. Smaller ECC keys mean faster handshakes, lower CPU usage, and smaller certificate sizes.

  3. . A security engineer analyses a CVSS v3.1 vector string: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H. Which interpretation of this vector is correct?

    • A. The vulnerability requires local access, high complexity, and administrator credentials, and has low confidentiality impact
    • B. The vulnerability is remotely exploitable over the network, requires no authentication or user interaction, has changed scope (impacts beyond the vulnerable component), and results in complete confidentiality, integrity, and availability compromise — this is a Critical severity vulnerability(correct)
    • C. The vulnerability has a base score of 5.0 (Medium) because the Attack Complexity is Low
    • D. The vulnerability requires user interaction to exploit and does not affect data confidentiality

    Explanation: Parsing the CVSS 3.1 vector: AV:N = Attack Vector Network (remotely exploitable); AC:L = Attack Complexity Low (no special conditions); PR:N = Privileges Required None (no authentication); UI:N = User Interaction None (no victim action required); S:C = Scope Changed (vulnerability impacts beyond the vulnerable component's security scope); C:H/I:H/A:H = High impact on Confidentiality, Integrity, and Availability. This combination produces a CVSS base score of 10.0 (Critical) — the maximum possible. This profile describes an unauthenticated, remotely exploitable critical vulnerability with full system impact.

  4. . A CCIE candidate explains HMAC. A developer implements a REST API and needs to ensure both message integrity and authentication of the API caller without using asymmetric cryptography. Which mechanism is MOST appropriate?

    • A. MD5 hash of the request body appended as a URL parameter
    • B. HMAC-SHA256 using a shared secret key, included as a request header(correct)
    • C. RSA digital signature using the server's private key
    • D. Base64 encoding of the request body

    Explanation: HMAC (Hash-based Message Authentication Code) combines a cryptographic hash function (SHA-256 here) with a shared secret key to produce an authentication tag. It provides both message integrity (any modification of the body produces a different HMAC) and authentication (only parties with the shared key can produce or verify the correct HMAC). A plain MD5 hash without a key provides no authentication — anyone can recompute it. RSA signatures use asymmetric keys (the question specifically excludes this). Base64 is encoding, not a security mechanism.

  5. . An advanced attacker performs an ARP spoofing attack on a switched network. She sends gratuitous ARP replies associating her MAC address with the default gateway's IP address. Which statements are true about what the attacker achieves and how this can be mitigated? (Choose 2)

    • A. Hosts that cache the forged ARP entry will send traffic destined for the gateway to the attacker's MAC — enabling a man-in-the-middle attack(correct)
    • B. ARP spoofing only works on routed (Layer 3) networks, not on switched VLANs
    • C. Dynamic ARP Inspection (DAI) on Cisco switches can mitigate ARP spoofing by validating ARP packets against a DHCP snooping binding table(correct)
    • D. ARP spoofing is prevented by enabling STP (Spanning Tree Protocol)
    • E. Encrypting all Layer 2 frames with MACsec prevents ARP spoofing from succeeding

    Explanation: ARP spoofing works on Layer 2 switched networks within a VLAN — hosts accept unsolicited ARP replies and update their ARP cache. By associating her MAC address with the gateway IP, the attacker intercepts all traffic destined for the gateway (man-in-the-middle). Dynamic ARP Inspection (DAI) is a Cisco switch feature that intercepts ARP packets on untrusted ports and validates them against the DHCP snooping binding table (which maps IP to MAC to port); forged ARP replies are dropped. STP prevents Layer 2 loops and does not protect against ARP spoofing. MACsec encrypts Ethernet frames but does not prevent ARP spoofing (the ARP frames themselves are still sent and processed).

  6. . A network engineer reviews a Cisco ASA running configuration and finds the following: access-list OUTSIDE_IN extended permit tcp any host 198.51.100.10 eq 443 access-list OUTSIDE_IN extended permit tcp any host 198.51.100.10 eq 80 access-list OUTSIDE_IN extended deny ip any any log access-group OUTSIDE_IN in interface outside A new requirement adds: permit ICMP echo-reply from any external host to any internal host. Where must the new ACE be inserted and what is the correct syntax?

    • A. Add 'access-list OUTSIDE_IN extended permit icmp any any echo' after the deny line — the deny will not match ICMP because the protocol is different
    • B. Insert 'access-list OUTSIDE_IN extended permit icmp any any echo-reply' before the deny ip any any log line; the new ACE must appear before the implicit deny(correct)
    • C. Add 'access-list OUTSIDE_IN extended permit icmp any any' at the beginning of the ACL to permit all ICMP types
    • D. No change is needed — the existing 'permit tcp any host 198.51.100.10 eq 443' also permits ICMP echo-reply

    Explanation: Cisco ASA ACLs are processed top-down and stop at the first match. The 'deny ip any any log' line matches all IP traffic (including ICMP, since ICMP is an IP protocol). Any ACE added after this line will never be reached. The new permit for ICMP echo-reply must be inserted before the deny line. The correct syntax is 'access-list OUTSIDE_IN extended permit icmp any any echo-reply'. Option A is incorrect because 'ip' in 'deny ip any any' matches all Layer 3 protocols including ICMP. Option C is overly permissive (permits all ICMP types). Option D is incorrect — TCP ACEs do not match ICMP.

  7. . A network engineer runs 'show crypto isakmp sa' on a Cisco ASA and sees the following output: Active SA: 1 Rekey SA: 0 (A tunnel will report 1 Active and 1 Rekey SA during rekey) Total IKE SA: 1 1 IKE Peer: 203.0.113.1 Type : L2L Role : initiator Rekey : no State : MM_WAIT_MSG4 What does the 'MM_WAIT_MSG4' state indicate about the IKEv1 Phase 1 (Main Mode) negotiation?

    • A. Main Mode has completed successfully and Phase 2 (Quick Mode) is about to begin
    • B. The local ASA sent Message 3 (containing the Diffie-Hellman public key and nonce) and is waiting for Message 4 from the peer — the exchange is stalled at the key exchange step(correct)
    • C. The IKE SA has expired and needs to be renegotiated
    • D. The peer rejected the ISAKMP policy proposal sent in Messages 1 and 2

    Explanation: IKEv1 Main Mode consists of six messages. MM_WAIT_MSG4 means the local device has sent Message 3 (which carries the Diffie-Hellman public value and nonce) and is waiting for the peer's Message 4 (the peer's DH public value and nonce). The DH key exchange (messages 3 and 4) generates the shared secret used to derive the session keys. A stall at MM_WAIT_MSG4 typically indicates a NAT or connectivity issue between the peers preventing Message 4 from arriving, or a mismatched DH group. A successful Phase 1 completion would show state MM_ACTIVE. A policy mismatch would typically appear at MM_WAIT_MSG2.

  8. . A CCIE candidate must configure IKEv2 site-to-site VPN on a Cisco ASA. IKEv2 replaces IKEv1 Main Mode and Quick Mode with a different exchange structure. Which statement correctly describes IKEv2's exchange sequence compared to IKEv1?

    • A. IKEv2 uses six messages for Phase 1 (Main Mode) and three messages for Phase 2 (Quick Mode), same as IKEv1
    • B. IKEv2 uses an IKE_SA_INIT exchange (2 messages) to negotiate algorithms and perform Diffie-Hellman, followed by an IKE_AUTH exchange (2 messages) to authenticate peers and establish the first Child SA — requiring only 4 messages total instead of IKEv1's 9(correct)
    • C. IKEv2 eliminates Diffie-Hellman and uses only pre-shared keys for all key derivation
    • D. IKEv2 requires a separate Phase 1 and Phase 2, each with more messages than IKEv1, making it slower but more secure

    Explanation: IKEv2 (RFC 7296) is more efficient than IKEv1. It replaces the 6-message IKEv1 Main Mode and 3-message Quick Mode (9 messages total for one IPsec SA) with: IKE_SA_INIT (2 messages: algorithm negotiation, DH exchange, nonces) and IKE_AUTH (2 messages: authentication, first Child SA establishment) — 4 messages total. IKEv2 also has built-in NAT traversal, improved reliability (request/response model with retransmission), and supports EAP authentication natively. IKEv2 still uses Diffie-Hellman for key exchange.

  9. . A network engineer runs 'show crypto ipsec sa' on a Cisco ASA and observes: #pkts encaps: 1542, #pkts encrypt: 1542, #pkts digest: 1542 #pkts decaps: 0, #pkts decrypt: 0, #pkts verify: 0 #pkts compressed: 0, #pkts decompressed: 0 #pkts not compressed: 0, #pkts compr. failed: 0 #pkts not decompressed: 0, #pkts decompress failed: 0 #send errors 0, #recv errors 0 The remote site reports it can ping the local ASA's inside network but the local inside hosts cannot reach the remote site. What does this output MOST suggest?

    • A. The VPN tunnel is fully functional in both directions
    • B. Traffic is being encrypted and sent (encaps > 0) but no decrypted traffic is being received (decaps = 0), suggesting the remote peer may not be sending encrypted return traffic or the inbound SPI does not match — a likely Phase 2 asymmetry or proxy-ACL mismatch(correct)
    • C. The IKE Phase 1 SA has expired; the tunnel needs to be re-established
    • D. The local ASA is dropping packets due to an ACL deny before they reach the crypto engine

    Explanation: The 'show crypto ipsec sa' output shows encaps (outbound packets encrypted and sent) = 1542 but decaps (inbound packets decrypted) = 0. This means the local ASA is encrypting and sending traffic, but receiving no encrypted inbound traffic that matches the inbound Security Association (SA). Common causes: (1) the remote peer's proxy ACL (crypto ACL) does not mirror the local ACL, so the remote peer is not encrypting return traffic; (2) the remote peer's SA is not established in the inbound direction; (3) inbound packets arrive but with an SPI that doesn't match the local SA. This is a Phase 2 mismatch or asymmetric tunnel issue. If Phase 1 had expired, encaps would also fail.

  10. . A Cisco ISE deployment uses TrustSec Security Group Tags (SGTs). A switch port is assigned SGT 10 (Employees). The destination server has SGT 50 (Finance-Servers). An SGACL policy matrix defines: Employees → Finance-Servers = DENY ALL. How does TrustSec enforce this policy between a switch and the server when the switch does not support SGT inline tagging?

    • A. TrustSec cannot enforce SGACLs without inline SGT tagging on every device in the path — enforcement fails silently
    • B. SXP (SGT Exchange Protocol) propagates the IP-to-SGT binding from the SGT-capable ingress switch to non-capable devices; enforcement occurs at the egress switch or firewall that does support SGACL enforcement(correct)
    • C. ISE pushes the SGACL to the endpoint device's personal firewall, which enforces the policy locally
    • D. pxGrid distributes the SGACL to all network devices simultaneously, making SXP unnecessary

    Explanation: Cisco TrustSec SGT enforcement requires that devices in the traffic path either support inline SGT tagging (Cisco Meta Data — CMD — header in 802.1AE frames) or use SXP (SGT Exchange Protocol) to propagate IP-to-SGT bindings over TCP to devices that cannot read inline tags. The enforcement device (egress switch, firewall, or router that supports SGACL) uses the SXP-learned binding to apply the correct SGACL policy. This allows TrustSec enforcement in networks with a mix of SGT-capable and non-capable devices. pxGrid shares session context (authentication events) with security ecosystem partners — it does not distribute SGACLs.

  11. . A network engineer reviews a Cisco Secure Firewall FTD (Firepower Threat Defense) policy managed by Cisco Secure Firewall Management Center (FMC). The FTD is running a Snort 3 intrusion policy. An analyst wants to create a custom Snort 3 rule to detect HTTP requests containing the URI pattern '/admin/config.php' arriving on port 8080. Which Snort 3 rule syntax is correct?

    • A. alert http any any -> any 8080 (msg:"Admin config access"; http.uri; content:"/admin/config.php"; sid:9001; rev:1;)(correct)
    • B. alert tcp any any -> any 8080 (msg:"Admin config access"; content:"/admin/config.php"; sid:9001;)
    • C. drop http any any -> any 8080 (uri:"/admin/config.php"; sid:9001;)
    • D. alert ip any any -> any 8080 (payload:"/admin/config.php"; sid:9001;)

    Explanation: In Snort 3, the 'http' protocol keyword directs the rule to HTTP-normalised traffic. The 'http.uri' sticky buffer targets the normalised request URI field specifically, which is more precise and efficient than searching the raw payload. The 'content' keyword then matches the URI string. The rule must include 'msg', 'sid', and 'rev' fields. Option B uses TCP (not HTTP-aware) and does not use the http.uri buffer. Option C uses 'drop' (which would block rather than alert, and omits 'msg' and 'rev'). Option D uses 'ip' protocol and a non-existent 'payload' keyword.

  12. . A CCIE Security candidate is asked to describe the security responsibilities in a PaaS model compared to IaaS. In a PaaS model, what additional security responsibilities does the cloud provider assume compared to IaaS?

    • A. In PaaS, the provider also secures the operating system, middleware, and runtime environment; the customer is responsible only for applications and data(correct)
    • B. In PaaS, the provider assumes all security responsibilities including application code security and data encryption
    • C. PaaS and IaaS have identical security responsibility boundaries
    • D. In PaaS, the customer is responsible for the OS and runtime but the provider manages physical security only

    Explanation: In the shared responsibility model: IaaS — provider secures physical hardware, hypervisor, and network; customer secures everything from OS upward. PaaS — provider additionally secures the OS, middleware, runtime, and database layers; customer is responsible for their application code, application-level configuration, and data. SaaS — provider secures nearly everything; customer is responsible mainly for user access management and data classification. The customer's responsibility shrinks as the service model moves from IaaS to PaaS to SaaS.

  13. . An organisation deploys Cisco Umbrella with the roaming client on all laptops. A DNS query for 'update.legitimate-software.com' is sent from a remote laptop. Umbrella's intelligence classifies the domain as benign. The query resolves to an IP address. The laptop then establishes an HTTPS connection to that IP. Which statement about Umbrella's protection scope is correct?

    • A. Umbrella inspects and decrypts the HTTPS payload of the connection, performing full DLP on the session
    • B. Umbrella's DNS-layer enforcement stops at the DNS resolution step; if the domain is allowed, the subsequent HTTPS connection goes directly to the destination without Umbrella's content inspection, unless Cisco Umbrella SIG (Secure Internet Gateway) proxy features are enabled(correct)
    • C. Umbrella blocks all HTTPS traffic for remote users by default until manually allowed
    • D. Umbrella forwards all allowed connections through a Cisco ASA for further inspection

    Explanation: Cisco Umbrella's core DNS-layer security operates at the DNS resolution stage — it allows or blocks domains before a connection is made. If a domain is allowed, the subsequent TCP/TLS connection proceeds directly from the client to the server without additional Umbrella inspection at the packet level. To add content inspection (URL filtering, HTTPS decryption, malware file scanning, and CASB functionality) for allowed domains, the Umbrella Secure Internet Gateway (SIG) proxy feature must be enabled. SIG routes traffic through Umbrella's cloud proxy for full content inspection. Without SIG, Umbrella provides no visibility into the HTTPS session payload.

  14. . A security architect is evaluating CASB deployment modes. The organisation uses Cisco Umbrella with CASB capabilities and wants to apply DLP policies to corporate data uploaded to unsanctioned cloud storage services. Which CASB deployment mode inspects the traffic inline and can enforce block/allow decisions in real time without requiring API integration with each SaaS provider?

    • A. CASB API mode — connects to each SaaS provider's management API to scan content and apply policies after the fact
    • B. CASB reverse proxy mode — only intercepts connections from managed devices connecting to known SaaS apps
    • C. CASB forward proxy (inline) mode — all user traffic is proxied through the CASB, enabling real-time inspection and enforcement for all cloud services including unsanctioned ones(correct)
    • D. CASB log collection mode — collects logs from cloud providers for post-event analysis only

    Explanation: CASB deployment modes: (1) API mode — out-of-band, uses cloud provider APIs to scan and remediate content already uploaded; does not block in real time and requires integration with each provider. (2) Reverse proxy — intercepts specific managed-device-to-SaaS traffic but requires DNS or certificate manipulation for specific apps. (3) Forward proxy (inline) — routes all user internet traffic through the CASB proxy, enabling real-time enforcement for any cloud service including shadow IT/unsanctioned apps. Cisco Umbrella's SIG provides forward proxy CASB capabilities. Log collection is a monitoring-only mode with no enforcement.

  15. . A security administrator reviews the Cisco Secure Email (ESA) mail log and sees: MID 8374 ICID 2891 From: <sender@evil.example.com> MID 8374 To: <user@company.com> MID 8374 SPF: SoftFail MID 8374 DKIM: pass (signature verified) MID 8374 DMARC: fail (p=reject; sp=reject; pct=100) MID 8374 Action: quarantine DMARC policy is 'p=reject' but the email was quarantined instead of rejected. What is the MOST likely reason?

    • A. The ESA is configured to override the DMARC reject policy and quarantine messages instead — this is a common deployment choice to avoid false positives during policy rollout(correct)
    • B. The DKIM pass overrides the DMARC reject, causing the ESA to downgrade to quarantine
    • C. The SPF SoftFail caused the ESA to ignore the DMARC reject policy
    • D. DMARC reject policies are not enforced by Cisco Secure Email; it always quarantines failing messages

    Explanation: DMARC defines three policies: none (monitor only), quarantine, and reject. While p=reject instructs receiving servers to reject failing messages, many email security deployments — including Cisco Secure Email configurations — allow administrators to override the domain owner's DMARC reject policy and apply a local action such as quarantine instead. This is commonly done during initial deployment to prevent legitimate mail from being rejected due to misconfigured SPF/DKIM at the sender. The ESA's DMARC policy handling can be configured to honour, downgrade, or override the published policy. A DKIM pass does not override DMARC — DMARC evaluates alignment, not just pass/fail independently.

  16. . A security engineer configures the Cisco Secure Web Appliance (SWA) to perform HTTPS inspection for all users. After enabling HTTPS inspection, users browsing to their online banking sites receive certificate errors. What is the cause and the correct remediation?

    • A. The SWA is stripping HTTPS and downgrading connections to HTTP — disable HTTP redirect on the SWA
    • B. The SWA's HTTPS inspection generates a new certificate signed by the SWA's internal CA for each inspected site. If the SWA's internal CA root certificate is not installed in users' browser trust stores, browsers display an 'Untrusted CA' error. The fix is to deploy the SWA's signing CA certificate to all endpoints via Group Policy.
    • C. Banking sites use certificate pinning; the SWA cannot inspect pinned certificates and should be excluded from HTTPS inspection via a decryption policy exception
    • D. Both B and C are correct and must be addressed — deploy the CA certificate to endpoints AND configure decryption exceptions for certificate-pinned banking sites(correct)

    Explanation: HTTPS inspection on the Cisco SWA involves two issues: (1) The SWA generates replacement certificates signed by its own internal CA. Users' browsers must trust this CA; otherwise they receive untrusted certificate warnings. Solution: deploy the SWA signing CA certificate to all endpoints via Group Policy or MDM. (2) Many financial institutions and applications use certificate/public-key pinning (HPKP or baked-in pins), which causes the browser or application to reject any certificate not matching the pinned value — including SWA-generated ones. Solution: configure decryption policy exceptions for these domains to pass them through without inspection. Both issues must be addressed simultaneously.

  17. . A security engineer is configuring Cisco Secure Email to protect against Business Email Compromise (BEC) attacks where attackers impersonate the CEO using a display name match but a different domain. Which ESA feature MOST directly mitigates this specific attack vector?

    • A. Anti-spam scanning based on content heuristics
    • B. DKIM signature verification
    • C. Forged email detection (display name spoofing detection) that compares the From display name against a list of executives and flags messages where the display name matches but the email domain does not(correct)
    • D. Outbreak filters that use real-time threat intelligence

    Explanation: Business Email Compromise (BEC) attacks often use a legitimate domain with a display name that matches an executive ('CEO Name' <attacker@gmail.com>). These emails may pass SPF, DKIM, and DMARC checks because the sending domain (gmail.com) is legitimate — the spoofing is only in the display name. Cisco Secure Email includes a Forged Email Detection feature that allows administrators to define a list of executive names; the appliance flags any incoming message where the display name matches a protected name but the sending domain does not match the corporate domain. Anti-spam and outbreak filters target known malicious content patterns, not display name spoofing. DKIM only verifies signing domain alignment.

  18. . A Cisco Secure Web Appliance (SWA) is deployed in explicit forward proxy mode. A user's browser is configured to send all HTTP and HTTPS requests to the SWA on port 3128. An application on the user's laptop uses a hard-coded IP address instead of a hostname for its cloud connection. The SWA's HTTPS inspection policy is configured to inspect all traffic. What happens to this application's traffic?

    • A. The application's traffic bypasses the SWA entirely because it uses an IP address
    • B. In explicit proxy mode, the application must be configured to use the proxy; if it sends traffic directly (not through the browser proxy), it bypasses the SWA unless a transparent proxy or PAC file enforcement is in place at the network level(correct)
    • C. The SWA automatically discovers the application and inspects its traffic regardless of proxy settings
    • D. HTTPS inspection only applies to HTTP traffic on port 80; HTTPS on port 443 is always bypassed

    Explanation: In explicit proxy mode, each application must be configured to send its traffic to the proxy (via browser proxy settings, PAC file, or system proxy settings). Applications that bypass the system proxy — including those using hard-coded IP addresses — send traffic directly to the internet without going through the SWA. The SWA never sees this traffic. To enforce proxy for all applications including those that bypass proxy settings, a transparent proxy deployment (intercepting traffic at the network layer via WCCP or a PBR policy on a router) or an endpoint agent that enforces proxy for all traffic is required.

  19. . A CCIE Security candidate reviews a Cisco Secure Endpoint (formerly AMP for Endpoints) console alert. The alert shows 'Threat Detected: Possible Dropper' for a file on a Windows host. The file disposition is 'Unknown' (not in the Cisco cloud reputation database). The connector is in Active mode. Which action does Cisco Secure Endpoint take for an 'Unknown' disposition file in Active mode?

    • A. The file is automatically quarantined regardless of disposition
    • B. In Active mode, unknown files that trigger a threat detection heuristic are quarantined; files that are merely 'Unknown' without a detection event are allowed to run but are continuously monitored — retrospective detection can convict them later if cloud intelligence updates classify them as malicious(correct)
    • C. Active mode blocks all file executions for files not listed as 'Clean' in the cloud database
    • D. Unknown files are uploaded to the Cisco cloud and the user must wait for a verdict before the file can run

    Explanation: Cisco Secure Endpoint conviction modes control response to file dispositions. In Active mode: Clean files are allowed, Malicious files are quarantined. For Unknown files, the connector allows execution but continuously monitors file and process activity. If Cisco's cloud intelligence later reclassifies the file as malicious (retrospective detection), the connector receives an updated verdict and can retroactively quarantine the file and alert the analyst — even if the file was already executed. This retrospective capability is a key differentiator of Cisco Secure Endpoint. Aggressive mode quarantines unknown files proactively, which increases false positives.

  20. . A SOC analyst investigating a compromised Windows host uses Cisco Secure Endpoint's Device Trajectory feature. The trajectory shows: explorer.exe → cmd.exe → powershell.exe → (network connection to 203.0.113.99:443) → mshta.exe. Which attack technique does this process chain MOST indicate?

    • A. A user manually opened a PowerShell window from the start menu to run a scheduled backup
    • B. A living-off-the-land attack: malicious code (possibly a malicious Office macro or script) spawned cmd.exe and PowerShell to download and execute a payload, using mshta.exe (Microsoft HTML Application host) as a further execution and evasion step(correct)
    • C. The Windows Update service is performing an in-place upgrade using PowerShell
    • D. A legitimate software installation triggered by the user from Windows Explorer

    Explanation: The Device Trajectory chain explorer.exe → cmd.exe → powershell.exe → (outbound connection) → mshta.exe is a classic living-off-the-land (LotL) attack pattern. Explorer.exe spawning cmd.exe, which spawns PowerShell, which makes an outbound connection to a suspicious external IP, followed by mshta.exe (a signed Windows binary that executes HTML Applications / VBScript, commonly abused for execution and UAC bypass) indicates a multi-stage attack using built-in Windows tools to evade AV detection. Windows Update and user-initiated installs do not produce this process chain.

  21. . A network engineer runs 'show authentication sessions interface GigabitEthernet0/1 details' on a Cisco Catalyst switch and sees: Interface: GigabitEthernet0/1 IIF-ID: 0x1078C80000055 IP Address: 10.1.1.105 User-Name: 00-11-22-33-44-55 Status: Authorized Domain: DATA Oper host mode: multi-auth Oper control dir: both Session timeout: N/A Acct update time: 0d0h11m26s Common Session ID: 0A0101010000000F3C2D8A56 Acct Session ID: 0x0000000F Handle: 0xD6000003 Current Policy: POLICY_MAB Local policies: Service Template: DEFAULT_LINKSEC_POLICY_SHOULD_SECURE (priority 150) Server policies: VLAN Group: Vlan: 20 What does 'POLICY_MAB' and the 'User-Name: 00-11-22-33-44-55' indicate about this authentication session?

    • A. The device authenticated using 802.1X EAP-TLS with a certificate; the username is the certificate Common Name
    • B. The device failed 802.1X authentication and fell through to MAC Authentication Bypass (MAB); the 'username' is the device's MAC address sent to ISE as a RADIUS username for lookup against the endpoint identity store(correct)
    • C. The device is a guest user authenticated via the ISE guest portal
    • D. The port is in an error-disabled state and the device has not been authenticated

    Explanation: MAC Authentication Bypass (MAB) is a fallback authentication method used when a device does not support 802.1X (e.g., IP phones, printers, IoT devices). In MAB, the switch sends the device's MAC address as both the RADIUS username and password to ISE. The 'User-Name: 00-11-22-33-44-55' (formatted as the MAC address) and 'Current Policy: POLICY_MAB' confirm this is a MAB session. ISE looks up the MAC address in its endpoint identity store (or an external directory) to determine the authorisation policy. The session is authorised and placed in VLAN 20 per ISE's server policy.

  22. . A security architect is designing a Cisco ISE policy for BYOD devices. Personal devices that pass posture assessment should receive full corporate access (VLAN 10). Devices that fail posture should be redirected to a remediation portal. Which ISE policy components are required to implement this? (Choose 2)

    • A. An ISE Authorisation Policy rule that matches compliant posture status and assigns downloadable ACL 'FULL_ACCESS' and VLAN 10(correct)
    • B. An ISE Profiling Policy to identify device type (iPhone vs Android vs Windows)
    • C. An ISE Authorisation Policy rule that matches non-compliant posture status and returns a redirect URL and ACL for the remediation portal(correct)
    • D. A pxGrid integration with Cisco StealthWatch to share posture status
    • E. A Cisco ASA VPN policy to encrypt all BYOD traffic before it reaches the ISE policy node

    Explanation: The BYOD posture workflow requires two authorisation policy rules: (1) A rule that matches 'posture status = Compliant' and returns the full access authorisation result (e.g., VLAN 10 and a permissive dACL). (2) A rule that matches 'posture status = NonCompliant' and returns a redirect result (CWA or posture redirect URL + ACL that permits only DNS and HTTPS to ISE/remediation portal). These two rules together implement the compliant-or-redirect behaviour. Device profiling (B) is useful but not required for posture-based access differentiation. pxGrid (D) enables ecosystem sharing, not this specific flow. A Cisco ASA VPN (E) is not part of an 802.1X/MAB BYOD posture flow.

  23. . A security engineer is investigating an alert from Cisco Secure Network Analytics (formerly StealthWatch). The system reports 'Encrypted Traffic Analytics (ETA) — Malware detected in encrypted flow' for a TLS 1.3 connection from an internal host to an external IP. No decryption occurred. How does Cisco Secure Network Analytics detect malware in an encrypted TLS flow without decrypting it?

    • A. It captures TLS session keys from the endpoint via the Cisco Secure Endpoint connector and uses them to decrypt the flow in the cloud
    • B. ETA uses passively observed metadata from the TLS handshake (certificate details, cipher suite negotiated, TLS version, client hello parameters) and NetFlow data (flow duration, packet sizes, inter-arrival times, byte sequences) correlated with Cisco Talos malware behaviour models to identify malicious traffic without decryption(correct)
    • C. Cisco Secure Network Analytics deploys a proxy between the internal host and the internet to intercept the TLS session
    • D. TLS 1.3 is not actually encrypted and can be read in plaintext by Cisco Secure Network Analytics

    Explanation: Cisco Encrypted Traffic Analytics (ETA) is a Cisco technology that detects malware communications in encrypted traffic without decryption. It analyses observable metadata: the TLS ClientHello (supported cipher suites, extensions, SNI), the server certificate (subject, issuer, validity period), and NetFlow enrichments (initial data packet length, byte distribution, sequence of packet lengths and inter-arrival times). These features are correlated against Cisco Talos machine learning models trained on known malware C2 communication patterns. ETA does not decrypt traffic, does not use session keys, and does not deploy a proxy. TLS 1.3 is fully encrypted.

  24. . A network architect is reviewing the pxGrid protocol. Cisco ISE publishes session context (user identity, device type, posture status, SGT) via pxGrid. A third-party SIEM subscribes to pxGrid. When a new endpoint authenticates, the SIEM receives the session context automatically. Which pxGrid capability is being used to push these real-time updates to the SIEM?

    • A. pxGrid REST API polling — the SIEM polls ISE every 30 seconds for new sessions
    • B. pxGrid WebSocket-based publish/subscribe — ISE publishes session events to the pxGrid controller; the SIEM, as a subscriber to the session topic, receives push notifications for new and changed sessions in real time(correct)
    • C. pxGrid uses SNMP traps to deliver session context to subscribers
    • D. The SIEM directly queries ISE's internal database via JDBC for session records

    Explanation: Cisco pxGrid 2.0 uses a WebSocket-based publish/subscribe model over HTTPS. ISE acts as the pxGrid publisher, pushing session context events (authentication, authorisation, session termination, posture changes) to the pxGrid controller. Third-party security products that subscribe to specific topics (e.g., /topic/com.cisco.ise.session) receive real-time push notifications whenever relevant events occur. This eliminates the need for polling and provides near-real-time context sharing. pxGrid does not use SNMP traps or direct database access.

  25. . A CCIE Security candidate is asked to design a Cisco ISE deployment for a large enterprise. The design must support 150,000 concurrent endpoints, provide high availability, and distribute authentication load. The candidate proposes a distributed deployment with dedicated Policy Administration Nodes (PAN), Policy Service Nodes (PSN), and Monitoring and Troubleshooting Nodes (MNT). Which statement correctly describes the role of each node type in a distributed ISE deployment?

    • A. PAN handles all RADIUS authentication requests; PSN manages the GUI and configuration; MNT is the failover node for PAN
    • B. PAN is the primary management and configuration interface (up to 2 in an HA pair); PSNs process all RADIUS/TACACS+ authentication and authorisation requests from network devices (multiple PSNs for scalability and load balancing); MNT nodes collect logs and provide monitoring/reporting (up to 2 for HA)(correct)
    • C. All ISE functions run on every node in the cluster, and no node specialisation is required
    • D. PSN handles only guest portal requests; PAN handles all RADIUS authentication; MNT provides DNS services for the ISE cluster

    Explanation: In a Cisco ISE distributed deployment: the Policy Administration Node (PAN) provides the central configuration GUI and policy management (maximum 2 nodes in a Primary/Secondary HA pair; only the Primary is active for config). Policy Service Nodes (PSNs) process all live authentication, authorisation, and accounting requests (RADIUS/TACACS+) from network access devices — multiple PSNs are deployed for scalability and load balancing via RADIUS load-balancing on the network devices or ISE's load-balancer integration. Monitoring and Troubleshooting (MNT) nodes aggregate syslogs and RADIUS accounting data to provide real-time and historical reporting (up to 2 MNT nodes for HA). This node separation allows each tier to scale independently.