What are two components of a cloud-native security platform (CNSP)? (Choose two.)
Asset inventory
VPN
Endpoint security
Identity and access management (IAM)
A cloud-native security platform commonly includes asset inventory and identity and access management visibility or control. Asset inventory is essential because cloud environments are dynamic: workloads, containers, storage buckets, APIs, and services can appear or change rapidly. Security teams must know what exists before they can protect it. IAM is also critical because cloud access is heavily identity-driven. Overprivileged roles, exposed keys, weak permissions, and unmanaged service accounts can create major risk. A VPN may secure connectivity, but it is not a core CNSP component. Endpoint security protects user devices and hosts, but CNSP focuses on cloud-native assets, configurations, workloads, identities, and runtime risk. CNSP helps secure cloud applications across posture, workload, identity, and runtime layers. In practical terms, it answers questions such as: what cloud assets exist, who can access them, are they misconfigured, and are they behaving safely at runtime? Reference/topics: Cloud Security 5.5, CNSP; Identity Security 7.1, IAM components.
Which segmentation method will limit the number of devices that can be granted a private IP address in a network?
NAT
Static routing
IP subnetting
VLAN
IP subnetting divides a larger IP network into smaller logical networks by changing the subnet mask or prefix length. Because each subnet has a defined address range, subnetting directly limits how many usable host addresses are available inside that segment. For example, a smaller subnet provides fewer assignable private IP addresses, which restricts the number of devices that can be placed in that network. NAT translates addresses between networks, but it does not itself define the size of the internal address pool. Static routing controls forwarding paths and does not limit how many devices can receive private IP addresses. VLANs segment Layer 2 broadcast domains, but the host count is ultimately determined by the IP subnet assigned to that VLAN. In secure network design, subnetting is often paired with VLANs and zones so that addressing, routing, and policy enforcement align cleanly. Reference/topics: Network Security 3.1, network segmentation methods; Network Fundamentals 2.4, NAT; Network Fundamentals 2.5, routing.
Which statement best distinguishes a Host-Based Intrusion Detection System (HIDS) from a Network-Based Intrusion Detection System (NIDS)?
Network-Based is installed on an individual endpoint to monitor all inbound/outbound traffic of that device.
Host-Based is installed on an individual endpoint to monitor all inbound/outbound traffic of that traffic.
Host-Based directly integrates with the endpoint and is known as the last line of defense.
Network-Based directly integrates with the endpoint and is known as the last line of defense.
A HIDS directly integrates with an endpoint or host and monitors activity on that system. It can evaluate logs, file changes, processes, authentication activity, configuration changes, and local indicators that may not be visible on the network. This makes it a last line of defense because it can detect suspicious activity after traffic has reached the host or when malicious activity occurs locally. A NIDS monitors traffic on a network segment rather than being installed on each individual endpoint. Answer A incorrectly describes network-based detection as endpoint-installed. Answer B is awkwardly worded and less precise than answer C. Answer D incorrectly assigns endpoint integration to NIDS. HIDS and NIDS are complementary. NIDS provides broad network visibility, while HIDS provides deep host-level visibility. Security teams use both types of telemetry to understand attack scope and confirm whether suspicious network behavior resulted in endpoint compromise. Reference/topics: Cybersecurity 1.4, IDS, HIDS, and NIDS; Endpoint Security 4.3, host-based controls.
Which activity increases the ability of endpoint protection to successfully identify threats?
Creating honeypots
Implementing virtualization
Encoding null routes
Applying security updates
Applying security updates improves endpoint protection by closing known vulnerabilities, updating defensive components, and reducing the number of exploitable weaknesses on the host. Endpoint protection relies on current software, current detection logic, and patched operating systems or applications to recognize and resist common attack techniques. When systems remain unpatched, attackers can use known exploits that security tools may detect but cannot always prevent from succeeding if the vulnerable component remains exposed. Honeypots are deception systems used to attract or study attackers, but they do not directly improve endpoint protection on user devices. Virtualization can isolate workloads or support testing, but it is not the best answer for improving endpoint threat identification. Null routes are network routing controls used to discard traffic and are unrelated to endpoint detection capability. Security updates are a basic but essential endpoint security component because they reduce attack surface and improve compatibility with modern protections. Reference/topics: Endpoint Security 4.3, security updates and antivirus; Cybersecurity 1.5, threat prevention practices.
Which two sets of actions are examples of multi-factor authentication (MFA)? (Choose two.)
Answering a security question and providing a thumbprint
Entering a PIN and scanning a smart card
Scanning the palm of one hand followed by the other hand
Answering three sequential security questions
Multi-factor authentication requires two or more different categories of authentication factors. The standard categories are something you know, something you have, and something you are. Answering a security question is something you know, while providing a thumbprint is something you are, so answer A is MFA. Entering a PIN is something you know, while scanning a smart card is something you have, so answer B is also MFA. Scanning the palm of one hand followed by the other hand uses the same factor category twice: biometrics, or something you are. That may be stronger biometric checking, but it is not multi-factor. Answering three sequential security questions also repeats the knowledge factor and therefore remains single-factor authentication. MFA improves identity security because stolen passwords alone are less useful to attackers when another independent proof is required. Strong MFA should use phishing-resistant methods where possible. Reference/topics: Identity Security 7.1.2, single-factor and multifactor authentication.
In which use case would URL filtering be an appropriate solution?
Redirecting malicious DNS traffic to a sinkhole
Blocking large file transfers over a network
Preventing employees from accessing social media sites during work hours
Encrypting outgoing emails containing confidential information
URL filtering controls access to websites based on URL categories, reputation, policy, or risk. Preventing employees from accessing social media sites during work hours is a direct URL filtering use case because social media domains can be categorized and allowed, blocked, coached, or logged according to organizational policy. Redirecting malicious DNS traffic to a sinkhole is a DNS security function, not URL filtering. Blocking large file transfers is more related to file control, application control, or data loss prevention. Encrypting outgoing emails containing confidential information is a DLP or email security function. URL filtering can also block phishing sites, malware distribution pages, newly registered risky domains, command-and-control URLs, and policy-prohibited categories. Its value is strongest when combined with user identity, application awareness, SSL/TLS inspection where appropriate, and logging. Reference/topics: Network Security 3.3, URL filtering, VPNs, and proxies; Network Security 3.5, DLP.
Batch 6 — Questions 71–85
Which statement describes both stateful firewalls and stateless firewalls?
Stateful firewalls encrypt all traffic they inspect; stateless firewalls only pass through unencrypted traffic.
Stateful firewalls are primary hardware appliances; stateless firewalls are exclusively software-based.
Stateful firewalls only allow access to internal applications; stateless firewalls allow connections only to the internet.
Stateful firewalls track and secure ongoing connections; stateless firewalls inspect each packet individually.
Stateful firewalls track connection state, while stateless firewalls evaluate each packet independently against rules. A stateful firewall maintains a state table that records active sessions, allowing it to understand whether a packet is part of an established connection or an unsolicited attempt. This improves security and usability because return traffic for legitimate sessions can be permitted without writing separate broad rules. A stateless firewall does not remember connection context; it checks packet attributes such as source, destination, protocol, and port each time. Firewalls do not inherently encrypt all inspected traffic, so answer A is incorrect. Stateful and stateless capabilities can exist in hardware, software, virtual, or cloud form, so answer B is incorrect. Answer C incorrectly describes access direction rather than inspection behavior. The key distinction is session awareness. Understanding stateful inspection is foundational because NGFW capabilities build on traffic classification, session tracking, and policy enforcement. Reference/topics: Network Security 3.2, stateful firewalls and NGFWs.
What will secure connections from a company’s remote employees when they want to access sensitive documents at a branch office?
Public FTP servers using RADIUS authentication
VPN clients on compatible devices
Attachments transferred via unsecured email
Websites using steganography
VPN clients on compatible devices secure remote employee connections by creating encrypted tunnels to company resources. This allows employees outside the office to access sensitive documents at a branch office while protecting traffic over untrusted networks such as home internet, public Wi-Fi, or cellular networks. Public FTP is not appropriate for sensitive documents because FTP is traditionally plaintext unless secured by additional protocols, and public exposure increases risk. Unsecured email attachments are unsafe for sensitive data because they can be intercepted, misdirected, or forwarded without control. Steganography hides information inside other files but is not a standard enterprise access method. VPN access should be paired with strong authentication, device compliance checks, least privilege, logging, and segmentation. The encrypted tunnel protects data in transit, while access policy determines which users and devices are allowed to reach the branch resources. Reference/topics: Network Security 3.3, VPNs; Identity Security 7.1.2, MFA.
A VPN is used for which purpose?
Site-to-site connectivity being secured
IP addressing being requested by a device
Packets being arranged in the correct order
Virtual machines (VMs) being created
A VPN is used to secure connectivity, including site-to-site connectivity between networks. Site-to-site VPNs create encrypted tunnels between locations such as branch offices, data centers, and cloud environments. The purpose is to protect traffic as it crosses an untrusted or shared network. Requesting IP addressing is a DHCP function. Arranging packets in the correct order is associated with transport-layer reliability, especially TCP sequencing, not VPN. Creating virtual machines is a virtualization or cloud infrastructure function. VPNs can also support remote access, allowing users to securely connect to enterprise resources from outside the corporate network. Security teams must remember that VPNs protect transport but do not automatically guarantee authorization. Strong authentication, least privilege, device posture checks, logging, and segmentation should also be applied. In simple terms, a VPN creates a protected tunnel, but policy still determines who can use it and what they can reach. Reference/topics: Network Security 3.3, VPNs; Network Security 3.4, tunneling protocols.
What will cause an unusually high number of false positive alerts?
Post-breach recovery plan is well defined.
User privilege is configured to be strict.
Device is unable to receive an IP address.
Traffic match criteria is too generalized.
A false positive occurs when a security tool generates an alert for activity that is actually benign. Overly generalized traffic match criteria can cause a high number of false positives because the detection rule captures too much normal behavior. For example, a rule that flags all encrypted outbound traffic as suspicious would produce excessive alerts because encrypted web traffic is common and expected. Effective detection criteria must be specific enough to identify meaningful risk while broad enough to catch real threats. A well-defined post-breach recovery plan improves response readiness but does not directly create false positives. Strict user privileges may reduce risk and are not a normal cause of noisy alerts. A device failing to receive an IP address is an operational connectivity issue, not a typical false-positive driver. SOC teams manage false positives through tuning, baselining, enrichment, severity adjustment, and better rule logic. Reference/topics: Security Operations 6.4, false positive and false negative alerts; Security Operations 6.2, SOC performance optimization.
Which stage of the cyber attack lifecycle is characterized by attackers passing instructions back and forth between infected devices and their own infrastructure?
Command and Control (C2)
Weaponization and Delivery
Exploitation
Reconnaissance
Command and Control, or C2, is the phase in which compromised systems communicate with attacker-controlled infrastructure to receive instructions, send status updates, download additional payloads, or coordinate malicious activity. This back-and-forth communication allows attackers to operate the compromised device remotely and adapt their actions after initial compromise. Weaponization and Delivery involve preparing and transmitting the malicious payload, not managing an already infected host. Exploitation is the act of using a vulnerability or weakness to gain unauthorized access. Reconnaissance is information gathering before compromise. C2 is especially important in detection engineering because outbound traffic patterns, unusual domains, beaconing intervals, and connections to suspicious infrastructure can reveal that an endpoint is under external control. Blocking C2 can disrupt an attacker’s ability to move laterally, exfiltrate data, or complete actions on objectives. Reference/topics: Cybersecurity 1.2, cyber attack lifecycle; Cybersecurity 1.3, command and control as a common attack type.
How does antivirus software contribute to endpoint security?
By enforcing strong password security policies for user account access
By filtering unsolicited commercial email from a user’s inbox
By scanning files and programs for known malware signatures
By creating secure, isolated environments for untested applications
Antivirus software contributes to endpoint security by scanning files, programs, and sometimes memory or processes for known malware signatures and suspicious patterns. Signature-based detection compares observed files or code characteristics against known malicious indicators. This helps identify viruses, trojans, worms, spyware, and other malicious software before or during execution. Antivirus may also include heuristic or behavioral detection, but the answer specifically identifies known malware signatures, which is a classic antivirus function. Strong password policies are part of identity security, not antivirus. Filtering unsolicited commercial email is a function of email security or spam filtering. Isolating untested applications describes sandboxing or application isolation rather than standard antivirus scanning. Antivirus remains a basic endpoint control, although modern endpoint protection platforms often add behavior analytics, exploit prevention, device control, and response capabilities. The objective is to reduce the chance that malicious files can execute or persist on user systems. Reference/topics: Endpoint Security 4.3, antivirus and endpoint security components; Cybersecurity 1.5, threat prevention practices.
What is an example of an exploit?
Misconfigured access control
Unpatched software
Buffer overflow attack
Exposed password
An exploit is a technique, code path, or attack method that takes advantage of a vulnerability. A buffer overflow attack is an exploit because it abuses improper memory handling to overwrite memory and potentially execute malicious code, crash a process, or alter program behavior. Misconfigured access control is a vulnerability: it is the weakness that may allow unauthorized access. Unpatched software is also a vulnerability because known flaws remain present. An exposed password is a credential exposure or security weakness, not the exploit itself. The distinction is essential: vulnerabilities are conditions, exploits are methods that use those conditions, and attacks are the broader malicious actions performed by threat actors. Defenders reduce exploitability by patching, secure coding, configuration hardening, input validation, exploit prevention, segmentation, and monitoring. Reference/topics: Cybersecurity 1.1, vulnerabilities and exploits; Cybersecurity 1.5, threat prevention practices.
Which attack takes place in the Exploitation phase of the cyber attack lifecycle?
Weaponized PDF file executing on a target
Malicious phishing link sent to a target
Polymorphic malware altering its structure on a target after gaining access
Undisclosed software vulnerability used to gain remote access to a target
Exploitation occurs when an attacker takes advantage of a vulnerability to cause unauthorized behavior, such as code execution, authentication bypass, privilege escalation, or remote access. An undisclosed software vulnerability used to gain remote access is a clear example of exploitation because the attacker is actively using a weakness to compromise the target. A malicious phishing link sent to a target is delivery, because it attempts to place the attack mechanism in front of the victim. A weaponized PDF executing may overlap with exploitation depending on the payload, but the strongest answer is the use of a software vulnerability to gain access. Polymorphic malware changing its structure after access is more closely related to evasion and persistence after compromise. The exam objective requires candidates to distinguish lifecycle stages by attacker intent: reconnaissance gathers, weaponization prepares, delivery transmits, exploitation triggers compromise, installation persists, command-and-control manages, and actions on objectives achieve the mission. Reference/topics: Cybersecurity 1.2, attack lifecycle; Cybersecurity 1.1, vulnerabilities and exploits.
What is the purpose of continuous deployment in the CI/CD lifecycle?
Maintaining a state in which any version of the software can be deployed to a production environment.
Merging code changes into a central repository
Packaging code into a Docker container for deployment
Automatically deploying every change that passes the automated tests to production, minimizing lead time
Continuous deployment is the CI/CD practice in which every code change that successfully passes automated tests and quality gates is automatically released to production. The purpose is to reduce lead time, accelerate delivery, and make deployments smaller, more frequent, and more repeatable. This differs from continuous delivery, where software is kept in a deployable state but production release may still require manual approval. Merging code changes into a central repository is continuous integration. Packaging code into a Docker container may be part of a pipeline, but it is not the defining purpose of continuous deployment. Maintaining a deployable state describes continuous delivery more closely than continuous deployment. From a security perspective, CI/CD must include guardrails such as code scanning, dependency checks, secrets detection, image scanning, and deployment policy enforcement. Rapid deployment without security checks can spread defects quickly, while secure CI/CD improves both speed and control. Reference/topics: Cloud Security 5.6, CI/CD; Identity Security 7.4, secrets management in CI/CD pipelines.
Which device operates at OSI Layer 2?
Hub
Switch
Router
Modem
A switch operates primarily at OSI Layer 2, the Data Link layer. It forwards Ethernet frames based on MAC addresses and builds a MAC address table to determine which port should receive traffic. This makes switching more efficient than a hub, which operates at Layer 1 and repeats signals without understanding frames. A router operates at Layer 3 by forwarding packets based on IP addresses and routing tables. A modem is generally associated with physical or access-layer signal conversion rather than Layer 2 switching. Layer 2 switching is important for local network communication, VLAN segmentation, and broadcast domain control. Security teams need to understand Layer 2 because attacks such as MAC flooding, VLAN hopping, and ARP spoofing can occur at this level. While switches are not the same as firewalls, proper switch configuration supports network segmentation and reduces unnecessary traffic exposure. Reference/topics: Network Fundamentals 2.7, devices operating Layers 1 through 4; Network Security 3.1, VLANs.
What is a result of the Actions on the Objective phase in the cyber attack lifecycle?
Host sweeps and port scans are performed.
Outbound communication channels are established.
Data is exfiltrated and web property is defaced.
Exploits are launched against a vulnerable application.
Actions on the Objective is the stage where the attacker performs the mission they intended to accomplish. This may include stealing data, encrypting systems for ransom, defacing a website, destroying information, disrupting services, or manipulating business processes. Data exfiltration and web property defacement are clear outcomes of this phase because the attacker has already progressed through earlier stages and is now achieving the final goal. Host sweeps and port scans belong to reconnaissance because they help identify targets. Outbound communication channels are associated with Command and Control, where compromised systems exchange instructions with attacker infrastructure. Exploits launched against a vulnerable application occur during the exploitation phase. Understanding this lifecycle helps defenders align controls: reconnaissance can be limited through exposure management, delivery can be filtered, exploitation can be blocked through patching and IPS, C2 can be detected through outbound monitoring, and actions on objectives can be constrained by segmentation and DLP. Reference/topics: Cybersecurity 1.2, cyber attack lifecycle.
A data center needs to secure its infrastructure from network-based threats. Which two technologies will address this need? (Choose two.)
Next-generation firewall
Intrusion prevention system (IPS)
Intrusion detection system (IDS)
Proxy
A next-generation firewall and an intrusion prevention system are appropriate technologies for securing data center infrastructure from network-based threats. The NGFW enforces application-aware security policy and can inspect traffic for threats. An IPS inspects traffic inline and blocks malicious packets or exploit attempts before they reach protected systems. An IDS is valuable for detection and alerting, but because it is generally passive, it does not provide the same preventive control as IPS. A proxy can secure certain traffic flows, especially web traffic, but it is not the broadest answer for protecting general data center infrastructure. Data centers require preventive controls because attacks may target public-facing services, internal applications, management interfaces, or east-west workload traffic. NGFW and IPS technologies help reduce exposure by enforcing policy, blocking known threats, and supporting segmentation. Reference/topics: Network Security 3.2, NGFWs; Cybersecurity 1.5, intrusion prevention systems and firewalls.
Which event would generate a false positive alert?
A firewall categorizes a benign application as malicious.
A network sensor is unable to identify a custom application.
A network tunnel accidentally switches from one route to another.
An employee attempts to access an unauthorized application.
A false positive occurs when a security control identifies normal or benign activity as malicious. If a firewall categorizes a benign application as malicious, it generates an alert or enforcement decision that incorrectly indicates threat activity. That is the definition of a false positive. A network sensor being unable to identify a custom application is a visibility or classification limitation, but not necessarily a false positive unless it incorrectly labels the traffic as malicious. A tunnel switching routes may be a network event or availability issue. An employee attempting to access an unauthorized application may be a true policy violation, even if it is not malicious. False positives matter because they consume analyst time, reduce trust in alerts, and contribute to alert fatigue. SOC teams reduce false positives by tuning rules, improving context, using baselines, adding allow lists carefully, and refining detection logic. Reference/topics: Security Operations 6.4, false positive and false negative alerts; Network Security 3.2, firewall policy enforcement.
What are two endpoint security implementation methods? (Choose two.)
Installing an anti-malware agent onto a user device
Deploying a firewall to prevent traffic from reaching an end user
Enforcing security policies on north-south traffic between users and the internet
Downloading software onto a laptop to prevent spyware
Endpoint security focuses on protecting the individual device where users work, such as laptops, desktops, mobile devices, and other endpoint systems. Installing an anti-malware agent onto a user device is a direct endpoint security implementation method because the security control resides on the host and inspects files, processes, and system behavior for malicious activity. Downloading software onto a laptop to prevent spyware is also an endpoint-focused control because it protects the local device against malicious code designed to monitor activity, steal data, or weaken the operating environment. By contrast, deploying a firewall to prevent traffic from reaching an end user is primarily a network security control when placed at the network boundary. Enforcing north-south traffic policies is also network security because it governs traffic moving between internal users and the internet. Palo Alto Networks identifies endpoint security objectives and components such as security updates, antivirus, and host-based firewalls under the Endpoint Security domain. Reference: Cybersecurity Apprentice Datasheet, Endpoint Security 4.2 and 4.3.
What occurs in the reconnaissance stage of the cyber attack lifecycle?
File exfiltration
SQL injection
Host sweep
Phishing campaign
Reconnaissance is the information-gathering stage of the cyber attack lifecycle. During this phase, attackers attempt to understand the target environment before selecting a delivery path or exploit. A host sweep is a reconnaissance activity because it identifies live systems within an address range. This helps an attacker map reachable hosts, discover exposed services, and prioritize later scanning or exploitation. File exfiltration occurs much later, during actions on objectives, after access has been obtained. SQL injection is an exploitation technique against an application or database-backed service. A phishing campaign is normally associated with delivery, where the attacker attempts to place a malicious link, attachment, or credential-harvesting page in front of a user. Reconnaissance is the attacker’s “survey the terrain” phase: it does not yet require compromise, but it materially improves the attacker’s chance of success. Reference/topics: Cybersecurity 1.2, cyber attack lifecycle; Cybersecurity 1.3, common attack types.
What is the primary goal of the Weaponization and Delivery stage in the cyber attack lifecycle?
Developing and testing malware for bypassing defenses
Ensuring compliance with Security policies
Distributing compromised hardware to targets
Creating a malicious payload by using vulnerabilities
The Weaponization and Delivery stage focuses on preparing and transmitting the attack mechanism that will be used against the target. In this phase, the attacker turns knowledge gathered during reconnaissance into a usable malicious payload. That payload may exploit a software vulnerability, embed malicious code into a document, or prepare a link, file, or package that can compromise the victim once executed or accessed. The correct answer is D because it combines the creation of a malicious payload with the use of vulnerabilities, which is the operational purpose of weaponization. Developing and testing malware is related, but it is narrower and does not fully capture delivery to the target. Compliance with security policies is a defensive governance activity, not an attacker lifecycle phase. Distributing compromised hardware can occur in some supply chain attacks, but it is not the primary definition of this lifecycle stage. Palo Alto Networks requires candidates to identify and describe stages of the cyber attack lifecycle under the Cybersecurity domain. Reference: Cybersecurity Apprentice Datasheet, Cybersecurity 1.2.
Which protocol uses encryption to secure its communications?
Telnet
SSH
NAT
DHCP
SSH, or Secure Shell, uses encryption to protect remote administrative sessions and related communications. It is commonly used to securely access command-line interfaces on servers, network devices, and cloud systems. SSH protects confidentiality and integrity by encrypting the session, making it far safer than Telnet. Telnet sends traffic in plaintext and should not be used for secure administration. NAT translates IP addresses but is not a secure communication protocol. DHCP assigns IP configuration information to clients and does not provide encrypted administrative access. SSH is a tunneling and secure communication protocol because it can authenticate endpoints, protect credentials, and prevent eavesdropping on management traffic. In operational environments, replacing Telnet with SSH is a basic hardening step because management protocols often carry powerful credentials. Encryption alone is not the whole control; secure key management, strong authentication, and access restrictions are also required. Reference/topics: Network Security 3.4, tunneling protocols including SSH; Network Fundamentals 2.4, DHCP and NAT.
What is the fundamental role of a proxy server in internet communication?
Enhancing the processing power of a user device when accessing internet.
Managing and securing email communications.
Acting as an intermediary, routing traffic between users and online resources.
Directly connecting endpoint agents to web servers.
A proxy server acts as an intermediary between a client and an online resource. Instead of the user system connecting directly to the destination server, the request is sent to the proxy, which forwards, filters, logs, or inspects the traffic according to policy. This design allows organizations to control web access, enforce acceptable use policies, inspect content, apply authentication, and hide some internal network details from external destinations. A proxy does not increase the processing power of the user’s device. It is not limited to email, although mail security gateways can perform similar intermediary functions for email traffic. It also does not directly connect endpoint agents to web servers as its core function. In security architecture, proxies are useful control points because they sit in the request path and can make decisions before a user reaches a site or downloads content. Reference/topics: Network Security 3.3, proxies and URL filtering; Network Security 3.6, enterprise browsers.
What are two functions of VPN gateways? (Choose two.)
Certificate refresh
Site-to-Site connectivity
Remote access
URL filtering
VPN gateways commonly provide site-to-site connectivity and remote access. Site-to-site VPN connects networks across encrypted tunnels, such as branch office to headquarters or cloud network to data center. Remote access VPN allows individual users to securely connect to enterprise resources from outside the corporate network. Certificate refresh may support authentication infrastructure in some environments, but it is not a primary VPN gateway function in this question. URL filtering controls web access based on categories or reputation and is a separate network security function. VPN gateways terminate encrypted tunnels, authenticate peers or users, and route protected traffic into the appropriate network. They are important because they allow secure communication over untrusted networks, but they must be configured carefully. Weak authentication, overly broad access, split tunneling misconfiguration, or poor logging can turn VPN access into a major risk path. Reference/topics: Network Security 3.3, VPNs; Network Security 3.4, IKE and tunneling protocols.
Which cloud service model allows a third-party provider to host an application that is readily available for customer use?
Software as a service (SaaS)
Platform as a service (PaaS)
Desktop as a service (DaaS)
Infrastructure as a service (IaaS)
Software as a Service provides a complete application hosted and operated by a third-party provider and made available to customers over a network, usually through a browser or client application. The customer consumes the software without managing the underlying servers, operating system, runtime, or application infrastructure. Examples include business productivity suites, CRM platforms, collaboration tools, and many security consoles. PaaS provides a managed development or application platform, not a finished application. IaaS provides infrastructure resources such as compute and storage, leaving the customer responsible for more of the workload stack. Desktop as a Service provides hosted virtual desktops, but it is not the general model described by a provider-hosted application ready for customer use. SaaS changes the shared responsibility boundary because the provider handles more of the application delivery stack, while the customer still manages data, users, access policies, and configuration choices. Reference/topics: Cloud Security 5.2, SaaS, PaaS, IaaS, NaaS; Cloud Security 5.3, shared responsibility.
Which function is a part of security operations?
Migrate
Eliminate
Mitigate
Orchestrate
Mitigate is a core security operations function. Security operations teams identify, detect, investigate, mitigate, and improve. Mitigation means reducing the impact or likelihood of an incident, threat, vulnerability, or unsafe condition. In practice, mitigation may include isolating an endpoint, blocking a malicious domain, disabling a compromised account, applying a firewall rule, removing malware, or containing suspicious traffic. Migration is an IT or cloud transformation activity and is not a standard SOC function. Elimination may be a desired outcome in some contexts, but security operations generally uses containment, mitigation, eradication, and recovery language. Orchestrate is related to SOAR tooling, but it describes coordination of automated actions rather than a named security operations function in the objective set. Mitigation is the practical bridge between investigation and recovery: after the team understands enough about the incident, it acts to reduce damage and prevent further spread. Reference/topics: Security Operations 6.1, Identify/Detect, Investigate, Mitigate, Improve.
Which stage of the cyber attack lifecycle is characterized by an attacker passing instructions back and forth between infected devices and their own infrastructure?
Command-and-control (C2)
Exploitation
Reconnaissance
Weaponization and Delivery
Command-and-control is the lifecycle stage where compromised systems communicate with attacker-controlled infrastructure. This communication may deliver commands, retrieve additional malware, update configuration, report system status, or prepare for lateral movement and data theft. The phrase “passing instructions back and forth” is the defining signal for C2. Exploitation is the moment an attacker uses a weakness to compromise a system. Reconnaissance is pre-attack information gathering. Weaponization and Delivery involve preparing and transmitting the malicious payload to the target. C2 traffic is a high-value detection opportunity because it often requires outbound communication to domains, IP addresses, or protocols that differ from normal business activity. Defenders look for beaconing patterns, suspicious DNS queries, unusual destinations, and connections to known malicious infrastructure. Disrupting C2 can limit an attacker’s ability to operate even after initial compromise. Reference/topics: Cybersecurity 1.2, cyber attack lifecycle; Cybersecurity 1.3, command and control.
Which cloud computing model is appropriate for a company that requires an isolated environment which meets strict compliance requirements and maintains enhanced security?
Hybrid
Private
Public
Community
A private cloud is appropriate when a company requires an isolated environment, strict compliance support, and enhanced control over security. Private cloud infrastructure is dedicated to a single organization and can be hosted on-premises or by a provider. It allows greater control over data location, access, architecture, and security configuration than a general public cloud model. A hybrid cloud combines private and public resources, but the question emphasizes isolation rather than mixed deployment. A public cloud is shared provider infrastructure used by many customers and may not satisfy isolation requirements without additional controls. A community cloud is shared by organizations with common requirements, but it is not dedicated to one organization. Private cloud does not automatically guarantee security; it still requires strong identity controls, monitoring, patching, segmentation, and governance. Its advantage is control and dedicated use, which can support sensitive or regulated workloads. Reference/topics: Cloud Security 5.1, cloud deployment models; Cloud Security 5.3, shared responsibility.
Which cloud computing model allows a single organization to keep its data in a private environment but also access the scalability and cost-effectiveness of public resources?
Hybrid
Public
Community
Private
A hybrid cloud model combines private cloud or private infrastructure with public cloud resources. It allows an organization to keep sensitive workloads or data in a controlled private environment while using public cloud capacity for elasticity, scalability, geographic reach, or cost optimization. This model is common when organizations have regulatory requirements, legacy systems, or sensitive datasets that cannot be moved fully into a public cloud, but still need the flexibility of public services. A public cloud is shared provider-operated infrastructure available to many customers. A private cloud is dedicated to one organization but does not inherently provide public cloud scalability unless integrated with it. A community cloud is shared by organizations with common requirements, such as sector-specific compliance needs. Hybrid cloud security requires consistent visibility, identity controls, policy enforcement, and shared responsibility awareness across both private and public components. Reference/topics: Cloud Security 5.1, cloud-computing deployment models; Cloud Security 5.3, shared responsibility model.
What is an effective use case of URL filtering?
Monitoring threat logs and traffic logs
Restricting access to phishing websites
Acting as a sandbox for potentially malicious files
Discovering internet of things (IoT) devices
Restricting access to phishing websites is an effective URL filtering use case. URL filtering evaluates web destinations by category, reputation, risk, or policy and can block users from visiting malicious or prohibited sites. Phishing sites are designed to steal credentials or sensitive information, so blocking known or suspected phishing URLs reduces the chance that users will submit passwords or tokens to attacker-controlled pages. Monitoring threat logs and traffic logs is a security operations activity, not the direct purpose of URL filtering. Sandboxing potentially malicious files is a malware analysis function. Discovering IoT devices is asset visibility or IoT security, not URL filtering. URL filtering is especially valuable when combined with user awareness, DNS security, browser protection, and identity-based policy. Because phishing often starts with a link, controlling access to risky web destinations is a practical prevention layer. Reference/topics: Network Security 3.3, URL filtering; Cybersecurity 1.3, social engineering and phishing.
Which duties are part of a triage analyst role in security operations?
Proactively hunting for threats, vulnerabilities, and exploits
Supporting only the most complex incident responses and reviewing forensic and telemetry data for threats
Providing detailed threat intelligence reports and recommendations for remediation
Identifying the source, scope, and impact of an incident
A triage analyst performs the initial analysis of alerts and incidents to determine whether they are legitimate, how severe they are, and what action should occur next. Identifying the source, scope, and impact of an incident is central to this role. Source means where the activity originated or which account, host, or network path is involved. Scope means how many systems, users, or services are affected. Impact means the business or technical consequence of the activity. Proactive hunting is usually associated with threat hunters or senior analysts. Complex forensic work is generally handled by higher-tier incident responders or forensic specialists. Producing detailed threat intelligence reports is normally a threat intelligence function. Triage is the SOC’s first sorting mechanism: it turns raw alerts into prioritized work and prevents analysts from treating every event as equal. Good triage reduces alert fatigue, speeds escalation, and improves containment decisions. Reference/topics: Security Operations 6.1, identify/detect and investigate; Security Operations 6.3, event, alert, SOC, incident response.
Why would an organization implement a demilitarized zone (DMZ)?
To provision multiple external zones that allow for destination NAT
To facilitate the use of SD-WAN departments within an organization
To allow effective communications with other organizations
To protect internal resources while still allowing access to public-facing internet services
A DMZ is implemented to host public-facing services while reducing direct exposure to the internal trusted network. Web servers, mail gateways, VPN portals, or other externally accessible systems may be placed in a DMZ so internet users can reach required services without being allowed directly into internal resources. The DMZ acts as a controlled buffer zone between untrusted external networks and trusted internal networks. Destination NAT may be used with DMZ services, but provisioning external zones for NAT is not the core reason. SD-WAN departments is not a valid DMZ purpose. Communication with other organizations may occur through public services, but the security purpose is controlled exposure and internal protection. DMZ design supports segmentation, firewall policy, logging, and containment. If a public-facing server is compromised, proper DMZ controls reduce the attacker’s ability to pivot into sensitive internal systems. Reference/topics: Network Security 3.1, zone segmentation; Network Security 3.2, firewall policy enforcement.
What is a cluster in relation to cloud-native security?
Portable and self-sufficient unit that packages an application with its dependencies
Set of system rules written in a particular programming language
Collection of nodes (bare-metal or virtualized machines) that will host application pods
Distributed collection of servers that hosts software and is accessible over the internet
In cloud-native security, a cluster is a collection of compute nodes that run containerized workloads. These nodes may be physical bare-metal systems or virtualized machines, and together they provide the execution environment for application pods. In Kubernetes-style architectures, a pod is the smallest deployable unit, and the cluster provides scheduling, networking, scaling, and orchestration capabilities. Answer A describes a container, not a cluster, because a container packages application code with the runtime and dependencies needed to execute consistently across environments. Answer B describes code or policy logic, not infrastructure. Answer D is a broad description of cloud-hosted services but lacks the specific cloud-native meaning of nodes hosting pods. Palo Alto Networks includes common cloud terms such as virtualization, virtual machine, container, microservice, and API in the Cloud Security domain, and also includes cloud-native security platform concepts. Understanding clusters is essential because cloud-native security must protect the orchestration layer, workload runtime, identities, configurations, and network paths between services. Reference: Cybersecurity Apprentice Datasheet, Cloud Security 5.4 and 5.5.
Copyright © 2014-2026 Certensure. All Rights Reserved