Courseiva

EC-Council Certified Network Defender (CND, 312-38, Blueprint v4.0) (CND) (CND) — Questions 226300

323 questions total · 5pages · All types, answers revealed

Page 3

Page 4 of 5

Page 5
226
MCQeasy

A network administrator is setting up a secure remote management channel for Linux servers across the public internet. The security policy mandates that Telnet must not be used. Which protocol should be implemented?

A.SSH (Secure Shell)
B.HTTP
C.SNMPv1
D.FTP
AnswerA

SSH provides strong cryptographic authentication and encryption for remote command-line administration.

Why this answer

SSH (Secure Shell) provides a secure, encrypted channel for remote administrative access, replacing insecure legacy protocols like Telnet, rlogin, and rsh.

227
MCQeasy

A company is developing its network security governance structure. Who holds the ultimate legal and fiduciary responsibility for an organization's overall information security posture and risk management decisions?

A.Junior Firewall Configuration Engineer
B.Third-Party External Penetration Testing Consultant
C.Board of Directors and Executive Management
D.Lead Network Helpdesk Support Technician
AnswerC

Executive leadership and board members bear ultimate fiduciary and governance responsibility.

Why this answer

The Board of Directors and Executive Management hold ultimate accountability for enterprise risk management and governance.

228
MCQeasy

A security analyst notices unusual outbound traffic matching command-and-control (C2) beaconing patterns over HTTPS. The organization wants to inspect outbound encrypted traffic to detect malicious payloads without violating compliance policies. Which enterprise security architecture technique should be implemented?

A.Enforce strict client-side certificate pinning on all corporate web browsers.
B.Configure IPsec VPN tunnels between all endpoints and the corporate perimeter router.
C.Deploy a Layer 2 network tap connected to a passive intrusion detection sensor.
D.Implement SSL/TLS Decryption (SSL Inspection) on the Next-Generation Firewall or Secure Web Gateway.
AnswerD

SSL inspection decrypts and inspects outbound TLS traffic for malicious payloads and C2 beacons.

Why this answer

SSL/TLS Decryption (Forward Proxy / SSL Interception) allows a next-generation firewall or secure web gateway to inspect encrypted HTTPS traffic by resigning sessions with a trusted internal Certificate Authority (CA).

229
MCQhard

A network defense manager is deploying a SIEM solution and needs to map incoming logs to the MITRE ATT&CK framework. Which benefit does this mapping provide for network defense lifecycle management?

A.It contextualizes detection alerts against known adversary tactics, techniques, and procedures (TTPs)
B.It enforces static IP address allocation across dynamic DHCP scopes
C.It compresses network packet captures to reduce storage overhead
D.It automatically patches operating system zero-day vulnerabilities upon log ingestion
AnswerA

MITRE ATT&CK provides a knowledge base of real-world adversary behavior to evaluate and improve detection controls.

Why this answer

Mapping logs to MITRE ATT&CK provides a structured taxonomy of adversary tactics and techniques, enabling precise detection engineering and gap analysis.

230
MCQhard

An Incident Response team is investigating a Linux server where a persistent backdoor is suspected of hiding process IDs (PIDs) using user-space hooks. Which utility should the responder use to compare process lists returned by the kernel system call table against direct kernel memory inspection?

A.unhide
B.lsof -i
C.netstat -anp
D.ps aux --forest
AnswerA

unhide is a forensic tool designed to find hidden processes and ports affected by rootkits manipulating the system call table.

Why this answer

rkhunter or chkrootkit can check for hidden processes, but specialized tools like unhide directly compare ps/top outputs with direct procfs/syscall examination to detect hidden PIDs.

231
MCQmedium

A security analyst suspects that an internal host has been compromised and is communicating via an encrypted Command and Control (C2) channel utilizing DNS tunneling. Which Wireshark filter and analysis technique should the analyst employ to definitively identify this anomaly?

A.Filter for 'http.request.method == POST' and look for binary attachments.
B.Filter for 'tcp.port == 443' and inspect the TLS Server Name Indication (SNI) extension.
C.Filter for 'dns' and inspect query strings for abnormally high length, high entropy, or encoded character patterns.
D.Filter for 'icmp' and examine the payload size of Echo Request packets.
AnswerC

DNS tunneling manifests as unusually long and complex query names destined for recursive resolvers.

Why this answer

DNS tunneling embeds arbitrary data within DNS queries (typically in the subdomain labels). Filtering for DNS traffic and analyzing exceptionally long query names containing high entropy or Base64-encoded strings is the standard methodology to detect DNS tunneling.

232
MCQeasy

Which protocol is commonly used to securely manage network perimeter devices via an encrypted command-line interface instead of plaintext Telnet?

A.HTTP
B.SNMPv1
C.SSH (Secure Shell)
D.TFTP
AnswerC

SSH provides cryptographic security for remote logins and command execution.

Why this answer

SSH provides a secure, encrypted channel for remote administrative access.

233
MCQhard

An attacker performs a TCP SYN flood attack against a perimeter web server protected by a firewall. The security engineer enables SYN cookies on the firewall/router. How does this feature mitigate the attack?

A.The firewall drops all incoming SYN packets immediately.
B.The firewall encodes connection parameters into the sequence number (SYN cookie) without allocating memory state until the client responds with an ACK.
C.The firewall resets the TCP window size to zero for all external connections.
D.The firewall proxies the TCP handshake by establishing a full connection before forwarding traffic to the server.
AnswerB

This prevents connection table exhaustion during a SYN flood.

Why this answer

SYN cookies allow the firewall/router to respond to SYN requests without allocating state table memory until the three-way handshake is fully completed by the client ACK.

234
MCQhard

An incident responder is analyzing a memory dump using Volatility 3. To list all active network sockets and connections present in the captured memory image, which Volatility plugin should the analyst execute?

A.windows.netstat
B.windows.dlllist
C.windows.pslist
D.windows.registry.printkey
AnswerA

windows.netstat is the correct Volatility 3 plugin for extracting network connection artifacts.

Why this answer

In Volatility 3, the 'windows.netstat' plugin is used to scan kernel memory structures for active network connections and sockets.

235
Multi-Selecthard

A security engineer is hardening an industrial IoT gateway running Linux. Which THREE of the following steps are recognized hardening practices for securing embedded Linux IoT endpoints? (Choose THREE)

Select 3 answers
A.Configuring all system accounts with shared static SSH keys and root auto-login
B.Configuring a host-based packet filter firewall (such as nftables or iptables)
C.Removing unnecessary software packages and disabling unused network services (e.g., Telnet, FTP)
D.Establishing an automated, secure mechanism for firmware and patch updates
E.Disabling local logging and audit daemons to maximize CPU performance
AnswersB, C, D

Enabling local firewalls ensures network-level traffic restrictions even if perimeter defenses fail.

Why this answer

Hardening IoT Linux devices involves removing unnecessary packages/services, enabling firewalls (nftables/iptables), and configuring automated secure updates.

236
Multi-Selecthard

An enterprise cloud security team is reviewing common cloud security vulnerabilities and misconfigurations that lead to data breaches. Which TWO threats are primary vectors in cloud environments? (Choose TWO)

Select 2 answers
A.Direct physical bus-sniffing attacks against hypervisor memory modules on multi-tenant hosts.
B.BIOS firmware flashing attacks against local endpoint motherboard EEPROMs.
C.Insecure Management APIs lacking proper authentication, rate limiting, and input validation.
D.Physical access tampering of rack-mounted server hardware within third-party data center cages.
E.Overly permissive Identity and Access Management (IAM) policies granting excessive administrative privileges.
AnswersC, E

Insecure APIs expose cloud infrastructure and data to unauthorized access and exploitation.

Why this answer

According to cloud security frameworks (such as the OWASP Cloud Top 10 and CSA), Insecure APIs and Insecure IAM / Excessive Privileges are primary cloud threat vectors.

237
MCQhard

A network administrator is configuring a high-availability pair of firewalls in active/passive mode using virtual router redundancy protocol (VRRP). During a failover event, active TCP sessions drop, forcing users to re-authenticate to internal applications. Which firewall feature must be enabled to maintain stateful session continuity across the failover?

A.Network Address Translation (NAT) pool overloading
B.Asymmetric routing bypass mode
C.Stateful session synchronization (State Sync / HA heartbeat link)
D.Dynamic DNS update propagation
AnswerC

Session synchronization replicates active connection states to the standby unit so it can seamlessly take over existing TCP flows without interruption.

Why this answer

Stateful failover (or session synchronization/state sync) synchronizes connection tables, NAT mappings, and IPsec security associations from the active firewall to the standby firewall in real-time, preventing dropped sessions during a failover.

238
MCQmedium

A network administrator suspects that an unauthorized rogue access point is operating within the enterprise office environment, spoofing the corporate SSID to capture user credentials. Which tool or technique should be used to detect and locate the physical source of the rogue AP?

A.Running regular traceroute commands from endpoints
B.Deploying a Wireless Intrusion Prevention System (WIPS) with triangulation
C.Enabling port security on enterprise access layer switches
D.Configuring static ARP entries on enterprise switches
AnswerB

WIPS continuously monitors RF spectrums and uses signal strength (RSSI) triangulation to pinpoint rogue AP locations.

Why this answer

Wireless Intrusion Prevention Systems (WIPS) analyze radio frequency spectrums, detect unauthorized APs, and use signal strength triangulation to locate them.

239
MCQeasy

An organization is utilizing Google Cloud Platform (GCP) and needs to restrict network traffic between specific Google Kubernetes Engine (GKE) pods based on labels rather than IP addresses. Which GCP security feature should be configured?

A.Identity-Aware Proxy (IAP)
B.Kubernetes Network Policies
C.Google Cloud Armor security policies
D.VPC Firewall Rules using subnet tags
AnswerB

Kubernetes Network Policies enable label-based firewall rules for pods inside a GKE cluster.

Why this answer

Kubernetes Network Policies implemented in GKE allow administrators to define granular traffic rules based on pod labels and namespaces.

240
Multi-Selecteasy

During an incident triage meeting, a network defender needs to determine the appropriate containment actions for a compromised web server. Which TWO factors should be evaluated when selecting a containment strategy? (Choose TWO)

Select 2 answers
A.Potential operational downtime and business impact
B.The color of the Ethernet cables connected to the rack
C.The office desk location of the IT director
D.Need for evidence preservation (e.g., maintaining RAM state)
E.The brand name of the server manufacturer
AnswersA, D

The cost and disruption of taking a system offline must be balanced against ongoing security risks.

Why this answer

Containment strategy decisions depend on potential business disruption, service availability requirements, and evidence preservation needs.

241
MCQmedium

A security architect is designing a defense-in-depth strategy for a multi-tier web application. To adhere to the principle of least privilege within network defense lifecycle management, how should firewall rules be structured between the DMZ and the internal application tier?

A.Implicit deny all traffic by default, explicitly permitting only necessary destination ports and IPs
B.Implement stateful inspection only on inbound perimeter traffic, trusting all outbound traffic
C.Disable firewall packet filtering on internal interfaces to maximize application throughput
D.Permit all internal traffic by default, blocking only known malicious signatures
AnswerA

An explicit allow list with a terminal deny rule enforces strict least privilege.

Why this answer

Least privilege requires dropping all traffic by default and explicitly permitting only required ports and IP addresses necessary for business operations.

242
Multi-Selecteasy

An enterprise security team is reviewing the components of a robust Information Security Policy framework. Which TWO policy documents are considered foundational sub-policies under this governance umbrella? (Choose two)

Select 2 answers
A.Acceptable Use Policy (AUP)
B.Access Control Policy
C.Spanning Tree Protocol Priority Table
D.BGP Routing Advertisement Standard
E.OSPF Area Design Specification
AnswersA, B

The AUP defines proper employee behavior regarding corporate assets.

Why this answer

Acceptable Use Policies and Access Control Policies are foundational sub-policies that operationalize high-level information security governance.

243
Multi-Selecteasy

An organization is drafting a remote work security policy. Which TWO technical controls must remote employees utilize when accessing internal corporate resources from home? (Choose two)

Select 2 answers
A.Disabling endpoint firewall protection to improve home network gaming performance
B.Multi-Factor Authentication (MFA) for all authentication attempts
C.Sharing corporate laptop credentials with family members for household convenience
D.Connecting directly via unencrypted public Wi-Fi without any protective tunneling
E.Encrypted Virtual Private Network (VPN) tunnel with IPsec or TLS
AnswersB, E

MFA mitigates the risk of compromised passwords.

Why this answer

Remote workers must use encrypted VPN tunnels and Multi-Factor Authentication (MFA) to securely access internal corporate resources.

244
Multi-Selectmedium

An organization is setting up a threat hunting program. Which TWO characteristics differentiate proactive threat hunting from traditional reactive Security Operations Center (SOC) monitoring? (Choose TWO)

Select 2 answers
A.It is hypothesis-driven, focusing on assumptions that adversaries are already inside the network
B.It is performed only after a major ransomware encryption event completes
C.It involves human-led, iterative searches through endpoint and network telemetry
D.It replaces network firewalls and endpoint protection agents completely
E.It relies exclusively on automated SIEM alerts to trigger response actions
AnswersA, C

Threat hunting begins with forming hypotheses based on attacker TTPs.

Why this answer

Threat hunting is a proactive, hypothesis-driven pursuit of adversaries rather than waiting for automated alerts to trigger.

245
MCQhard

An administrator is hardening a Linux system against privilege escalation via SUID binaries. The administrator wants to find all files on the root partition that have the SUID bit set. Which find command should be executed?

A.find / -attr +s -type d
B.find / -perm -4000 -type f 2>/dev/null
C.locate -i suid_binaries
D.chmod -R 755 /
AnswerB

This command searches the entire file system (/) for regular files (-type f) with the SUID bit set (-perm -4000) and suppresses permission errors.

Why this answer

The find command with -perm -4000 searches for files with the SUID permission bit set across the file system.

246
MCQhard

A security architect is designing a high-security DMZ architecture. Public-facing web servers must be isolated from the internal database servers, and an intermediary inspection zone is required. Which design pattern should the architect implement?

A.Three-legged firewall architecture creating separate internal, external, and DMZ zones
B.Placing all web and database servers on the same internal VLAN protected by host firewalls
C.Single-firewall dual-homed architecture with a software loopback filter
D.Direct flat bridging between the external router and the internal core switch
AnswerA

A three-legged firewall uses three distinct physical or logical interfaces to isolate the internal network, external network, and DMZ into separate security zones.

Why this answer

A three-legged firewall configuration (or dual-firewall DMZ architecture) places public servers in a DMZ zone separate from both the untrusted external internet and the trusted internal LAN, requiring traffic between zones to be inspected.

247
Multi-Selecthard

A security architect is designing a secure DMZ architecture utilizing multiple security zones on a firewall. Which THREE design principles should guide the implementation? (Choose THREE)

Select 3 answers
A.Allow internal users unrestricted, unmonitored access to all DMZ administrative portals by default.
B.Never allow direct, uninspected traffic from the external zone to pass straight through the DMZ into the internal network.
C.Place public-facing web and DNS servers inside the DMZ zone.
D.Enforce the principle of least privilege using granular firewall rules between the DMZ and internal network.
E.Disable all logging on perimeter firewalls to conserve CPU cycles.
AnswersB, C, D

Traffic from the internet must terminate or be strictly inspected before reaching internal zones.

Why this answer

DMZ design principles include keeping public servers isolated, preventing direct transit from external to internal zones without filtering, and using least-privilege access rules.

248
MCQeasy

During a threat hunting exercise, an analyst uses Microsoft Defender for Endpoint to query device process creation events. Which Kusto Query Language (KQL) operator filters a table to include only rows where the file name matches 'cmd.exe'?

A.extend
B.project
C.summarize
D.where
AnswerD

The 'where' operator filters the dataset based on specified conditions.

Why this answer

The KQL 'where' operator is used to filter records based on a boolean expression.

249
MCQeasy

A security analyst is reviewing indicators of compromise (IoCs) shared by an ISAC. The indicators include file hashes and IP addresses. Which open-source framework is specifically designed to structure, store, and share threat intelligence in a machine-readable format?

A.Nmap
B.MISP
C.Autopsy
D.Wireshark
AnswerB

MISP is widely used for storing, sharing, and correlating threat intelligence and IOCs.

Why this answer

MISP (Malware Information Sharing Platform) is an open-source threat intelligence platform designed for sharing IOCs and threat data.

250
MCQhard

A security analyst is troubleshooting an IPsec site-to-site VPN tunnel failure on a Linux-based StrongSwan gateway. The logs indicate an 'ESP packet decryption failed' error. Upon reviewing the security association parameters, the analyst notices a mismatch in the cryptographic checksum algorithm. Which IPsec protocol component is responsible for providing data integrity and authentication for the inner packet?

A.Security Association Database (SAD)
B.Authentication Header (AH)
C.Internet Key Exchange (IKE)
D.Encapsulating Security Payload (ESP)
AnswerD

ESP provides integrity, authentication, and encryption services for IPsec, and its cryptographic parameters must match on both peers to avoid decryption failures.

Why this answer

The Encapsulating Security Payload (ESP) protocol provides origin authenticity, integrity, and confidentiality protection of packets. The Authentication Header (AH) provides integrity and authentication only, without confidentiality.

251
MCQeasy

During a post-incident forensic investigation, an analyst needs to establish cryptographic proof that an acquired disk image has not been altered or tampered with since collection. Which tool and command parameter combination is standard for generating a cryptographically secure hash of the evidence file?

A.dd if=/dev/sdb of=/evidence.raw --hash=md5
B.ftk_imager --verify --md5 evidence.raw
C.volatility -f evidence.raw --hash
D.sha256sum evidence.raw
AnswerD

The sha256sum utility correctly computes a 256-bit cryptographic checksum of the specified evidence file to ensure integrity.

Why this answer

To verify evidence integrity, cryptographic hashing algorithms such as SHA-256 or MD5 are used. On Linux systems, the 'sha256sum' utility is standard for generating hashes to verify file integrity.

252
Multi-Selecthard

A cloud architect is designing network security controls for multi-tier applications hosted in AWS. Which THREE AWS services and features are used to enforce network isolation and traffic filtering? (Choose THREE)

Select 3 answers
A.Amazon VPC Security Groups acting as stateful virtual firewall instances
B.Amazon Route 53 Resolver DNS firewall for intra-subnet packet filtering
C.AWS Network Firewall for managed stateful inspection and intrusion prevention
D.Amazon VPC Network ACLs (NACLs) acting as stateless subnet-level firewalls
E.AWS Shield Standard for intra-VPC subnet routing
AnswersA, C, D

Security Groups provide stateful instance-level and interface-level packet filtering.

Why this answer

Security Groups, Network ACLs (NACLs), and AWS Network Firewall provide multi-layered network isolation and traffic filtering in AWS.

253
MCQhard

A security engineer is configuring a Next-Generation Firewall (NGFW) to perform deep packet inspection (DPI) on encrypted TLS traffic. Due to privacy regulations, specific internal banking applications must be excluded from SSL decryption. How should the engineer configure the firewall to bypass decryption for these specific destinations without disabling overall inspection?

A.Create an outbound NAT rule mapping banking IP addresses to a loopback interface.
B.Configure a static route directing banking traffic through an uninspected bypass interface.
C.Configure a Decryption Exclusion / Bypass rule for specific trusted destination URL categories or domains
D.Disable all Layer 7 application inspection signatures globally for TCP port 443.
AnswerC

Decryption bypass lists permit specific sensitive domains to be excluded from SSL inspection while maintaining protection for other traffic.

Why this answer

NGFWs support SSL/TLS Decryption Exclusion (or SSL Decryption Profile exceptions) based on destination domain categories or specific URL lists, allowing traffic to pass encrypted while still applying Layer 7 application firewalls.

254
MCQhard

An enterprise network utilizes 802.1X port-based authentication with a RADIUS server. An attacker performs a port-stealing attack by spoofing the MAC address of an authenticated, active wired client to gain network access on a different switch port. Which switch security feature should be enabled to prevent this attack?

A.Implement Private VLANs (PVLANs) to isolate user switch ports from communicating with one another.
B.Configure Dynamic ARP Inspection (DAI) using the trusted DHCP snooping binding database.
C.Enable BPDU Guard and Root Guard on all designated edge switch ports.
D.Enable Port Security on access switch ports with a maximum MAC address limit of one and sticky learning.
AnswerD

Port security restricts port access to a single learned MAC address, preventing port stealing.

Why this answer

Port security on Cisco switches allows an administrator to limit the number of valid MAC addresses allowed on a port and secure it against MAC spoofing and port stealing by learning specific addresses or setting maximum limits. Additionally, Dynamic ARP Inspection (DAI) and IP Source Guard help, but port security specifically addresses MAC duplication and port stealing across switch ports.

255
Multi-Selecthard

An enterprise is securing its enterprise wireless infrastructure against unauthorized devices and wireless sniffing. Which THREE administrative and technical controls should be implemented? (Choose THREE)

Select 3 answers
A.Relying on legacy WEP shared keys for guest network isolation
B.Configuring hidden SSIDs as the primary security defense
C.Implementing IEEE 802.11w (Protected Management Frames)
D.Deploying a Wireless Intrusion Prevention System (WIPS) sensor network
E.Enabling 802.1X authentication backed by a secure RADIUS / Enterprise PKI infrastructure
AnswersC, D, E

802.11w prevents forged deauthentication and disconnection frames used in wireless attacks.

Why this answer

Enabling management frame protection, WIPS monitoring, and 802.1X enterprise authentication harden wireless networks against attacks.

256
MCQhard

An enterprise security auditor is reviewing an Elasticsearch cluster configuration. To prevent unauthorized access to stored indices containing sensitive PII and financial records, which authentication and transport layer security (TLS) settings must be enforced?

A.xpack.security.enabled: true and xpack.security.transport.ssl.enabled: true in elasticsearch.yml
B.http.cors.enabled: true and http.cors.allow-origin: "*"
C.cluster.routing.allocation.enable: all and network.host: 0.0.0.0
D.discovery.type: single-node without password configuration
AnswerA

These specific Elasticsearch configuration settings enable cluster security features and TLS encryption for transport.

Why this answer

In Elasticsearch Security (formerly X-Pack), setting xpack.security.enabled: true and xpack.security.transport.ssl.enabled: true enforces node-to-node and client-to-cluster TLS encryption and authentication.

257
Multi-Selecteasy

Which TWO of the following deployment scenarios or features are commonly associated with Network Intrusion Prevention Systems (NIPS)? (Choose two)

Select 2 answers
A.Inline placement directly in the path of network traffic flow to allow active packet dropping.
B.Passive monitoring connected exclusively to a network switch SPAN port or test access point (TAP).
C.Operating purely as a Layer 2 bridge without inspecting any network-layer or transport-layer headers.
D.Generating syslog alerts for administrative review without affecting the delivery of network traffic packets.
E.The ability to reset active TCP connections using TCP reset (RST) injections when malicious payloads are detected.
AnswersA, E

True. NIPS must be placed inline to actively prevent attacks by dropping malicious packets.

Why this answer

NIPS devices are placed inline to inspect traffic in real-time and can actively drop or block malicious packets before they reach internal targets.

258
MCQmedium

A software developer is writing a Python Flask web application that accepts file uploads from users. To prevent arbitrary file upload vulnerabilities leading to Remote Code Execution (RCE), which validation procedure must the developer implement?

A.Pass the uploaded file directly to the operating system's eval() function
B.Validate the file's magic bytes (header signature), enforce an extension whitelist, and store files outside the web root
C.Compress the uploaded file using ZIP format before saving
D.Check only the filename extension provided in the client's HTTP multipart header
AnswerB

Checking magic bytes and enforcing an extension whitelist ensures the uploaded file is genuinely of the expected type.

Why this answer

Validating the file extension against an explicit whitelist, inspecting the file's magic bytes (file signature), and storing uploaded files outside the web root with randomized filenames prevents RCE.

259
MCQmedium

A security administrator is hardening a corporate perimeter router and wants to protect the router's control plane against CPU exhaustion attacks from external flooding. Which feature should be implemented?

A.Control Plane Policing (CoPP)
B.Spanning Tree Root Guard
C.Port Security
D.Dynamic ARP Inspection (DAI)
AnswerA

CoPP applies QoS policies to control-plane traffic, preventing DoS attacks against the router CPU.

Why this answer

Control Plane Policing (CoPP) or Control Plane Protection protects the router CPU by policing management and control traffic.

260
Multi-Selecthard

A network security engineer is designing a secure enterprise wireless network architecture to mitigate modern wireless attacks. Which THREE security configurations and protocols should be mandated? (Choose THREE)

Select 3 answers
A.Open authentication with MAC address filtering
B.WPA3-Enterprise with 192-bit cryptographic strength
C.Protected Management Frames (PMF / 802.11w)
D.WEP shared key authentication for legacy device compatibility
E.Wireless Intrusion Prevention System (WIPS) for rogue AP mitigation
AnswersB, C, E

WPA3-Enterprise provides robust mutual authentication and encryption suited for secure enterprise environments.

Why this answer

WPA3-Enterprise, 802.11w (PMF), and WIPS deployment form the cornerstone of a secure enterprise wireless defense strategy.

261
Multi-Selectmedium

A cloud security auditor is reviewing a Google Cloud Platform (GCP) project for identity and access management hygiene. Which TWO security practices should be enforced to prevent unauthorized privilege escalation and credential theft? (Choose TWO)

Select 2 answers
A.Disabling Google Cloud Audit Logs to reduce storage overhead
B.Prohibiting the creation and download of user-managed service account keys where possible
C.Enforcing the principle of least privilege using predefined or custom IAM roles
D.Assigning broad primitive roles (Owner, Editor) to all project contributors
E.Sharing service account JSON keys publicly in public GitHub repositories for collaboration
AnswersB, C

User-managed service account keys can be leaked or stolen; relying on Google-managed keys or Workload Identity is safer.

Why this answer

Avoiding user-managed service account keys and adhering to the principle of least privilege by using predefined or custom IAM roles instead of primitive roles.

262
Multi-Selecthard

A cybersecurity architect is designing an enterprise Data Loss Prevention (DLP) deployment strategy across endpoint, network, and storage vectors. Which THREE technical capabilities are standard functions of enterprise storage discovery DLP tools?

Select 3 answers
A.Executing automated remediation tasks such as quarantining, encrypting, or deleting discovered sensitive files
B.Scanning file shares and NAS devices for unencrypted sensitive files (e.g., PII, financial records)
C.Inspecting live bidirectional SIP VoIP voice call streams for rogue credit card dictation
D.Querying relational databases (e.g., Oracle, SQL Server) for columns containing unprotected credit card numbers
E.Intercepting local USB thumb drive file copy operations inline on endpoints
AnswersA, B, D

Discovery DLP tools can automatically apply remediation policies to secure or remove misplaced sensitive files.

Why this answer

Storage discovery DLP tools scan repositories like file shares, databases, and cloud storage for sensitive unencrypted data at rest.

263
Multi-Selecthard

An enterprise Incident Response team is investigating a compromised endpoint using EDR telemetry and live response tools. Which THREE of the following actions can typically be performed directly from an enterprise EDR console during active triage? (Choose THREE)

Select 3 answers
A.Reflashing the physical UEFI/BIOS firmware of the endpoint motherboard
B.Rebuilding the hardware RAID controller striping configuration
C.Isolating the endpoint from the network while maintaining agent management connectivity
D.Collecting volatile memory or process execution dumps for analysis
E.Terminative malicious processes and quarantining executable files
AnswersC, D, E

Network containment is a core EDR feature to stop lateral movement.

Why this answer

Modern EDR solutions allow pulling file samples, isolating hosts from the network, and terminating malicious processes remotely.

264
MCQhard

An enterprise is implementing Zero Trust Network Access (ZTNA) for remote workers accessing cloud-hosted virtual desktops in Azure. To ensure that user identity, device compliance, and location risk are evaluated before establishing a network session, which Azure service integration should be deployed?

A.Classic RADIUS authentication server on an Azure VM
B.Azure Network Security Groups with IP source restrictions
C.Azure Application Gateway with cookie-based affinity
D.Microsoft Entra Conditional Access policies combined with Azure VPN Gateway
AnswerD

Conditional Access enforces granular access controls based on real-time security signals before permitting session establishment.

Why this answer

Microsoft Entra Conditional Access evaluates signals like user risk, device compliance, and location to enforce access controls before granting access to applications.

265
Multi-Selecthard

A network administrator is implementing defense-in-depth measures against ARP spoofing and man-in-the-middle attacks on a Cisco switched enterprise network. Which THREE switch security features should be enabled on access layer ports? (Choose three)

Select 3 answers
A.DHCP Snooping
B.Dynamic ARP Inspection (DAI)
C.EtherChannel load balancing using source-destination MAC hashing
D.IP Source Guard
E.Port Aggregation Protocol (PAgP)
AnswersA, B, D

DHCP snooping builds a trusted binding database used by DAI and IP Source Guard.

Why this answer

To mitigate layer 2 ARP and MAC manipulation attacks, administrators use DHCP snooping, Dynamic ARP Inspection (DAI), and IP Source Guard.

266
MCQhard

An attacker performs a pass-the-hash attack to move laterally across an enterprise network using compromised NTLM hashes. The security architecture team wants to implement host-based mitigations to render harvested NTLM hashes unusable for authentication. Which Windows security feature should be enabled?

A.Enforce User Account Control (UAC) with highest privilege elevation prompts.
B.Enable Windows Defender Credential Guard utilizing Virtualization-based Security (VBS).
C.Configure Windows Defender Exploit Guard with Network Protection enabled.
D.Deploy BitLocker Drive Encryption with TPM 2.0 hardware backing on all endpoints.
AnswerB

Credential Guard isolates NTLM hashes and Kerberos tickets in a secure virtualized environment.

Why this answer

Credential Guard utilizes virtualization-based security (VBS) to isolate secrets (such as NTLM hashes and Kerberos tickets) so that they cannot be stolen or reused even if the LSASS process is compromised.

267
MCQhard

An organization is hardening Android enterprise devices and wants to prevent users from installing applications from unknown sources while ensuring corporate apps update automatically. Which policy configuration in the EMM/MDM console achieves this?

A.Configuring devices in personal use profile mode
B.Disabling installation from unknown sources and enforcing Managed Google Play accounts
C.Disabling factory reset protection (FRP)
D.Enabling USB debugging mode for all users
AnswerB

Blocking unknown sources prevents sideloading, while Managed Google Play handles curated app distribution and updates.

Why this answer

Disabling 'Unknown Sources' (installations from outside Google Play) combined with forcing Google Play managed accounts ensures secure app management.

268
MCQhard

An organization is implementing ISO/IEC 27001 Annex A controls regarding operations security. Specifically, control A.12.4.1 (Event Logging) requires event logs recording user activities, exceptions, and information security events to be produced, kept, and regularly reviewed. Which automated practice best satisfies regular log review governance?

A.Disabling log verbosity to prevent storage overhead on the central syslog collector
B.Exporting raw log text files to an unindexed USB drive stored in a desk drawer once per quarter
C.Relying entirely on end users to manually report anomalous log entries via email
D.Integrating logs into a SIEM platform with automated alert correlation and daily analyst review workflows
AnswerD

SIEM centralization and analyst workflows satisfy active log review governance requirements.

Why this answer

Deploying a SIEM with automated correlation rules and scheduled analyst reviews ensures continuous oversight of security event logs.

269
MCQeasy

An administrator needs to secure management access to Azure virtual machines by eliminating open management ports (such as RDP port 3389 and SSH port 22) on the public internet. Which Azure feature should be configured?

A.Azure Bastion
B.Azure VPN Gateway with point-to-site configuration
C.Azure Load Balancer with TCP reset enabled
D.Azure Front Door with Web Application Firewall
AnswerA

Azure Bastion provides secure RDP and SSH access over TLS to VMs without needing public IPs.

Why this answer

Azure Bastion is a fully managed PaaS service that provides secure and seamless RDP/SSH connectivity to VMs directly over SSL (port 443) without public IP addresses on the VMs.

270
MCQmedium

A CND analyst is deploying a centralized Security Information and Event Management (SIEM) solution. To enable proactive threat hunting and rapid incident detection across distributed network segments, what is the primary function of deploying forwarders or agents on endpoints?

A.To locally compress, encrypt, and forward normalized log telemetry to the central SIEM collector
B.To act as a stateful firewall blocking unauthorized inbound and outbound network packets on the host
C.To perform full disk encryption key escrow and manage endpoint certificate lifecycles
D.To automatically execute remediation scripts and isolate compromised endpoints without human intervention
AnswerA

SIEM agents collect, parse, and securely stream telemetry and logs from the host operating system to the central SIEM engine.

Why this answer

SIEM forwarders or agents installed on endpoints collect local event logs (such as Windows Security logs or Linux auditd logs), normalize them, and securely transmit them to the central SIEM collector for correlation, analysis, and alerting without requiring direct remote administrative shares.

271
MCQhard

An enterprise firewall is experiencing asymmetric routing where TCP SYN packets enter through Firewall A, but the return SYN-ACK packets exit through Firewall B due to dynamic routing changes. What firewall feature must be enabled to synchronize connection state tables between Firewall A and Firewall B and prevent connection drops?

A.Strict TCP handshake validation
B.Unicast RPF (Reverse Path Forwarding)
C.Stateful Session Synchronization (Cluster State Sync)
D.NAT hairpinning
AnswerC

Session synchronization shares active session tables across firewalls to handle asymmetric routing.

Why this answer

Stateful firewalls require session synchronization (such as Cisco Stateful Failover or Palo Alto HA session sync) to share connection state tables across cluster nodes in asymmetric paths.

272
MCQeasy

A Chief Information Security Officer (CISO) needs to present an executive summary of current network risks to the board of directors. Which metric is most effective for communicating financial exposure resulting from potential network security breaches?

A.Annualized Loss Expectancy (ALE)
B.Packet drop rate on enterprise core firewalls
C.Common Vulnerability Scoring System (CVSS) base score
D.Active directory domain controller CPU utilization
AnswerA

ALE calculates the expected yearly financial loss due to security risks, making it ideal for executive boards.

Why this answer

Single Loss Expectancy (SLE) and Annualized Loss Expectancy (ALE) translate technical risks into business financial terms.

273
MCQhard

An attacker targets an enterprise Active Directory domain by performing a DCSync attack, successfully replicating domain controller password data without being a domain controller. Which Active Directory access control rights must be audited and protected to prevent non-administrative users from executing DCSync?

A.Audit and restrict the 'Replicating Directory Changes' and 'Replicating Directory Changes All' extended access rights on the domain object.
B.Enforce LDAP signing and channel binding on all domain controller NTDS settings.
C.Monitor the 'GenericAll' and 'WriteDacl' permissions on all computer account objects.
D.Disable NT LAN Manager (NTLM) authentication and enforce Kerberos ticket granting settings.
AnswerA

DCSync requires these specific domain-level replication rights to impersonate a domain controller.

Why this answer

DCSync relies on specific Active Directory replication rights: 'Replicating Directory Changes' (GUID 11f46d12-861c-4d42-b41c-50f443a82f7f) and 'Replicating Directory Changes All'. Ensuring that only authorized Domain Controllers hold these extended rights is critical.

274
MCQmedium

An incident responder needs to capture a forensically sound image of a Windows workstation's disk. Which command-line tool can create a bit-stream disk image while calculating a cryptographic hash simultaneously?

A.diskpart clean
B.dc3dd
C.chkdsk /f /r
D.sfc /scannow
AnswerB

dc3dd is a patched version of dd that includes hashing (MD5/SHA) on-the-fly during acquisition for digital forensics.

Why this answer

The 'dc3dd' or 'dd' command (or specialized tools like FTK Imager) can image disks and generate hashes, but dc3dd is specifically enhanced for digital forensics with hash verification.

275
MCQmedium

A security analyst needs to configure Snort to generate an alert whenever an inbound packet matches a specific rule condition, without blocking the traffic. Which rule action keyword should be used in the Snort configuration file?

A.sdrop
B.reject
C.drop
D.alert
AnswerD

Alert generates a notice and logs the packet while permitting traffic to flow.

Why this answer

The 'alert' action tells Snort to generate an alert and log the packet, allowing traffic to pass.

276
MCQmedium

An organization is conducting a mandatory security audit for PCI-DSS compliance regarding its cardholder data environment (CDE). The auditor asks for proof of network segmentation. What should the network security administrator present?

A.Antivirus signature update logs from all workstation endpoints.
B.Software asset inventory spreadsheets listing operating system versions.
C.Architecture diagrams and firewall rulebases demonstrating that out-of-scope networks cannot reach the CDE without strict filtering.
D.HR onboarding records showing background checks for all employees with physical access to the building.
AnswerC

PCI-DSS requires documented network diagrams and rule verification showing that cardholder data systems are isolated from flat corporate networks.

Why this answer

To prove PCI-DSS network segmentation, administrators must present current network diagrams showing firewalls effectively isolating the CDE from out-of-scope networks, along with the results of effective penetration testing confirming that isolation.

277
MCQeasy

An enterprise is drafting an Acceptable Use Policy (AUP) for employee internet and device usage. Which element is essential to include in the policy document to ensure enforceability?

A.The vendor part numbers and firmware release schedules for core network switches.
B.The exact physical coordinates and lock combinations of the server room cages.
C.Explicit notification that network activity is monitored and clear disciplinary actions for violations.
D.Detailed command-line instructions for configuring IPsec VPN tunnels on remote laptops.
AnswerC

Users must be informed of monitoring and the specific penalties for non-compliance for the policy to be legally and organizationally enforceable.

Why this answer

An AUP must explicitly state the consequences of policy violations and inform users that their activities on company assets are subject to monitoring.

278
MCQmedium

An organization is establishing forensic readiness for critical database servers. Which technical control directly supports forensic readiness by ensuring volatile RAM contents can be preserved during a suspected live kernel attack?

A.Ensuring kernel crash dumps are enabled and a trusted memory acquisition utility like LiME is pre-staged
B.Configuring automatic disk encryption using BitLocker with a TPM chip
C.Deploying a Host-Based Intrusion Detection System (HIDS) for file integrity monitoring
D.Enabling centralized syslog forwarding over encrypted TLS channels
AnswerA

Pre-staging memory acquisition ensures volatile system state can be captured forensically.

Why this answer

Pre-installed memory acquisition tools or kernel crash dump configurations enable capturing volatile RAM before a reboot.

279
Multi-Selecthard

A security team is conducting a penetration test against a corporate network and attempts a Man-in-the-Middle (MitM) attack using ICMP redirection and IPv6 Router Advertisement (RA) spoofing. Which THREE network controls effectively mitigate these specific local network redirection attacks? (Choose three)

Select 3 answers
A.Disabling ICMP redirect processing on host operating systems and core routers
B.Enabling IPv6 RA Guard on switch access ports to drop rogue router advertisements
C.Enabling Spanning Tree PortFast across all trunk ports
D.Enabling SNMPv1 community strings on all perimeter routing devices
E.Implementing source address validation and uRPF (Unicast Reverse Path Forwarding)
AnswersA, B, E

Disabling ICMP redirects prevents hosts from modifying their routing tables based on forged packets.

Why this answer

To defend against router advertisement spoofing and ICMP redirection attacks, administrators use RA Guard, ICMP redirect filtering, and secure switch port configurations.

280
MCQeasy

An organization is experiencing a ransomware outbreak on an endpoint. The Incident Response team decides to immediately disconnect the infected machine from the network without shutting it down, in order to preserve volatile memory. Which EDR feature should the responder trigger?

A.Disk Defragmentation
B.Remote Device Wipe
C.Remote Host Isolation / Network Containment
D.Cloud Sandbox Submission
AnswerC

Host isolation cuts off lateral network traffic while allowing the EDR management console to communicate with the agent for forensics.

Why this answer

EDR platforms include network isolation capabilities that sever network connectivity to the endpoint while maintaining remote management connectivity for the security team.

281
MCQmedium

An organization wants to deploy a low-interaction honeypot that mimics common vulnerable network services (like SSH, Telnet, and FTP) to quickly log unauthorized login attempts and brute-force attacks. Which open-source tool is best suited for this task?

A.Wireshark
B.Metasploit
C.Cowrie
D.Nmap
AnswerC

Cowrie is a dedicated SSH and Telnet honeypot designed to log attacker interactions and brute-force attempts.

Why this answer

Cowrie is a medium-to-high interaction SSH/Telnet honeypot designed to log brute-force attacks and shell interaction. (Alternatively, Honeyd emulates multiple hosts/services). Let's evaluate options.

282
MCQmedium

A security manager is updating the corporate Acceptable Use Policy (AUP). To address emerging cloud collaboration tools, which specific section should be revised to regulate employee data sharing on external platforms?

A.Physical Security Controls
B.User Responsibilities and Data Sharing
C.Disaster Recovery Protocols
D.Network Infrastructure Redundancy
AnswerB

This section governs how employees handle and transfer corporate data to external platforms.

Why this answer

The Acceptable Use Policy (AUP) explicitly defines what employees can and cannot do using company hardware and networks, including cloud collaboration tools.

283
MCQmedium

A security analyst is reviewing vulnerability assessment reports for a fleet of Windows endpoints and notes that third-party software (such as browsers and PDF readers) accounts for most missing patches. Which deployment strategy should the organization implement to streamline third-party patch management?

A.Manually download and install MSI installers via local administrator logon scripts
B.Disable all third-party software on endpoints
C.Rely exclusively on Microsoft Windows Update for Business
D.Integrate third-party software patch catalogs into MECM or a dedicated Patch Management tool
AnswerD

Integrating third-party catalogs enables centralized automated deployment of application updates alongside OS patches.

Why this answer

Modern endpoint management and EDR/patch tools integrate third-party catalog feeds to automatically package and push vendor patches to endpoints.

284
MCQeasy

During an internal network security audit, an auditor needs to verify that administrative accounts are not sharing credentials. Which compliance artifact should the auditor inspect to validate individual accountability?

A.BGP Routing Table Summaries
B.Active Directory Account Access Logs and Group Memberships
C.Network Switch Port VLAN Assignments
D.DNS Zone File Configurations
AnswerB

Inspecting AD confirms whether distinct named accounts are assigned instead of shared generic logins.

Why this answer

Account management policies and access control lists detailing individual named accounts versus shared accounts are required for individual accountability.

285
MCQeasy

An administrator needs to configure a Linux firewall using UFW (Uncomplicated Firewall) to allow incoming SSH traffic from a specific subnet (192.168.100.0/24). Which command should be executed?

A.ufw enable 192.168.100.0/24
B.ufw allow from 192.168.100.0/24 to any port 22 proto tcp
C.ufw deny ssh
D.ufw route allow 22
AnswerB

This command correctly restricts SSH access to the specified subnet.

Why this answer

The ufw allow command accepts rules specifying source subnets and ports.

286
MCQeasy

What is the primary function of a Demilitarized Zone (DMZ) bastion host?

A.To serve as the primary domain controller for the internal enterprise network.
B.To store encrypted backups of internal databases.
C.To bridge wireless clients directly to the wired core.
D.To act as a hardened, single-purpose server exposed to the internet in a DMZ.
AnswerD

Bastion hosts are hardened systems placed on the perimeter to handle untrusted connections.

Why this answer

A bastion host is a hardened computer specifically designed and configured to withstand attacks while facing the public internet.

287
MCQeasy

An organization wants to secure data in transit between microservices communicating within a Kubernetes cluster. Which service mesh technology provides mutual TLS (mTLS) encryption automatically between service pods without modifying application code?

A.Kubernetes Ingress Controller with basic HTTP routing
B.Istio with Envoy sidecar proxies enforcing automatic mTLS
C.Docker Swarm overlay networking with IPsec tunneling
D.Apache ZooKeeper configuration management service
AnswerB

Istio uses Envoy sidecars to transparently encrypt service-to-service traffic using mTLS.

Why this answer

Istio (or Linkerd) is a service mesh that injects sidecar proxies (like Envoy) to automatically handle mutual TLS (mTLS) between Kubernetes pods.

288
Multi-Selectmedium

A network administrator is configuring secure remote access for employees. The security policy mandates that the remote access solution must support multi-factor authentication (MFA) and encrypt all traffic from the client device. Which TWO technologies or protocols can meet these requirements? (Choose two)

Select 2 answers
A.Unencrypted Telnet management session over port 23
B.Unauthenticated PPTP remote dial-up connection
C.SSL/TLS-based VPN (e.g., OpenVPN or AnyConnect) integrated with an identity provider for MFA
D.Standard HTTP web browsing to internal unencrypted portals
E.IPsec VPN client software configured with IKEv2 and certificate/MFA authentication
AnswersC, E

SSL/TLS VPNs encrypt traffic and integrate with modern MFA identity providers.

Why this answer

IPsec VPNs and SSL/TLS VPNs are both industry-standard remote access solutions that encrypt all traffic and integrate with AAA/MFA servers (like RADIUS/TACACS+ or SAML) to enforce multi-factor authentication.

289
MCQeasy

A security practitioner is deploying an intrusion prevention system (IPS) rule to detect XML External Entity (XXE) injection attacks in HTTP POST requests. Which core feature of an XML parser is being abused in an XXE attack and must be disabled?

A.Support for HTTP chunked transfer encoding
B.Support for UTF-8 character encoding
C.Support for JSON serialization and deserialization
D.Support for Document Type Definitions (DTDs) and external entity references
AnswerD

Disabling DTDs and external entity loading in XML parsers prevents XXE vulnerabilities.

Why this answer

XXE attacks exploit vulnerable XML parsers that permit the parsing of Document Type Definitions (DTDs) containing external entity references.

290
Multi-Selecthard

An organization is implementing database transparent data encryption (TDE) and needs to understand its architectural security boundaries. Which THREE security characteristics or limitations are true regarding TDE?

Select 3 answers
A.TDE does not protect data in memory (RAM) or prevent authorized database users/administrators with SELECT privileges from viewing decrypted data
B.TDE prevents SQL injection attacks by automatically sanitizing all incoming query parameters
C.TDE does not protect data in transit across the network between client applications and the database server
D.TDE encrypts database data files, log files, and backups at rest on storage media
E.TDE eliminates the need for database user access controls and role-based permissions
AnswersA, C, D

Once data is loaded into memory or accessed by authenticated users, TDE does not restrict query visibility.

Why this answer

TDE protects data at rest on disk and backup files, but does not protect data in transit or data accessed in memory while the database is running.

291
MCQhard

An enterprise is deploying a zero-trust architecture for its AWS cloud workloads. Services must communicate across VPCs without exposing traffic to the public internet or traversing VPC peerings that open full subnet access. Which feature should be implemented?

A.AWS Client VPN with split tunneling disabled
B.AWS PrivateLink with Interface VPC Endpoints
C.AWS Direct Connect Gateway with transit VIF
D.Inter-Region VPC Peering with restrictive Network Security Groups
AnswerB

AWS PrivateLink uses interface endpoints powered by HyperVNI to securely expose specific services across VPCs without VPC peering.

Why this answer

AWS PrivateLink provides private connectivity between VPCs, services, and on-premises applications securely without exposing traffic to the public internet.

292
MCQmedium

An enterprise network uses an Intrusion Detection System (IDS) deployed in passive monitoring mode via a switch span port. The security operations center (SOC) notices that the IDS generates high volumes of alerts for internal vulnerability scanning activities, obscuring real attacks. Which network design modification should be implemented to reduce false positive alert fatigue without disabling the detection signatures?

A.Upgrade the IDS hardware to process higher bandwidth capacity
B.Convert the IDS into an inline IPS
C.Tune the IDS sensor signature policies to exclude the internal vulnerability scanner's source IP addresses
D.Move the IDS from a switch SPAN port to an inline routing position
AnswerC

Excluding authorized scanning IPs or creating suppression rules for known administrative scans is the correct tuning method to reduce alert fatigue.

Why this answer

Tuning or relocating the IDS sensor by filtering out authorized internal scanner source IPs from the monitoring profile or moving the span port configuration to exclude trusted management subnets reduces false positives. Alternatively, tuning the signature rules to whitelist specific source IPs is standard practice.

293
Multi-Selectmedium

A network administrator is hardening a Cisco switch infrastructure against Layer 2 attacks. Which THREE features should be enabled and configured on the access and distribution layers? (Choose THREE)

Select 3 answers
A.Dynamic ARP Inspection (DAI) leveraging the DHCP snooping database to drop spoofed ARP packets.
B.Border Gateway Protocol (BGP) Route Flap Damping to stabilize wide-area inter-domain routing.
C.Port Security to limit the number of learned MAC addresses per switch port and specify violation actions.
D.Web Application Firewall (WAF) rule sets for HTTP parameter parsing and inspection.
E.DHCP Snooping to maintain a binding database of legitimate IP-to-MAC addresses and block rogue DHCP servers.
AnswersA, C, E

DAI prevents ARP spoofing and poisoning attacks.

Why this answer

Layer 2 hardening includes Port Security (limiting MAC addresses), DHCP Snooping (blocking rogue DHCP), and Dynamic ARP Inspection (stopping ARP poisoning).

294
MCQmedium

An organization's security policy requires that all remote workers connect to the corporate network via a VPN that routes all client internet traffic through the corporate data center security stack. Which type of VPN architecture must the remote client be configured to use?

A.Clientless SSL VPN
B.Full-tunnel VPN
C.Split-tunnel VPN
D.Transport mode IPsec VPN
AnswerB

A full-tunnel VPN forces all user traffic through the corporate security gateway, satisfying the requirement to inspect all internet traffic.

Why this answer

A Full-Tunnel VPN routes all client traffic through the encrypted VPN tunnel to the corporate gateway, regardless of whether the destination is internal or on the public internet.

295
Multi-Selecthard

An Incident Response team analyzing an enterprise endpoint discovers evidence of a fileless malware attack leveraging Windows Management Instrumentation (WMI). Which THREE of the following WMI artifacts or logging mechanisms should the investigator examine? (Choose THREE)

Select 3 answers
A.Microsoft-Windows-WMI-Activity/Operational event log (Event ID 5858 and related operational events)
B.PowerShell script block logging (Event ID 4104) capturing WMI class instantiations (e.g., [wmiclass])
C.The Master Boot Record (MBR) partition table sectors
D.The system HOSTS file in \Windows\System32\drivers\etc\
E.WMI permanent event subscriptions located in the \root\subscription namespace (EventFilters, EventConsumers, FilterToConsumerBindings)
AnswersA, B, E

WMI operational logs track activity, queries, and failures useful for detecting malicious WMI scripting.

Why this answer

WMI persistence involves permanent event subscriptions (filters, consumers, and bindings) logged in specific WMI namespaces and event channels.

296
MCQeasy

An organization wants to deploy a wireless intrusion prevention system (WIPS) sensor to detect unauthorized access points and rogue devices broadcasting corporate SSIDs. Where should the WIPS sensor be deployed?

A.Installed directly on the core router's uplink interface facing the ISP
B.Configured as a virtual machine inside the cloud data center hypervisor cluster
C.Attached as a tap on the primary corporate database server's storage area network (SAN)
D.Distributed across the physical office space as dedicated RF monitoring sensors or dual-band access points
AnswerD

Dedicated WIPS sensors or access points with scanning radios are placed throughout facilities to capture wireless frames across all channels.

Why this answer

WIPS sensors should be distributed throughout the physical office space to effectively monitor all 802.11 radio frequency channels and detect rogue access points or ad-hoc connections.

297
Multi-Selectmedium

An auditor is evaluating an organization's compliance with ISO/IEC 27001 Annex A physical and environmental security controls. Which THREE security measures should the auditor expect to find implemented in the primary data center? (Choose three)

Select 3 answers
A.Storing unencrypted paper backup tapes containing sensitive customer PII in unlocked office hallways
B.Environmental monitoring sensors tracking temperature and humidity thresholds
C.Visitor management logs requiring identification verification and escort protocols
D.Biometric or electronic card-key access control systems logging all entry and exit events
E.Leaving data center exterior emergency exit doors propped open for convenient cooling
AnswersB, C, D

Environmental controls protect hardware from thermal and moisture damage.

Why this answer

Data center physical security requires visitor logs, biometric or badge access controls, and environmental monitoring systems.

298
MCQhard

A network defense administrator is reviewing security baselines using the Center for Internet Security (CIS) Benchmarks. A particular benchmark rule requires disabling the LLMNR (Link-Local Multicast Name Resolution) protocol on Windows domain member servers. Which security risk does this policy directly mitigate?

A.SQL injection vulnerabilities in web application forms
B.LLMNR/NBT-NS poisoning and credential relay attacks
C.BGP prefix hijacking and route table poisoning
D.DNS zone transfer enumeration via nslookup
AnswerB

Disabling LLMNR prevents attackers from intercepting name resolution queries to capture hashes.

Why this answer

Disabling LLMNR and NBT-NS mitigates spoofing and responder attacks (such as LLMNR/NBT-NS poisonings) used to capture NTLMv2 password hashes.

299
MCQhard

An attacker attempts a Kerberoasting attack by requesting a Service Ticket (TGS) for a service account running with a Service Principal Name (SPN) from a compromised domain user account, then attempts to crack the service account's password offline. Which security hardening practice should be implemented in Active Directory to mitigate this risk?

A.Implement SMB signing enforcement and disable NTLMv1 authentication protocol.
B.Deploy Group Managed Service Accounts (gMSAs) and enforce strong, complex passwords (minimum 25 characters) for all service accounts.
C.Configure Account Lockout Policies to lock accounts after three failed login attempts.
D.Enable Kerberos pre-authentication requirement on all domain user and computer accounts.
AnswerB

gMSAs eliminate manual password management and use automatic, complex, frequently rotated passwords.

Why this answer

Kerberoasting targets service accounts with weak passwords. Mitigation involves enforcing strong, complex passwords (12+ characters) or utilizing Group Managed Service Accounts (gMSAs), which automatically manage complex passwords and rotate them frequently.

300
MCQhard

An organization implements IEEE 802.1X port-based authentication across its enterprise switch infrastructure. A new IP security camera is connected to a switch port, but it does not support 802.1X supplicant software. How should the network administrator configure the switch port to authenticate and isolate the camera securely?

A.Configure the port as an 802.1X trunk port with automatic supplicant fallback enabled.
B.Place the port in an open dynamic VLAN using unauthenticated guest access without any RADIUS lookup.
C.Disable spanning-tree protocol (STP) on the port to allow unauthenticated legacy device association.
D.Configure MAC Authentication Bypass (MAB) with a specific device profiling and authorization profile on the RADIUS server.
AnswerD

MAB allows devices lacking 802.1X software to be authenticated based on their MAC address against a backend RADIUS/ISE server.

Why this answer

For non-supplicant devices like IoT equipment, switch ports can be configured with MAC Authentication Bypass (MAB), which uses the device's MAC address as credentials against a RADIUS server, combined with a restricted VLAN.

Page 3

Page 4 of 5

Page 5

All pages