- A
To provide centralized protection against common web exploits before traffic reaches the microservices.
Centralized WAF at the API gateway ensures consistent policy enforcement and reduces attack surface.
- B
To reduce latency by caching responses at the API gateway.
Why wrong: Caching is not a primary WAF function; it is handled by other components.
- C
To offload authentication from the microservices to the API gateway.
Why wrong: Authentication is typically handled by a separate service; WAF focuses on web exploits.
- D
To monitor API usage and detect anomalies in traffic patterns.
Why wrong: While WAFs can log traffic, anomaly detection is more the domain of API management tools.
Quick Answer
The primary reason to deploy the WAF at the API gateway rather than at the individual service level is to provide centralized protection against common web exploits before traffic reaches the microservices. By positioning the WAF at the gateway, all incoming HTTP/HTTPS traffic is inspected and filtered at a single perimeter point, blocking threats like SQL injection and XSS before they can reach any internal service. This approach directly reduces the attack surface and eliminates the operational complexity of managing separate WAF instances for each microservice, which could create coverage gaps. On the CCSP exam, this concept tests your understanding of defense-in-depth and centralized security controls in cloud architectures—a common trap is assuming individual service protection offers better granularity, when in fact it introduces management overhead and inconsistent policy enforcement. Remember the memory tip: “Gateway guards globally; services serve safely.”
CCSP Cloud Application Security Practice Question
This CCSP practice question tests your understanding of cloud application security. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A security team is implementing a web application firewall (WAF) for a cloud-based e-commerce application. The application is built on a microservices architecture and uses a RESTful API. Which of the following is the PRIMARY reason to deploy the WAF at the API gateway level rather than at the individual service level?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"primary"Why it matters: Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
To provide centralized protection against common web exploits before traffic reaches the microservices.
Deploying the WAF at the API gateway provides a centralized security enforcement point that inspects and filters all incoming HTTP/HTTPS traffic before it is routed to any individual microservice. This ensures that common web exploits—such as SQL injection, cross-site scripting (XSS), and OWASP Top 10 attacks—are blocked at the perimeter, reducing the attack surface and preventing malicious payloads from ever reaching the internal services. It also simplifies policy management and avoids the need to configure and maintain separate WAF instances for each microservice, which would introduce operational complexity and potential gaps in coverage.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
To provide centralized protection against common web exploits before traffic reaches the microservices.
Why this is correct
Centralized WAF at the API gateway ensures consistent policy enforcement and reduces attack surface.
Clue confirmation
The clue word "primary" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
To reduce latency by caching responses at the API gateway.
Why it's wrong here
Caching is not a primary WAF function; it is handled by other components.
- ✗
To offload authentication from the microservices to the API gateway.
Why it's wrong here
Authentication is typically handled by a separate service; WAF focuses on web exploits.
- ✗
To monitor API usage and detect anomalies in traffic patterns.
Why it's wrong here
While WAFs can log traffic, anomaly detection is more the domain of API management tools.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates confuse the WAF's primary security purpose (centralized exploit prevention) with other common API gateway features like caching, authentication offloading, or traffic monitoring, leading them to select a technically valid but non-primary reason for WAF placement.
Detailed technical explanation
How to think about this question
Under the hood, a WAF at the API gateway operates as a reverse proxy that terminates TLS connections, inspects HTTP request bodies, headers, and parameters against a set of rules (e.g., ModSecurity Core Rule Set or cloud provider managed rules). In a microservices architecture, individual services often have different frameworks and dependencies, making it difficult to apply consistent security patches; a centralized WAF ensures that even if a service has a known vulnerability (e.g., a deserialization flaw), the exploit is blocked before reaching the vulnerable endpoint. A real-world scenario is a cloud e-commerce app where a payment microservice runs an older version of a library—without a WAF at the gateway, an attacker could send a crafted JSON payload to exploit that service directly, but the WAF would inspect and reject the request based on signature or anomaly detection.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A security team runs a vulnerability scan on a web application and discovers an unpatched SQL injection flaw. The team prioritises remediation by CVSS score — critical flaws are patched within 24 hours, high within 7 days. Questions like this test whether you understand vulnerability management processes, scanning tools, and remediation prioritisation.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Cloud Application Security — study guide chapter
Learn the concepts, then practise the questions
- →
Cloud Application Security practice questions
Targeted practice on this topic area only
- →
All CCSP questions
504 questions across all exam domains
- →
Certified Cloud Security Professional CCSP study guide
Full concept coverage aligned to exam objectives
- →
CCSP practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related CCSP practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Cloud Application Security practice questions
Practise CCSP questions linked to Cloud Application Security.
Cloud Security Operations practice questions
Practise CCSP questions linked to Cloud Security Operations.
Legal, Risk and Compliance practice questions
Practise CCSP questions linked to Legal, Risk and Compliance.
Cloud Concepts, Architecture and Design practice questions
Practise CCSP questions linked to Cloud Concepts, Architecture and Design.
Cloud Platform and Infrastructure Security practice questions
Practise CCSP questions linked to Cloud Platform and Infrastructure Security.
Cloud Data Security practice questions
Practise CCSP questions linked to Cloud Data Security.
CCSP fundamentals practice questions
Practise CCSP questions linked to CCSP fundamentals.
CCSP scenario practice questions
Practise CCSP questions linked to CCSP scenario.
CCSP troubleshooting practice questions
Practise CCSP questions linked to CCSP troubleshooting.
Practice this exam
Start a free CCSP practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this CCSP question test?
Cloud Application Security — This question tests Cloud Application Security — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: To provide centralized protection against common web exploits before traffic reaches the microservices. — Deploying the WAF at the API gateway provides a centralized security enforcement point that inspects and filters all incoming HTTP/HTTPS traffic before it is routed to any individual microservice. This ensures that common web exploits—such as SQL injection, cross-site scripting (XSS), and OWASP Top 10 attacks—are blocked at the perimeter, reducing the attack surface and preventing malicious payloads from ever reaching the internal services. It also simplifies policy management and avoids the need to configure and maintain separate WAF instances for each microservice, which would introduce operational complexity and potential gaps in coverage.
What should I do if I get this CCSP question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "primary". Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more ways this is tested on CCSP
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A cloud security team is implementing a Web Application Firewall (WAF) for a public-facing web application. The application uses a REST API with JSON payloads. Which of the following is the WAF's primary benefit?
medium- A.Scanning for data loss prevention (DLP) violations
- B.Preventing network-layer DDoS attacks
- C.Encrypting data in transit between client and server
- ✓ D.Inspecting HTTP traffic for malicious payloads
Why D: A WAF operates at Layer 7 (application layer) and is specifically designed to inspect HTTP/HTTPS traffic for malicious payloads such as SQL injection, cross-site scripting (XSS), and JSON-based attacks. For a REST API using JSON, the WAF can parse and validate the JSON structure, blocking malformed or malicious payloads before they reach the application server. This is the primary benefit because it directly protects the application logic from web-based exploits.
Last reviewed: Jun 11, 2026
This CCSP practice question is part of Courseiva's free ISC2 certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CCSP exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.