Courseiva

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

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

Page 2

Page 3 of 5

Page 4
151
Multi-Selectmedium

Which TWO configuration steps are typically required when deploying a firewall in Transparent (Layer 2) mode rather than Routed (Layer 3) mode? (Choose TWO)

Select 2 answers
A.Assigning Layer 3 IP addresses to every data interface participating in packet routing
B.Configuring dynamic BGP peering on all client-facing ports
C.Removing all security rules since Layer 2 devices cannot filter traffic
D.Configuring a management IP address on a management interface or BVI (Bridge Virtual Interface) for device access
E.Placing the bridged interfaces into a common bridge group or zone
AnswersD, E

A management IP is needed to administer the firewall remotely.

Why this answer

In transparent mode, the firewall acts like a bridge, requiring bridge group interfaces and management IP addresses for administration.

152
MCQmedium

A cybersecurity analyst is auditing a Linux server running Apache Tomcat. To prevent attackers from exploiting directory traversal vulnerabilities to download sensitive configuration files from outside the web root, which Tomcat configuration parameter must be properly configured in server.xml?

A.Set crossContext="true" in the Host configuration
B.Set allowLinking="false" in the Context element of server.xml
C.Set debug="9" and swallowOutput="false"
D.Configure Enterprise Security Manager (ESM) connector bindings
AnswerB

Setting allowLinking to false prevents Tomcat from following symbolic links that could point to sensitive files outside the web root.

Why this answer

The allowLinking attribute or docBase security restrictions in Tomcat control whether symbolic links outside the web app base can be followed. Additionally, the privileged context setting manages administrative access.

153
MCQmedium

A security analyst is hardening an enterprise Microsoft Exchange email server and needs to prevent Server-Side Request Forgery (SSRF) and insecure deserialization attacks targeting Exchange web components. Which security control or update management practice is most critical?

A.Configuring an IIS URL Rewrite rule to block GET requests
B.Disabling Outlook Web Access (OWA) entirely for all users
C.Enabling Basic Authentication across all virtual directories
D.Applying the latest Microsoft Exchange Cumulative Updates (CUs) and security patches
AnswerD

Vendor patches are the primary remediation for software flaws like SSRF and deserialization in Exchange.

Why this answer

Applying the latest cumulative updates (CUs) and security patches provided by Microsoft Exchange team is critical because Exchange vulnerabilities like ProxyLogon and ProxyShell stem from unpatched Exchange web services.

154
Multi-Selecthard

An incident responder is investigating a suspected data exfiltration incident over encrypted channels. Which THREE network artifacts or telemetry sources should the analyst inspect to identify malicious TLS traffic anomalies? (Choose THREE)

Select 3 answers
A.Plaintext passwords extracted from HTTPS payload bodies
B.Raw ICMP echo payload strings
C.Server Name Indication (SNI) fields in the TLS Client Hello message
D.JA3 and JA3S TLS cryptographic handshaking fingerprints
E.X.509 digital certificate metadata (issuer, validity dates, self-signed status)
AnswersC, D, E

The SNI field is sent in plaintext during the TLS handshake, revealing the target domain name.

Why this answer

Analyzing TLS traffic involves inspecting certificate validity, JA3/JA3S client fingerprints, and SNI fields.

155
MCQmedium

An organization is setting up a high-availability perimeter firewall pair. Which protocol is commonly utilized to provide seamless failover by sharing a virtual IP address between the active and standby firewalls?

A.RADIUS
B.VRRP (Virtual Router Redundancy Protocol)
C.BGP (Border Gateway Protocol)
D.DHCP (Dynamic Host Configuration Protocol)
AnswerB

VRRP allows multiple routers/firewalls to share a virtual IP address for automatic failover.

Why this answer

VRRP (Virtual Router Redundancy Protocol) and HSRP are standard redundancy protocols used to provide virtual IP failover.

156
MCQhard

An internal security assessment reveals that an attacker with access to a low-privilege domain user account can enumerate Active Directory group memberships and trust relationships using LDAP. To secure Active Directory against anonymous and excessive unauthenticated enumeration, which specific Active Directory feature and setting should be configured?

A.Enable Kerberos AES encryption enforcement and disable DES/RC4 ciphers.
B.Deploy fine-grained password policies requiring 15-character complex passphrases.
C.Configure Active Directory Certificate Services (AD CS) with ESC1 template restrictions.
D.Restrict anonymous access to the RootDSE and disable anonymous LDAP queries via Group Policy.
AnswerD

Restricting RootDSE access and anonymous binds stops unauthorized harvesting of directory metadata.

Why this answer

Disabling anonymous LDAP binds and restricting access to the root DSE (Directory System Agent) ensures that unauthenticated or low-privilege users cannot harvest directory structure and membership data.

157
MCQhard

A security engineer is performing threat hunting on Linux servers to detect hidden rootkits modifying system call tables. Which tool is specifically designed to check for Linux kernel module tampering and hidden processes by comparing user-space output with kernel-space data structures?

A.Autopsy
B.Cisco Firepower
C.Volatility
D.Rkhunter (Rootkit Hunter)
AnswerD

Rkhunter scans Linux systems for rootkits, backdoors, and local exploits by checking hidden files and modified binaries.

Why this answer

Chkrootkit and Rootkit Hunter (Rkhunter) are standard tools used on Linux to scan for rootkits, backdoors, and local exploits.

158
MCQeasy

A security engineer is configuring a Web Application Firewall (WAF) to protect an online banking portal. The WAF must detect and drop HTTP requests containing patterns typical of SQL injection attacks before they reach the web server. What category of WAF protection rule is being utilized?

A.TCP handshake stateful inspection
B.Behavioral anomaly machine learning baseline profiling
C.Data Loss Prevention (DLP) pattern matching
D.Signature-based detection rules
AnswerD

Signature-based rules compare incoming request components against known malicious patterns and signatures.

Why this answer

Signature-based or pattern-matching rules in a WAF inspect HTTP traffic for known signatures and attack patterns (such as SQL injection or XSS strings).

159
Multi-Selectmedium

An organization's security team is designing a defense-in-depth network architecture to protect critical internal data zones. Which THREE architectural principles and controls should be implemented to align with an adaptive defense strategy? (Choose THREE)

Select 3 answers
A.Deploy behavioral anomaly detection and Endpoint Detection and Response (EDR) solutions across all internal endpoints.
B.Disable all logging and auditing mechanisms to reduce SIEM ingestion noise and storage costs.
C.Enforce a Zero Trust Architecture (ZTA) utilizing continuous identity and device health verification for all access requests.
D.Implement micro-segmentation using internal next-generation firewalls or software-defined networking to isolate critical data assets.
E.Rely exclusively on a strong perimeter firewall and demilitarized zone (DMZ) to secure internal assets.
AnswersA, C, D

EDR and behavioral analytics provide critical visibility and detection capabilities inside the network.

Why this answer

Adaptive defense-in-depth relies on micro-segmentation, Zero Trust network architecture (never trust, always verify), and continuous monitoring/behavioral analytics rather than relying solely on a single perimeter firewall.

160
MCQmedium

An enterprise security team needs to deploy a Snort rule that detects an HTTP GET request containing a specific directory traversal string (../../etc/passwd). Which rule header and options structure correctly formats this signature?

A.log icmp any any -> any any (msg:"ICMP Ping Detected"; itype:8; sid:1000003;)
B.drop udp external any -> $HOME_NET 53 (content:"passwd"; sid:1000002;)
C.alert tcp any any -> any 80 (msg:"Directory Traversal Attempt"; content:"../../etc/passwd"; sid:1000001; rev:1;)
D.pass ip any any -> any any (content:"GET /index.html"; sid:1000004;)
AnswerC

This rule correctly specifies the alert action, TCP protocol, HTTP port, and signature content.

Why this answer

Snort rules require an action (alert), protocol (tcp), source/destination IPs and ports, and payload options (content).

161
MCQeasy

A security engineer is configuring a Snort Intrusion Prevention System (IPS) rule to detect ICMP echo requests with payloads larger than 1000 bytes, which may indicate covert channel data exfiltration. Which rule header and options combination is correct?

A.log ip any any -> any any (msg:"ICMP Check"; length:1000; sid:1000001; rev:1;)
B.alert icmp any any -> any any (msg:"Large ICMP Payload Detected"; dsize:>1000; sid:1000001; rev:1;)
C.drop tcp any any -> any 80 (msg:"ICMP Large Payload"; payload_size:>1000; sid:1000001; rev:1;)
D.pass udp any any -> any 53 (msg:"ICMP Alert"; size:1000; sid:1000001; rev:1;)
AnswerB

This rule correctly specifies ICMP protocol and uses the dsize option to flag payloads over 1000 bytes.

Why this answer

A correct Snort rule structure requires the action (alert/drop), protocol (icmp), source/destination IPs and ports, and options such as dsize:1000 to check packet payload size.

162
MCQmedium

An administrator is deploying a Snort 3 Intrusion Detection System on an enterprise gateway segment. To detect a specific exploit payload containing the exact ASCII string \x41\x41\x41\x41 without relying on preprocessors, which rule option should be implemented?

A.content:"|41 41 41 41|";
B.pattern:"AAAA";
C.search:"AAAA";
D.payload_match:"\x41\x41\x41\x41";
AnswerA

The pipe syntax |41 41 41 41| allows Snort to match the exact hex byte sequence representing four 'A' characters.

Why this answer

The content rule option in Snort is used to search for specific payload patterns, including hexadecimal byte sequences enclosed in pipe symbols or standard ASCII strings.

163
MCQhard

An enterprise cloud architect is configuring Google Cloud VPC Network Service Tiers to optimize cost and security for sensitive internal database traffic. Which service tier should be selected to ensure traffic stays entirely within Google's private global backbone network without touching the public internet?

A.Premium Tier Network Routing
B.Hybrid Tier Routing via Cloud Interconnect
C.Public IP Tier with SSL offloading
D.Standard Tier Network Routing
AnswerA

Premium tier uses Google's private global network backbone for enhanced security, performance, and reliability.

Why this answer

Google Cloud Premium Tier routes traffic over Google's private global network backbone, whereas Standard Tier uses public transit peering.

164
MCQmedium

A security engineer is configuring mobile device management (MDM) for corporate-owned iOS devices. To prevent users from installing unauthorized apps while still allowing access to enterprise applications, which feature should be deployed?

A.Apple Configurator tethered supervision only
B.Managed Open In restriction
C.Volume Purchase Program (VPP) with Managed Distribution
D.Enterprise App Sideloading via Developer Profiles
AnswerC

VPP with managed distribution allows silent installation and revocation of app licenses without user Apple IDs.

Why this answer

Managed Apple ID combined with a restricted app list or configuring a curated App Store layout via MDM achieves controlled application deployment.

165
Multi-Selectmedium

An organization is enforcing device hardening standards across all corporate laptops. Which TWO of the following controls should be implemented to secure client endpoints against physical and BIOS/UEFI tampering? (Choose TWO)

Select 2 answers
A.Setting a strong UEFI/BIOS administrator password to prevent unauthorized configuration changes
B.Leaving the physical chassis intrusion detection switch disconnected
C.Configuring the boot order to prioritize booting from unverified USB flash drives first
D.Enabling UEFI Secure Boot to prevent unauthorized bootloaders and rootkits
E.Disabling Trusted Platform Module (TPM) activation across all systems
AnswersA, D

A BIOS password prevents attackers from altering boot orders, disabling virtualization, or bypassing security settings.

Why this answer

Securing firmware requires enabling Secure Boot and setting a strong BIOS/UEFI administrator password.

166
MCQeasy

A security team receives alerts indicating that an attacker is performing ARP cache poisoning on the local subnet to conduct a Man-in-the-Middle (MitM) attack. Which switch feature should the network administrator enable to mitigate this threat?

A.Enable Dynamic ARP Inspection (DAI) bound to the DHCP snooping database.
B.Activate Unicast Reverse Path Forwarding (uRPF) on the default gateway router.
C.Deploy IEEE 802.1Q VLAN trunking with native VLAN mismatch remediation.
D.Configure Port Fast and BPDU Guard on all access-layer switch interfaces.
AnswerA

DAI validates ARP packets against the DHCP snooping table to drop spoofed ARP frames.

Why this answer

DHCP snooping builds a trusted binding database of IP-to-MAC addresses. Dynamic ARP Inspection (DAI) uses this DHCP snooping database to intercept, log, and discard ARP packets with invalid IP-to-MAC address bindings, effectively stopping ARP poisoning.

167
MCQeasy

An enterprise network administrator needs to enforce data loss prevention rules across corporate endpoints. They deploy McAfee Data Loss Prevention Endpoint. Which client component inspects and blocks data movement to USB mass storage devices locally on the workstation?

A.McAfee DLP Endpoint Client
B.McAfee DLP Prevent
C.McAfee ePolicy Orchestrator (ePO) Relay Server
D.McAfee DLP Discover
AnswerA

The McAfee DLP Endpoint Client runs on workstations to enforce policies on local actions like USB transfers and clipboard usage.

Why this answer

McAfee DLP Endpoint uses an agent client containing the McAfee DLP Endpoint Client driver that hooks into the operating system I/O stack to monitor and control peripheral device access.

168
MCQeasy

An organization wants to deploy a low-interaction honeypot within its DMZ network to detect unauthorized reconnaissance activity, scanning, and basic service probing without risking the compromise of an actual operating system. Which tool is best suited for this requirement?

A.Kali Linux Metasploitable
B.Honeyd
C.Snort IDS
D.Wireshark
AnswerB

Honeyd is a classic low-interaction honeypot framework designed to mimic multiple virtual systems and services safely.

Why this answer

Honeyd is a low-interaction honeypot daemon that simulates virtual hosts and services on a network, allowing administrators to configure fake TCP/UDP ports and operating system fingerprints.

169
Multi-Selecthard

When deploying an Intrusion Prevention System (IPS) in an inline network architecture, which THREE critical operational factors must security engineers evaluate to prevent network disruption? (Choose THREE)

Select 3 answers
A.Throughput capacity and latency impact under peak load
B.Fail-open versus fail-closed hardware bypass behavior during power failure
C.Configuring the IPS to act as an authoritative DNS root server
D.The physical cable color used for connection to the core switch
E.Signature tuning to minimize false positives that could drop legitimate traffic
AnswersA, B, E

Inline devices can become bottlenecks if throughput capacity is insufficient.

Why this answer

Inline IPS deployments require careful evaluation of throughput performance, latency impact, and fail-open/fail-closed hardware capabilities.

170
MCQhard

An enterprise database administrator is configuring Microsoft SQL Server Always On Availability Groups and needs to ensure that database traffic transmitted between replicas across the network is encrypted. Which configuration setting must be enabled?

A.Run sp_configure 'enforce network encryption', 1; on the master instance
B.Set the database compatibility level to 150 and enable Always Encrypted with secure enclaves
C.Enable Transparent Data Encryption (TDE) on the primary replica database
D.Configure the Availability Group Endpoint with ALTER ENDPOINT hadr_endpoint FOR DATABASE_MIRRORING (ENCRYPTION = REQUIRED)
AnswerD

HADR database mirroring endpoints must be explicitly configured with encryption required to secure data in transit between replicas.

Why this answer

Availability group endpoints must be configured with ENCRYPTION = REQUIRED or SUPPORTED using ALTER ENDPOINT to secure replication traffic across nodes.

171
MCQhard

An incident response investigator is analyzing a Linux server compromised via a web shell. To determine when the web shell file was last accessed or modified, the investigator examines file timestamps. Which Linux command displays the complete file status including access, modification, and change (mtime, atime, ctime) times?

A.find / -name '*.php'
B.ls -la
C.stat
D.cat
AnswerC

The stat command provides granular details on access time (atime), modification time (mtime), and inode change time (ctime).

Why this answer

The 'stat' command in Linux displays detailed file status, including inode information, permissions, and all three timestamps (access, modify, change).

172
Multi-Selecthard

During a network security audit, the compliance officer evaluates the organization's security metrics program. Which THREE metrics are considered best practice indicators of security governance effectiveness? (Choose THREE)

Select 3 answers
A.Total number of physical packets traversing the core external internet gateway daily.
B.Employee completion rate for mandatory annual cybersecurity awareness training.
C.Percentage of critical systems covered by active, tested disaster recovery backup policies.
D.Total gigabytes of log data stored in the centralized SIEM archival repository.
E.Percentage of high-risk vulnerabilities remediated within the defined Service Level Agreement (SLA).
AnswersB, C, E

Training compliance tracks human-layer risk governance and adherence to administrative policy.

Why this answer

Effective governance metrics measure policy adherence, vulnerability remediation velocity, and employee awareness training completion rather than raw technical counts that lack context.

173
MCQmedium

A security analyst is deploying Snort IDS to inspect incoming web traffic and needs to write a rule that triggers when the HTTP URI contains the exact string 'admin_login.php' regardless of case. Which Snort rule option modifier accomplishes this?

A.nocase
B.uricontent
C.depth
D.offset
AnswerA

The nocase option makes the pattern matching case-insensitive for the preceding content rule.

Why this answer

The nocase modifier in Snort tells the detection engine to ignore case sensitivity when matching pattern content.

174
MCQmedium

An enterprise network is subjected to a distributed denial-of-service (DDoS) volumetric UDP reflection and amplification attack utilizing Network Time Protocol (NTP) monlist queries. Which configuration change should be applied to enterprise NTP servers to prevent them from participating in amplification attacks?

A.Configure NTP authentication using symmetric cryptographic keys for time synchronization.
B.Enable Unicast Reverse Path Forwarding (uRPF) in strict mode on internal interfaces.
C.Disable the 'monlist' command and restrict external queries in the ntp.conf configuration file.
D.Implement ICMP rate-limiting on the enterprise perimeter routing devices.
AnswerC

Disabling monlist prevents the NTP server from returning large responses to spoofed small queries.

Why this answer

The NTP 'monlist' (monitor list) command returns the IP addresses of recent clients interacting with the NTP server, making it a prime vector for UDP amplification attacks. Disabling monlist or upgrading NTP to versions where monlist is disabled by default mitigates this risk.

175
MCQmedium

A network administrator is configuring automated compliance auditing using OpenSCAP. Which standard data format must be utilized to write machine-readable vulnerability and security configuration checklists for the SCAP scanner?

A.XCCDF (Extensible Configuration Checklist Description Format)
B.Syslog RFC 5424
C.CSV (Comma-Separated Values)
D.SNMP MIB (Management Information Base)
AnswerA

XCCDF provides the structured XML format for security compliance checklists.

Why this answer

The Extensible Configuration Checklist Description Format (XCCDF) is an SCAP component used for writing security checklists and benchmarks.

176
MCQeasy

Which type of firewall inspects traffic at the application layer (Layer 7) and understands specific application protocols like HTTP, FTP, or SIP to make granular filtering decisions?

A.Unmanaged Switch
B.Application Gateway (Proxy Firewall)
C.Packet Filtering Firewall
D.Hub
AnswerB

Application gateways understand Layer 7 protocols and inspect payload content.

Why this answer

Application-layer firewalls (Proxy firewalls or NGFWs) understand Layer 7 protocols.

177
Multi-Selectmedium

An organization is hardening its wireless network infrastructure to prevent unauthorized client association and eavesdropping. Which TWO wireless security mechanisms should be enforced according to modern enterprise standards? (Choose two)

Select 2 answers
A.IEEE 802.1X port-based authentication backed by a RADIUS server infrastructure
B.WPA2-Personal with a shared pre-shared key (PSK) written on the office whiteboard
C.Open authentication with a captive portal for guest acceptance of terms
D.WPA3-Enterprise with Protected EAP (PEAP) or TLS authentication
E.Legacy WEP encryption with static 128-bit shared keys
AnswersA, D

802.1X provides strong centralized authentication for enterprise wireless and wired access.

Why this answer

WPA3-Enterprise and 802.1X/EAP authentication represent the current standard for secure enterprise wireless networks. WEP and open networks are insecure.

178
MCQmedium

A cloud security team is reviewing GCP VPC configurations. To ensure that virtual machine instances without external IP addresses can still reach Google APIs and services (such as Cloud Storage and BigQuery) securely, which feature must be configured?

A.GCP Cloud NAT gateway attached to the subnet
B.External HTTP(S) Load Balancer
C.Dedicated Interconnect with partner peering
D.Private Google Access enabled on the subnet
AnswerD

Private Google Access allows instances without public IPs to communicate with Google API endpoints over internal IPs.

Why this answer

Private Google Access allows VM instances without external IP addresses to reach Google APIs and services using internal IP addresses.

179
MCQeasy

An organization experiences a data breach involving personal identifiable information (PII). Regulatory compliance mandates notifying authorities within 72 hours. Which phase of the incident response process includes fulfilling external reporting and stakeholder communication requirements?

A.Eradication
B.Preparation
C.Post-Incident Activity
D.Containment
AnswerC

Post-incident reporting and regulatory notification are part of the post-incident review and administrative closure.

Why this answer

Post-incident activities include reporting to regulatory bodies, management briefings, and lessons learned.

180
MCQmedium

An organization is hardening its public-facing email infrastructure against spoofing and phishing attacks. The security engineer needs to configure a DNS record that specifies which mail servers are authorized to send email on behalf of the domain. Which DNS record type must be created?

A.Configure a DomainKeys Identified Mail (DKIM) CNAME record.
B.Implement a Domain-based Message Authentication, Reporting, and Conformance (DMARC) TXT record.
C.Create a Sender Policy Framework (SPF) TXT record specifying authorized sending IP addresses.
D.Deploy a Mail Exchange (MX) record pointing to the internal relay gateway.
AnswerC

SPF records list authorized sending mail servers for domain email validation.

Why this answer

Sender Policy Framework (SPF) is implemented as a DNS TXT record that lists all authorized IP addresses and mail servers permitted to send emails on behalf of a domain.

181
MCQmedium

An organization is configuring an IPsec VPN tunnel between two branch offices using Cisco IOS routers. The engineering team requires the use of a secure key exchange method that provides perfect forward secrecy (PFS) during the Phase 1 Internet Key Exchange (IKEv1) negotiation. Which Phase 1 mode must be selected?

A.Transport Mode
B.Aggressive Mode
C.Main Mode
D.Quick Mode
AnswerC

Main Mode uses a six-message exchange that protects identity and incorporates a Diffie-Hellman exchange, ensuring PFS for the IPsec security associations.

Why this answer

Main Mode in IKEv1 protects the identity of the peers and uses Diffie-Hellman exchanges to derive keying material, which ensures Perfect Forward Secrecy (PFS) for the phase 2 keys derived from it. Aggressive Mode does not protect peer identities.

182
MCQhard

During a network security audit, the auditor requests evidence that the principle of least privilege is enforced for administrative access to core network infrastructure routers. Which artifact should the network administrator provide to demonstrate compliance?

A.TACACS+ or RADIUS accounting records coupled with RBAC role definitions mapped to administrative job functions.
B.The enterprise backup policy outlining retention periods for offsite media.
C.The vulnerability scanning report listing missing security patches on network devices.
D.NetFlow export configurations showing traffic volume across core interfaces.
AnswerA

This combination proves both who accessed the device and that their command authorization was restricted according to their specific role.

Why this answer

Role-Based Access Control (RBAC) configurations combined with AAA (Authentication, Authorization, and Accounting) logs or policy documents showing strict privilege scoping provide direct evidence of least privilege enforcement.

183
Multi-Selectmedium

An enterprise cloud security architect is hardening an AWS environment to protect against unauthorized data exfiltration from S3 buckets. Which TWO preventative security measures should be implemented? (Choose TWO)

Select 2 answers
A.Disable all IAM roles across the AWS account
B.Enable S3 Block Public Access at both the account and bucket levels
C.Rely solely on default S3 bucket Access Control Lists (ACLs)
D.Enable public read access on all log buckets for transparency
E.Configure S3 bucket policies that enforce access exclusively from specific authorized VPC Endpoints
AnswersB, E

S3 Block Public Access prevents accidental or intentional public exposure of bucket data.

Why this answer

Enabling S3 Block Public Access and configuring explicit S3 bucket policies with aws:SourceVpce conditions prevent public exposure and restrict access to authorized VPC endpoints.

184
MCQeasy

An administrator managing an enterprise AWS environment wants to ensure that all newly created S3 buckets across all accounts automatically block public access. Which feature should be configured at the AWS account level?

A.AWS Shield Standard DDoS mitigation
B.AWS Trusted Advisor security checks
C.Amazon S3 Block Public Access (Account-level setting)
D.AWS IAM Permissions Boundary
AnswerC

Account-level S3 Block Public Access blocks public bucket policies and ACLs across all buckets in the account.

Why this answer

AWS S3 Account-Level Block Public Access settings prevent any S3 bucket within the account from being made public, regardless of individual bucket policies.

185
MCQeasy

An incident handler needs to preserve the evidentiary integrity of a hard drive seized from a compromised web server. Which initial step must be performed immediately upon physical removal of the drive to ensure chain of custody?

A.Calculate an MD5 or SHA-256 cryptographic hash of the raw drive
B.Defragment the partition to speed up future forensic analysis
C.Document the make, model, serial number, and sign an evidence custody form
D.Boot the drive in a live environment to check for rootkits
AnswerC

Establishing chain of custody begins with accurate physical documentation and secure logging of the evidence transfer.

Why this answer

Documenting all serial numbers, model details, and completing a proper evidence custody form is vital for maintaining the legal chain of custody.

186
MCQeasy

An organization is drafting a password policy. To balance security with user usability, which requirement represents modern industry best practices aligned with NIST SP 800-63B guidelines?

A.Enforcing a minimum length of 8 characters and allowing password managers
B.Requiring uppercase, lowercase, numbers, and symbols with 90-day rotations
C.Banning passphrases in favor of 6-character complex alphanumeric strings
D.Mandating password changes every 30 days regardless of compromise
AnswerA

NIST encourages longer passwords and explicitly permits password managers.

Why this answer

NIST SP 800-63B recommends favoring length over complexity, removing mandatory periodic password resets unless compromise is suspected.

187
MCQmedium

A security analyst configuring Endpoint Detection and Response (EDR) behavioral rules needs to monitor for living-off-the-land binaries (LotLB) executing reconnaissance commands. Which legitimate Windows utility is frequently abused by attackers for network discovery and should be monitored?

A.arp.exe or ipconfig.exe
B.calc.exe
C.mspaint.exe
D.notepad.exe
AnswerA

Network utility binaries such as arp.exe and ipconfig.exe are standard LotL binaries used for environment discovery.

Why this answer

Built-in binaries like net.exe, ipconfig.exe, whoami.exe, and nbtstat.exe are frequently abused by attackers for local reconnaissance.

188
MCQhard

An enterprise threat intelligence team is consuming a new threat feed formatted in STIX 2.1 to ingest indicators of compromise (IoCs) into their TIP (Threat Intelligence Platform). Which core STIX 2.1 domain object is specifically designed to encapsulate observable data such as file hashes, IP addresses, and domain names?

A.Attack Pattern Object
B.Campaign Object
C.Threat Actor Object
D.Cyber Observable Object (SCO)
AnswerD

Cyber Observable Objects (SCOs) in STIX 2.1 represent telemetry and artifacts such as files, IP addresses, and registry keys.

Why this answer

In STIX 2.1, the Indicator object defines a pattern that evaluates observables, but the actual atomic observable data (like IPs, file hashes, and URIs) is encapsulated within the STIX Observable object (formerly Indicators in STIX 1.x, but represented via Cyber Observable Objects or SCOs in STIX 2.x). Indicators point to observables to provide context.

189
Multi-Selectmedium

An Azure cloud administrator needs to secure communication channels between on-premises datacenters and Azure Virtual Networks. Which TWO connectivity methods provide encrypted, secure transit over public or private connections? (Choose TWO)

Select 2 answers
A.Standard unencrypted public IP bindings on Azure VMs
B.Azure ExpressRoute with MACsec or configured IPsec tunnels
C.Standard Azure Load Balancer without TLS offloading
D.Unencrypted Azure Virtual Network Peering
E.Azure Site-to-Site VPN Gateway using IPsec encryption
AnswersB, E

ExpressRoute private circuits can be secured using MACsec encryption for direct circuits or IPsec for Microsoft peering.

Why this answer

Azure VPN Gateway (Site-to-Site IPsec VPN) and Azure ExpressRoute with MACsec (or IPsec over ExpressRoute) provide encryption for transit traffic.

190
Multi-Selecteasy

A security engineer is reviewing the phases of the Network Defense Lifecycle. Which THREE stages are recognized core components of this lifecycle? (Choose THREE)

Select 3 answers
A.Monitoring and Evaluation
B.Unregulated Hardware Decommissioning and Scraping
C.Unrestricted Open Source Code Distribution
D.Implementation and Deployment
E.Assessment and Planning
AnswersA, D, E

Continuous monitoring and evaluation ensure controls remain effective against emerging threats.

Why this answer

The Network Defense Lifecycle generally encompasses phases such as Assessment/Planning, Implementation, and Monitoring/Review. Options A, B, and E represent recognized phases in security lifecycle management.

191
Multi-Selectmedium

A security analyst is hardening an Apache HTTP Server against web attacks. Which TWO directives or modules should be configured to enhance application security and mitigate common web threats?

Select 2 answers
A.KeepAlive On and KeepAliveTimeout 5
B.DirectoryIndex index.php index.html
C.Listen 80 without SSLVirtualHost configuration
D.mod_security (Web Application Firewall engine)
E.mod_headers configured to enforce HTTP Strict Transport Security (HSTS)
AnswersD, E

mod_security provides real-time web application monitoring, logging, and access control filtering.

Why this answer

mod_headers (for security headers like HSTS and CSP) and mod_security (Web Application Firewall engine) enhance Apache security.

192
MCQeasy

A security analyst is reviewing alerts generated by an Endpoint Detection and Response (EDR) agent. The agent flags a process spawning cmd.exe with encoded arguments. Which phase of incident response involves triaging this alert to determine if it is a true positive?

A.Eradication
B.Recovery
C.Preparation
D.Detection and Analysis
AnswerD

Triage and alert validation fall squarely under Detection and Analysis.

Why this answer

Triaging and reviewing alerts to confirm an incident takes place during the Detection and Analysis phase.

193
MCQhard

A security engineer is configuring AWS Key Management Service (KMS) for an application storing customer data in Amazon S3 buckets. The security policy dictates that the Customer Master Key (CMK) must be automatically rotated every year, and the key material must be managed within a dedicated hardware security module. Which KMS key type and rotation setting fulfill these requirements?

A.S3 Master Symmetric Key with client-side PGP encryption keys
B.External Key Store (XKS) with static key material managed on-premise without rotation
C.Customer Managed Key (CMK) with automatic annual key rotation enabled and backed by AWS CloudHSM
D.AWS Managed Key with manual rotation every 90 days via CLI
AnswerC

Customer Managed Keys allow enabling automatic annual key rotation and integration with CloudHSM for hardware-backed security.

Why this answer

AWS KMS Customer Managed Keys (CMKs) support automatic annual key rotation (setting rotation to true) and can be backed by AWS CloudHSM via Custom Key Store integration.

194
MCQhard

An organization is implementing database encryption in Oracle Database 19c and wants to protect specific sensitive columns containing Social Security Numbers using Advanced Security Transparent Data Encryption (TDE). Which SQL command correctly creates a table with a column encrypted using AES256?

A.CREATE ENCRYPTED TABLE employee (ssn VARCHAR2(11)) STORAGE ENGINE INNODB_TDE;
B.CREATE TABLE employee (ssn VARCHAR2(11) ENCRYPT USING 'AES256' IDENTIFIED BY master_key);
C.CREATE TABLE employee (ssn VARCHAR2(11) ENCRYPT USING 'AES256');
D.ALTER DATABASE ENCRYPT COLUMN ssn WITH ALGORITHM = 'AES256';
AnswerC

Oracle allows column-level encryption using the ENCRYPT keyword and algorithm specification directly in the column definition.

Why this answer

In Oracle TDE Column Encryption, the ENCRYPT specification with the desired algorithm (e.g., USING 'AES256') is declared directly on the column definition within the CREATE TABLE statement.

195
MCQhard

An organization deploys an inline Intrusion Prevention System (IPS) that begins dropping legitimate business-critical transactions due to false positives caused by a custom application protocol. What is the most appropriate immediate action for the security team while maintaining perimeter visibility?

A.Change the firewall default gateway to the backup ISP.
B.Disable the entire IPS inspection engine globally.
C.Change the specific offending signature action from block/drop to alert (log-only) mode.
D.Bypass the IPS by moving it from inline mode to out-of-band monitoring mode.
AnswerC

Switching to alert mode prevents dropped packets while still notifying administrators of the event.

Why this answer

When an IPS signature generates false positives on legitimate traffic, the signature should be tuned or switched from blocking mode to alerting-only mode until updated.

196
MCQhard

A CND analyst is configuring Snort IDS to detect a specific payload pattern within HTTP traffic where an attacker attempts to exploit a directory traversal vulnerability using the string '../'. Which Snort rule header and option configuration correctly detects this pattern within the URI component of HTTP requests?

A.pass tcp $EXTERNAL_NET any -> $HOME_NET 443 (msg:"Traversal"; content:"../"; http_client_body; sid:100001; rev:1;)
B.alert tcp any any -> $HOME_NET 80 (msg:"Directory Traversal Attempt"; content:"../"; http_uri; sid:100001; rev:1;)
C.alert ip any any -> any any (msg:"Directory Traversal"; uricontent:"../"; sid:100001; rev:1;)
D.log udp any any -> $HOME_NET 80 (msg:"Directory Traversal"; content:"../"; depth:2; sid:100001; rev:1;)
AnswerB

This rule correctly targets HTTP traffic on port 80, applies the http_uri modifier to the content match for '../', and includes a unique SID.

Why this answer

To inspect HTTP URIs specifically, Snort provides the 'uricontent' or modern 'http_uri' modifier within rule options. The rule must use tcp protocol, specify external/any networks targeting internal web servers, and use the 'http_uri' sticky buffer or modifier to inspect the URI payload for '../'.

197
MCQmedium

A network security analyst observes an ongoing brute-force attack against an SSH service running on a Linux server. Which tool can the analyst configure to automatically inspect authentication failure logs and dynamically block attacker IP addresses via iptables?

A.Deploy Wireshark with a real-time command-line display filter for SSH packets.
B.Execute 'tcpdump' with a packet filter expression capturing TCP port 22 traffic.
C.Configure and run 'fail2ban' to parse authentication logs and dynamically insert iptables firewall drop rules.
D.Enable the Linux auditd daemon and review audit logs manually using the ausearch utility.
AnswerC

Fail2ban automates log analysis and dynamic firewall blocking for brute-force mitigation.

Why this answer

Fail2ban monitors log files (such as /var/log/auth.log) for patterns of failed authentication attempts and automatically updates firewall rules (iptables or nftables) to ban offending IP addresses for a set duration.

198
MCQeasy

An enterprise network administrator needs to place a publicly accessible web server on the network perimeter. Which network zone should the administrator configure to isolate this server from the internal corporate network while keeping it accessible from the internet?

A.Internal LAN
B.Demilitarized Zone (DMZ)
C.Management VLAN
D.Virtual Private Network (VPN) pool
AnswerB

A DMZ provides a buffered zone between the untrusted internet and the trusted internal network.

Why this answer

A Demilitarized Zone (DMZ) isolates public-facing services from the internal network.

199
Multi-Selecteasy

A network security administrator is establishing baseline security hardening for newly deployed enterprise switches. Which TWO configurations must be applied to secure management planes? (Choose two)

Select 2 answers
A.Disabling Telnet and enabling SSH version 2 for CLI management
B.Leaving default administrator credentials unchanged for ease of initial troubleshooting
C.Disabling HTTP and enforcing HTTPS for web-based management interfaces
D.Enabling SNMPv1 community string 'public' with read-write access globally
E.Configuring all switch ports with dynamic VLAN trunking protocol (VTP) server mode by default
AnswersA, C

SSHv2 encrypts administrative traffic, preventing credential sniffing.

Why this answer

Securing the management plane requires disabling legacy unencrypted protocols like Telnet and HTTP, and enforcing SSH and HTTPS.

200
Multi-Selecthard

A security analyst is reviewing network traffic logs and discovers indicators of an Advanced Persistent Threat (APT) utilizing covert command-and-control (C2) communication. Which TWO methods are commonly used by attackers to obfuscate C2 traffic through legitimate network services? (Choose TWO)

Select 2 answers
A.Standard FTP file transfers over TCP ports 20 and 21 using anonymous credentials.
B.Domain Fronting via Content Delivery Networks (CDNs) to obscure the true destination of HTTPS C2 traffic.
C.Static IP routing table modifications on core border routers using BGP community strings.
D.DNS tunneling by encoding exfiltration data into subdomain queries destined for an attacker-controlled authoritative nameserver.
E.Cleartext HTTP communication over port 80 without encryption or encapsulation.
AnswersB, D

Domain fronting conceals the true backend C2 server behind a trusted CDN domain name.

Why this answer

Attackers frequently leverage DNS tunneling (embedding data in DNS query names) and Domain Fronting (using CDN infrastructure to hide the actual C2 destination domain behind a trusted domain) to bypass perimeter inspection.

201
MCQhard

An enterprise security architect is integrating the Cyber Kill Chain model into their SIEM alerting logic. An alert fires when an attacker attempts to establish command and control (C2) over DNS tunneling. According to Lockheed Martin's Cyber Kill Chain, which phase does this represent?

A.Exploitation
B.Command and Control
C.Actions on Objectives
D.Delivery
AnswerB

Command and Control represents the phase where the attacker opens a remote management channel to control the victim.

Why this answer

Establishing command and control channels after successful exploitation is classified under the Command and Control phase of the Cyber Kill Chain.

202
MCQmedium

An administrator needs to segment an internal network into multiple Virtual LANs (VLANs) to isolate the finance department from human resources. Which IEEE standard protocol must be configured on the interconnecting switch trunk ports to tag frames belonging to different VLANs?

A.IEEE 802.1X
B.IEEE 802.3ad
C.IEEE 802.11i
D.IEEE 802.1Q
AnswerD

802.1Q inserts a VLAN tag into Ethernet frames for trunking.

Why this answer

IEEE 802.1Q is the industry standard protocol for VLAN trunking and frame tagging.

203
Multi-Selectmedium

A network engineer is configuring IPsec site-to-site VPN policies. During Phase 2 negotiations, which TWO parameters must match identically on both VPN peers for the security association (SA) to establish successfully? (Choose two)

Select 2 answers
A.The physical interface speed (e.g., 1 Gbps vs 10 Gbps) of the WAN ports
B.IPsec Encapsulation Mode (Tunnel mode or Transport mode)
C.The local device hostname configured in the router's global configuration
D.The SNMP community string configured on the management plane
E.IPsec Transform Set (Encryption and Integrity algorithms, e.g., AES-256 and SHA-256)
AnswersB, E

Both peers must agree on whether Tunnel or Transport mode is used for encapsulation.

Why this answer

Phase 2 (IPsec) negotiations require agreement on encapsulation mode (Transport/Tunnel) and the cryptographic transform set (encryption and integrity algorithms). Pre-shared keys and Diffie-Hellman groups for Phase 1 are handled in Phase 1 (IKE).

204
Multi-Selecthard

A security analyst is investigating a compromised network segment and discovers that an attacker bypassed network perimeter access controls by tunneling malicious command-and-control traffic through allowed protocols. Which THREE protocols are most commonly abused for covert data exfiltration and tunneling through corporate firewalls? (Choose three)

Select 3 answers
A.ICMP (Internet Control Message Protocol)
B.HTTPS / TLS (Port 443)
C.BGP (Border Gateway Protocol, Port 179)
D.DNS (Port 53)
E.RIP (Routing Information Protocol, UDP Port 520)
AnswersA, B, D

ICMP tunneling embeds payload data within echo request and reply packets, often left uninspected by basic firewalls.

Why this answer

DNS, HTTPS (TLS), and ICMP are frequently abused protocols for tunneling because corporate firewalls almost always permit outbound traffic on these ports to maintain business functionality.

205
Multi-Selectmedium

A security analyst is hardening an enterprise network to support robust forensic readiness. Which THREE administrative or technical controls should be implemented to ensure successful post-incident investigations? (Choose THREE)

Select 3 answers
A.Disabling all system auditing to maximize storage capacity for business applications
B.Implementing centralized and write-once-read-many (WORM) log storage repositories
C.Allowing users local administrative privileges to troubleshoot their own workstations
D.Deploying Network Time Protocol (NTP) servers with synchronized timestamps across all devices
E.Establishing predefined procedures and tooling for volatile memory and disk acquisition
AnswersB, D, E

Centralized WORM storage protects logs from tampering by attackers and preserves evidence.

Why this answer

Forensic readiness requires continuous log collection, synchronization of time sources (NTP), and establishing secure, tamper-evident storage repositories.

206
MCQeasy

An administrator wants to ensure that critical system files on Windows endpoints are automatically monitored for unauthorized modifications and that any changes trigger an alert. Which built-in Windows tool or feature should be utilized?

A.Disk Management (diskmgmt.msc)
B.Windows Server Backup
C.Object Access Auditing via Advanced Audit Policy Configuration
D.Task Scheduler
AnswerC

Enabling 'Audit File System' under Advanced Audit Policy allows tracking of read, write, and modification events on sensitive files.

Why this answer

File Server Resource Manager or Windows Defender Application Control / File Integrity Monitoring mechanisms can track changes. For general integrity auditing, Windows provides audit policies for file access.

207
Multi-Selectmedium

An administrator is managing mobile devices via an Enterprise Mobility Management (EMM) platform. Which TWO of the following features are characteristic of a Containerized Work Profile (such as Android Enterprise)? (Choose TWO)

Select 2 answers
A.Requires rooting or jailbreaking the mobile device during enrollment
B.Enforces separation of corporate apps and data from personal user applications
C.Prevents the use of any passcode on the device
D.Allows IT administrators to execute a selective wipe of corporate data without affecting personal data
E.Gives IT full administrative control over personal photos, messages, and personal app usage
AnswersB, D

Work profiles isolate corporate data within an encrypted container.

Why this answer

Containerized work profiles separate work apps/data from personal data and allow IT to wipe corporate data independently.

208
MCQmedium

A network security engineer is tasked with securing corporate Wi-Fi clients against Evil Twin attacks where an attacker sets up a fake access point with identical SSID parameters. Which enterprise wireless security practice effectively mitigates client association to fake APs?

A.Using MAC address cloning on the enterprise wireless controllers
B.Enabling 802.1X authentication with strict server certificate validation on clients
C.Deploying WPA2-Personal with a rotating pre-shared key
D.Disabling client roaming capabilities on enterprise controllers
AnswerB

802.1X requires clients to validate the RADIUS server certificate, preventing connection to unauthorized rogue APs.

Why this answer

Enterprise 802.1X authentication with server certificate validation prevents clients from trusting unauthorized access points because rogue APs cannot present a valid RADIUS-signed certificate.

209
MCQhard

A security engineer is configuring a firewall to prevent IP address spoofing from the external untrusted interface. Which built-in routing/firewall feature checks the source IP address of incoming packets against the routing table to verify that the packet arrived on the interface expected for that source network?

A.Proxy ARP
B.Spanning Tree Protocol (STP)
C.Network Address Translation (NAT)
D.Reverse Path Forwarding (RPF) / uRPF
AnswerD

uRPF drops packets if their source IP does not map back to the incoming interface.

Why this answer

Reverse Path Forwarding (RPF) verifies that the source IP address of an incoming packet is reachable via the ingress interface according to the routing table.

210
Multi-Selecthard

A security architect is designing a Zero Trust Architecture (ZTA) framework in accordance with NIST SP 800-207. Which THREE core tenets must be incorporated into the network defense strategy? (Choose three)

Select 3 answers
A.Assume breach: minimize blast radius by micro-segmenting resources and assuming the network is hostile.
B.Implicitly trust all devices connected to the internal corporate LAN backbone
C.Always verify explicitly: authentication and authorization are validated continuously before every access request.
D.Rely solely on perimeter firewall packet filtering for all internal security enforcement
E.Use least privilege access: restrict user and device access with Just-In-Time (JIT) and Just-Enough-Access (JEA).
AnswersA, C, E

Assuming breach ensures that internal network compromise does not mean total infrastructure access.

Why this answer

NIST SP 800-207 Zero Trust tenets include continuous verification of trust, least privilege access enforcement, and dynamic policy evaluation based on all available telemetry.

211
Multi-Selectmedium

Which TWO methods are commonly used by Intrusion Detection and Prevention Systems (IDPS) to identify malicious network traffic? (Choose TWO)

Select 2 answers
A.Automatically purchasing new zero-day exploits from underground forums
B.Converting all network packets into analog audio signals for manual listening
C.Signature-based detection (matching known attack patterns and byte sequences)
D.Manually shutting down all enterprise internet circuits during off-peak hours
E.Anomaly-based detection (establishing a baseline of normal traffic and flagging deviations)
AnswersC, E

Signatures detect known threats by comparing traffic against a database of attack patterns.

Why this answer

IDPS engines primarily use signature-based (pattern matching) and anomaly-based (behavioral) detection methods.

212
MCQhard

A security architect is designing a Zero Trust Network Access (ZTNA) solution to replace a legacy remote access VPN. Unlike traditional VPNs that grant network-level access upon initial authentication, how does a true service-initiated ZTNA architecture handle application access for a remote user?

A.It extends the corporate VLAN directly to the user's laptop via an encrypted tunnel.
B.It authenticates the user, verifies device posture, and brokers a secure, single-application connection without exposing the network layer.
C.It relies on static firewall access control lists pre-configured with the user's home IP address.
D.It assigns a private IP address from a DHCP pool managed by the internal core router.
AnswerB

ZTNA provides identity- and context-aware, least-privilege access to individual applications rather than granting network-layer connectivity.

Why this answer

Service-initiated ZTNA hides application infrastructure from discovery (dark cloud/dark app), requiring the user to authenticate and pass posture checks before a secure proxy broker establishes a direct, encrypted connection to the specific application, never granting broad network access.

213
Multi-Selecthard

An incident responder is investigating a Windows system compromise where an attacker established persistence. Which THREE Windows registry locations are frequently abused by adversaries for establishing auto-run persistence? (Choose THREE)

Select 3 answers
A.HKEY_CLASSES_ROOT\.txt\DefaultIcon
B.HKEY_PERFORMANCE_DATA\CurrentPerformance
C.HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
D.HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
E.HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
AnswersC, D, E

The HKLM Run key executes specified programs automatically for all users upon system startup.

Why this answer

Windows Run/RunOnce keys in HKLM and HKCU, along with Winlogon registry entries, are classic persistence vectors.

214
Multi-Selecteasy

Which TWO of the following are primary benefits of implementing network segmentation at an enterprise perimeter? (Choose TWO)

Select 2 answers
A.Elimination of the need for any firewalls or security monitoring
B.Enhanced enforcement of granular access control policies between zones
C.Guaranteed prevention of all zero-day malware infections on endpoints
D.Automatic encryption of all data at rest without performance overhead
E.Containment of security breaches and limitation of lateral movement
AnswersB, E

Segregating zones allows administrators to apply strict firewall rules between business units.

Why this answer

Network segmentation improves security by containing breaches and limiting lateral movement.

215
MCQhard

A security engineer discovers that an attacker is exploiting a vulnerability in a web application's JSON Web Token (JWT) implementation by modifying the algorithm header to 'none' and bypassing signature verification. How should the application's JWT validation code be updated to fix this vulnerability?

A.Upgrade the JWT token expiration time (exp claim) to expire within five minutes of creation.
B.Explicitly enforce a whitelist of approved cryptographic signing algorithms (e.g., RS256) and explicitly reject the 'none' algorithm in the JWT validation function.
C.Implement JSON Web Encryption (JWE) to payload data without verifying headers.
D.Store JWT tokens in HTTP-only, Secure cookies instead of local browser storage.
AnswerB

Enforcing a whitelist of algorithms and rejecting 'none' prevents JWT signature bypasses.

Why this answer

Allowing the 'none' algorithm or omitting explicit algorithm verification in JWT libraries leads to signature bypass. The application code must explicitly enforce trusted cryptographic algorithms (e.g., HS256 or RS256) and reject tokens specifying 'none'.

216
MCQeasy

A security engineer is configuring a Symantec Data Loss Prevention (DLP) Network Monitor policy to intercept outgoing HTTP traffic containing credit card numbers. Which detection technology should be selected to match standard credit card formats using Luhn algorithm validation?

A.Exact Data Matching (EDM)
B.Described Content Matching (DCM) with a Data Identifier utilizing Luhn algorithm validation
C.Indexed Document Matching (IDM)
D.Vector Machine Learning (VML)
AnswerB

Data Identifiers in Symantec DLP use regular expressions combined with algorithmic validation like the Luhn check for credit cards.

Why this answer

Symantec DLP uses Exact Data Matching (EDM), Described Content Matching (DCM) / Regular Expressions with Luhn validation, or Indexed Document Matching (IDM). DCM combined with validation algorithms matches standard patterns like credit cards.

217
MCQmedium

A security analyst configuring a Linux-based iptables firewall wants to ensure that any established or related incoming TCP connections are automatically allowed through without hitting subsequent rule checks. Which target and match extension combination should be used?

A.iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
B.iptables -A INPUT -m limit --limit 5/min -j LOG
C.iptables -A FORWARD -p tcp --dport 80 -j REJECT
D.iptables -A INPUT -m state --state NEW -j DROP
AnswerA

This rule correctly matches existing connection states and accepts them.

Why this answer

Using the connection tracking module (-m conntrack --ctstate ESTABLISHED,RELATED) combined with the -j ACCEPT target allows return traffic for active outbound sessions.

218
MCQhard

An administrator is troubleshooting a Linux endpoint running Ubuntu where AppArmor is operating in enforcing mode, but a critical daemon keeps failing to write to its log file. Which command should the administrator run to temporarily switch the profile for this specific daemon to complain mode without affecting the rest of the system?

A.aa-complain /usr/sbin/daemon
B.aa-enforce -r /etc/apparmor.d/usr.sbin.daemon
C.systemctl set-mode apparmor=complain
D.apparmor_parser -C /etc/apparmor.d/usr.sbin.daemon
AnswerA

aa-complain places the specified program's AppArmor profile into complain mode immediately.

Why this answer

The aa-complain command is used to put a specific AppArmor profile into complain mode, which logs violations instead of blocking them.

219
MCQmedium

An administrator needs to enforce mandatory password complexity, minimum length, and account lockout policies for local user accounts on standalone Windows Server endpoints that are not joined to an Active Directory domain. Which tool should be used?

A.Local Users and Groups (lusrmgr.msc)
B.Local Security Policy (secpol.msc)
C.Group Policy Management Console (gpmc.msc)
D.System Configuration (msconfig.exe)
AnswerB

secpol.msc controls account policies (password and lockout settings) for local computer environments.

Why this answer

Local Security Policy (secpol.msc) allows administrators to configure account policies, audit policies, and security options on standalone systems.

220
MCQmedium

An application security team is performing static code analysis on a Java Spring Boot web application. The scanner flags a potential SQL injection vulnerability in a JDBC template query. Which remediation method should the developer implement to secure the database interaction?

A.Invoke the java.net.URLEncoder.encode() method on all parameters
B.Wrap all input strings inside single quotes and strip out semicolon characters
C.Use parameterized queries and PreparedStatement objects with placeholder parameters
D.Sanitize all input characters using HTML entity encoding before passing them to the database driver
AnswerC

Parameterized queries separate query structure from user data, safely neutralizing SQL injection attacks.

Why this answer

Using parameterized queries (PreparedStatements) ensures that user-supplied input is treated strictly as data, never as executable SQL commands, neutralizing SQL injection.

221
Multi-Selecthard

An organization is implementing comprehensive endpoint hardening for Windows 10/11 endpoints. Which THREE of the following measures directly contribute to reducing the attack surface against memory-based exploits and credential theft? (Choose THREE)

Select 3 answers
A.Enabling Windows Defender Exploit Protection system settings (e.g., CFG, DEP, ASLR)
B.Disabling Universal Plug and Play (UPnP) service on endpoints
C.Enabling Windows Defender Credential Guard
D.Configuring Attack Surface Reduction (ASR) rules
E.Disabling the Server Message Block v1 (SMBv1) protocol
AnswersA, C, D

Exploit Protection enforces mitigations like Control Flow Guard (CFG) and Data Execution Prevention (DEP).

Why this answer

Credential Guard, Attack Surface Reduction (ASR) rules, and Exploit Protection (EMET successor) directly mitigate memory corruption and credential theft vectors.

222
MCQmedium

A system administrator is hardening a fleet of Linux servers by setting strict umask values for all users to ensure newly created files are not readable by others. Where should this default system-wide umask be configured?

A./etc/ssh/sshd_config
B./etc/security/limits.conf
C./etc/environment
D./etc/profile
AnswerD

/etc/profile sets environment variables and shell settings, including the default umask for interactive login shells.

Why this answer

The system-wide default umask for login shells on many Linux distributions is configured in /etc/profile or /etc/login.defs.

223
MCQmedium

A CND analyst is conducting a security audit of network device configurations. The audit checklist requires verifying that AAA (Authentication, Authorization, and Accounting) protocols are properly implemented. Which protocol combination represents the industry standard for centralized network device administration?

A.DNSSEC for device privilege authorization
B.HTTP Basic Authentication for router console access
C.SNMPv1 for authentication and TFTP for accounting
D.TACACS+ for device administration and RADIUS for dial-in/remote user access
AnswerD

TACACS+ is preferred for device management because it handles command authorization, whereas RADIUS is standard for user access.

Why this answer

TACACS+ provides granular authorization and separates authentication, authorization, and accounting for device administration.

224
MCQhard

An administrator is configuring a Cisco ASA firewall and needs to allow internal users to initiate outbound HTTP/HTTPS sessions while ensuring that return traffic is permitted through the stateful inspection engine without opening explicit inbound rules. Which object-group and access-list construct properly permits outbound web traffic?

A.access-list OUTBOUND extended permit tcp any any eq 80 and access-group OUTBOUND in interface outside
B.static (inside,outside) tcp interface 80 192.168.1.10 80 netmask 255.255.255.255
C.object network WEB_PORTS; range 80 443; nat (inside,outside) dynamic interface
D.access-list INSIDE_IN extended permit tcp any any eq www and access-list INSIDE_IN extended permit tcp any any eq 443, applied via access-group INSIDE_IN in interface inside
AnswerD

This correctly permits outbound web traffic originating from the inside interface.

Why this answer

Stateful firewalls automatically track outbound connections, so allowing outbound traffic on ports 80 and 443 via an access-list applied to the inside interface is sufficient.

225
MCQmedium

An organization is following the Network Defense Lifecycle. After successfully designing and implementing perimeter security controls, the security manager moves to the 'Monitor and Evaluate' phase. Which task is characteristic of this phase?

A.Performing business impact analysis (BIA) to classify critical information assets.
B.Procuring hardware appliances and racking firewalls in the primary datacenter.
C.Drafting the initial high-level security governance charter for board approval.
D.Conducting periodic vulnerability assessments and reviewing SIEM alert correlation rules.
AnswerD

Continuous monitoring involves checking for new vulnerabilities and tuning detection mechanisms to catch anomalies.

Why this answer

The 'Monitor and Evaluate' phase focuses on continuous assessment, log analysis, vulnerability scanning, and security metric tracking to ensure defenses remain effective against evolving threats.

Page 2

Page 3 of 5

Page 4

All pages