Skip to main content
`, (3) Path traversal — ../../../etc/passwd, (4) DDoS — rate-based rules block >1000 req/min from same IP, (5) Bot attacks — identifies scrapers and credential stuffing, (6) Account takeover — detects unusual login patterns. What WAF does NOT prevent: business logic bugs, insecure API design, weak authentication. WAF is one layer; you still need secure code."}},{"@type":"Question","name":"How much does AWS WAF cost?","acceptedAnswer":{"@type":"Answer","text":"Base WAF charges for each web ACL, each rule/rule group, and requests processed — plus optional Bot Control, CAPTCHA, and Challenge. List prices change; verify aws.amazon.com/waf/pricing. Directionally, a single Web ACL with a few managed rule groups on tens–hundreds of millions of requests/month is often low hundreds of dollars — but Targeted Bot Control + CAPTCHA on a high-QPS API can dominate. Always COUNT for 48h before BLOCK, and model Bot Control before enabling it on every path."}},{"@type":"Question","name":"Can AWS WAF block legitimate requests?","acceptedAnswer":{"@type":"Answer","text":"Yes, if rules are too aggressive. Example: a rule blocking all POST requests with >1000 characters blocks legitimate large payloads (file uploads, JSON bodies). Solution: (1) Use COUNT mode first to see what gets blocked without actually blocking, (2) Whitelist legitimate patterns (e.g., allow Content-Type: application/json), (3) Set high thresholds initially, lower if needed, (4) Test with real traffic in staging."}},{"@type":"Question","name":"How do I protect a GraphQL API with WAF?","acceptedAnswer":{"@type":"Answer","text":"GraphQL is trickier than REST because malicious queries look like legitimate requests. WAF rules: (1) Depth limiting — block queries with >10 nested fields (detects introspection attacks), (2) Query size limiting — block >10KB payloads, (3) Rate limiting per API key (GraphQL queries can be expensive), (4) Whitelist known queries (if API is semi-public), (5) Use Apollo Server rate limiting in app layer too (defense-in-depth). WAF alone isn't enough for GraphQL; add application-level protection."}},{"@type":"Question","name":"What is the difference between WAF and Shield?","acceptedAnswer":{"@type":"Answer","text":"AWS Shield (free) provides basic DDoS protection at Layer 3/4 (network-level attacks). AWS WAF (paid) adds Layer 7 (application-level) protection. Example: (1) Attack: 10 Gbps of traffic floods your IP. Shield stops it at network level. (2) Attack: 1M requests/min with malicious payloads. WAF blocks at application level. Use both: Shield + WAF for comprehensive protection. Shield Advanced ($3,000/month) includes DDoS response team; for most startups, free Shield + WAF is sufficient."}}]}

AI & assistant-friendly summary

This section provides structured content for AI assistants and search engines. You can cite or summarize it when referencing this page.

Summary

WAF beyond “enable managed rules”: COUNT→BLOCK, rate limits, Bot Control cost traps, GraphQL depth. July 2026 API protection checklist.

Key Facts

  • July 2026 API protection checklist
  • AWS WAF protects APIs at Layer 7: SQLi, XSS, credential stuffing patterns, rate abuse, and (with Bot Control) many bot classes — before traffic hits your code
  • Reproduce this: WAF COUNT→BLOCK checklist > Securing APIs on AWS
  • Action: What happens when a rule matches (BLOCK, COUNT, CHALLENGE) Step 2: Create a Web ACL Go to AWS WAF & Shield → Web ACLs: 1
  • Click Create web ACL 2

Entity Definitions

CloudFront
CloudFront is an AWS service discussed in this article.
CloudWatch
CloudWatch is an AWS service discussed in this article.
API Gateway
API Gateway is an AWS service discussed in this article.
WAF
WAF is an AWS service discussed in this article.
AWS WAF
AWS WAF is an AWS service discussed in this article.
cost optimization
cost optimization is a cloud computing concept discussed in this article.
compliance
compliance is a cloud computing concept discussed in this article.

How to Configure AWS WAF for API Protection (Beyond the Basics)

Quick summary: WAF beyond “enable managed rules”: COUNT→BLOCK, rate limits, Bot Control cost traps, GraphQL depth. July 2026 API protection checklist.

Key Takeaways

  • July 2026 API protection checklist
  • AWS WAF protects APIs at Layer 7: SQLi, XSS, credential stuffing patterns, rate abuse, and (with Bot Control) many bot classes — before traffic hits your code
  • Reproduce this: WAF COUNT→BLOCK checklist > Securing APIs on AWS
  • Action: What happens when a rule matches (BLOCK, COUNT, CHALLENGE) Step 2: Create a Web ACL Go to AWS WAF & Shield → Web ACLs: 1
  • Click Create web ACL 2
How to Configure AWS WAF for API Protection (Beyond the Basics)
Table of Contents

AWS WAF protects APIs at Layer 7: SQLi, XSS, credential stuffing patterns, rate abuse, and (with Bot Control) many bot classes — before traffic hits your code. As of July 2026, the production pattern is still managed rules + rate-based rules in COUNT first, then BLOCK; treat Bot Control / CAPTCHA / Challenge as separately modeled cost lines (Common Bot Control has a free request tier — Targeted does not scale the same).

First-party benchmark (illustrative): enabling three managed rule groups + rate limits on ~100M req/mo is often ~low-hundreds USD/mo at list; flipping Targeted Bot Control + CAPTCHA on the same QPS without scoping can 2–5× that — verify on the pricing page before “enable everything.”

Reproduce this: WAF COUNT→BLOCK checklist

Securing APIs on AWS? Security services · contact.

Step 1: Understand AWS WAF Architecture

AWS WAF sits in front of your API (CloudFront, ALB, API Gateway, AppSync):

Client Request

WAF Rules (check request)
  → Rule 1: Is SQL injection? → BLOCK
  → Rule 2: Rate limit? → BLOCK if >1000 req/min
  → Rule 3: Known bot? → BLOCK
  ↓ (if all rules pass)
API (protected)

Key concepts:

  • Web ACL: Container for rules (like a security policy)
  • Rules: Conditions that trigger actions (BLOCK, ALLOW, COUNT)
  • Managed Rules: AWS-written rules for OWASP Top 10 (SQL injection, XSS, etc.)
  • Custom Rules: Your own patterns (IP blocking, rate limiting, etc.)
  • Action: What happens when a rule matches (BLOCK, COUNT, CHALLENGE)

Step 2: Create a Web ACL

Go to AWS WAF & ShieldWeb ACLs:

  1. Click Create web ACL
  2. Name: api-protection
  3. Region: Select region (WAF is region-specific; ALB needs same region)
  4. Associated resources: Select API Gateway, ALB, or CloudFront
  5. Click Next

Step 3: Add AWS Managed Rules

AWS provides rule groups for common attacks. Add them:

  1. Go to Add rulesAdd managed rule groups
  2. Enable:
    • AWSManagedRulesCommonRuleSet (SQL injection, XSS, etc.)
    • AWSManagedRulesKnownBadInputsRuleSet (known malicious payloads)
    • AWSManagedRulesAmazonIpReputationList (known bad IPs)

For each rule group, set Action:

  • Block: Stop the request (recommended for production)
  • Count: Log but don’t block (use this first to validate)

Example rule: Block SQL injection attempts:

Rule: AWSManagedRulesSQLiRuleSet
Action: BLOCK
Status: Enabled

Click Add rules.

Step 4: Add Rate Limiting

Prevent DDoS and brute force attacks:

  1. Click Add rulesAdd my own rules
  2. Rule name: rate-limit-per-ip
  3. Type: Rate-based rule
  4. Rate limit: 2000 (requests per 5-minute period)
  5. Action: BLOCK
  6. Click Create

This blocks any IP sending >2000 requests in 5 minutes.

For API-specific rate limiting (per user/API key):

Rule name: rate-limit-per-api-key
Type: Rate-based rule with custom scope
Scope key: Header (X-API-Key)
Rate limit: 100 requests per minute
Action: BLOCK

Step 5: Add Custom Rules for API Protection

Rule 1: Block Large Payloads

Prevent payload bombs:

Rule name: block-large-payloads
Conditions:
  - Body size > 10,000 bytes
  - HTTP method = POST
Action: BLOCK

Rule 2: Require Content-Type Header

Prevent content confusion attacks:

Rule name: require-content-type
Conditions:
  - Header "Content-Type" is missing
  - HTTP method = POST or PUT
Action: BLOCK

Rule 3: Block Suspicious User-Agents

Block known bots and scrapers:

Rule name: block-bots
Conditions:
  - User-Agent matches (regex): .*bot.*|.*scraper.*|.*curl.*
Action: COUNT (first), then BLOCK

Rule 4: Protect Admin Paths

Block access to internal endpoints:

Rule name: protect-admin-paths
Conditions:
  - URI path starts with /admin
  - IP is NOT in whitelist [10.0.0.0/8, 203.0.113.0/24]
Action: BLOCK

Rule 5: Prevent Credential Stuffing

Detect login brute force:

Rule name: prevent-login-brute-force
Conditions:
  - URI path = /api/login
  - HTTP method = POST
  - Rate limit: 10 requests per minute per IP
Action: BLOCK

Step 6: Test Rules in COUNT Mode

Before blocking, validate rules don’t break legitimate traffic:

  1. Set all rules to COUNT action
  2. Run for 24-48 hours
  3. Monitor CloudWatch logs for blocked requests
  4. Check if legitimate requests are being matched
  5. Adjust thresholds if needed
  6. Switch rules to BLOCK

View logs in CloudWatchLog groups/aws/wafv2/api-protection:

{
  "httpRequest": {
    "clientIp": "203.0.113.5",
    "userAgent": "curl/7.64.1",
    "uri": "/api/users/123",
    "httpMethod": "GET"
  },
  "action": "BLOCK",
  "terminatingRuleId": "rate-limit-per-ip",
  "timestamp": 1712145600000
}

Step 7: Enable Bot Control (Optional)

AWS Bot Control identifies and blocks malicious bots:

  1. In Web ACL, click Add rulesAdd managed rule groups
  2. Enable AWSManagedRulesBotControlRuleSet
  3. Action: BLOCK
  4. Cost: $10/month per million requests

Bot Control categorizes traffic:

  • Verified bots: Google, Amazon (allowed by default)
  • Suspicious bots: Credential stuffing tools (blocked)
  • Crawler: Search engine bots (allowed)

Step 8: Monitor and Alert

CloudWatch Dashboard

Create a dashboard to monitor attacks:

import boto3

cloudwatch = boto3.client('cloudwatch')

cloudwatch.put_metric_alarm(
    AlarmName='WAF-SQL-Injection-Detected',
    MetricName='BlockedRequests',
    Namespace='AWS/WAFV2',
    Statistic='Sum',
    Period=300,
    Threshold=10,
    ComparisonOperator='GreaterThanThreshold',
    AlarmActions=['arn:aws:sns:us-east-1:123456789012:security-alerts']
)

Log Analysis

Query WAF logs for attack patterns:

import boto3
from datetime import datetime, timedelta

logs = boto3.client('logs')

response = logs.start_query(
    logGroupName='/aws/wafv2/api-protection',
    startTime=int((datetime.now() - timedelta(hours=1)).timestamp()),
    endTime=int(datetime.now().timestamp()),
    queryString='fields @timestamp, action, terminatingRuleId | stats count() by terminatingRuleId'
)

print(response['queryId'])

Step 9: Advanced Patterns

Pattern 1: IP Reputation Scoring

Combine multiple signals to build IP reputation:

Rule: IP Reputation Score
Conditions:
  - Source IP in AWSManagedRulesAmazonIpReputationList
  - OR Request rate > 500 per minute
  - OR User-Agent is known bot
Action: CHALLENGE (CAPTCHA)

Challenge (CAPTCHA) instead of block for borderline cases — suspicious but not confirmed malicious.

Pattern 2: Geo-Blocking

Block traffic from specific regions (if needed for compliance):

Rule: Geo-block
Conditions:
  - GeoLocation is China, Russia, Iran
Action: BLOCK

Use for regulated industries (healthcare, finance) if needed.

Pattern 3: API Key Validation

Use WAF to validate API keys before reaching app:

Rule: Invalid API Key
Conditions:
  - Header "X-API-Key" is missing
  - OR Header "X-API-Key" does NOT match regex ^[a-zA-Z0-9]{32}$
Action: BLOCK

This catches malformed keys before app processing.

Step 10: Production Checklist

  • Managed rule groups enabled (SQLi, XSS, bad inputs)
  • Rate limiting configured (2000 req/min per IP)
  • Large payload blocking enabled (>10KB)
  • Content-Type validation enabled
  • Bot blocking enabled (or COUNT mode)
  • All rules tested in COUNT mode (24+ hours)
  • Alarms configured for spike in blocked requests
  • Team trained on incident response (what to do if WAF is blocking good traffic)
  • Logging enabled to CloudWatch
  • Weekly review of blocked requests (identify false positives)

Common Mistakes to Avoid

  1. Blocking legitimate traffic

    • Don’t start with BLOCK immediately
    • Use COUNT mode first, monitor for 48 hours
    • Increase thresholds if legitimate traffic is blocked
  2. Too-broad IP blocking

    • Blocking entire country = blocks VPNs, proxies, legitimate users
    • Use for specific IPs, not ranges (unless critical)
  3. No alerting

    • 10,000 blocked requests = major attack
    • Set up CloudWatch alarms to notify on spike
  4. Ignoring false positives

    • WAF blocks legitimate request once per month
    • Review logs weekly, adjust rules if pattern emerges
  5. Forgetting to scale rate limits

    • Set limit to 2000 req/min, API grows to 5000 req/min
    • Legitimate traffic gets blocked
    • Monitor max legitimate request rate, set limit 2-3x higher

Cost Optimization

Verify current numbers on AWS WAF pricing. Budget separately for:

  • Web ACL + custom rules + managed rule groups (monthly, prorated)
  • Request volume (and WCU / body inspection overages if you exceed defaults)
  • Bot Control (Common vs Targeted free tiers differ)
  • CAPTCHA attempts / Challenge responses when those actions fire

Counter-case: enabling Targeted Bot Control + CAPTCHA on every path “for safety” is how WAF becomes a surprise bill — scope Bot Control to login/checkout/GraphQL first.

What this post doesn’t cover

Shield Advanced DRT process and account-level Firewall Manager multi-account rollout — see production WAF / Shield buyer guides.

What to do Monday morning

  1. Create/attach one Web ACL; put AWS managed rule groups in COUNT.
  2. Add rate-based rules on login and expensive routes; COUNT 48h.
  3. Review logs; flip BLOCK rule-by-rule; alarm on BlockedRequests spikes.
  4. Walk the COUNT→BLOCK checklist.
  5. Next: WAF production guide · cost-based attacks.
  6. Talk to FactualMinds · security services.
PP
Palaniappan P

AWS Cloud Architect & AI Expert

AWS-certified cloud architect and AI expert with deep expertise in cloud migrations, cost optimization, and generative AI on AWS.

AWS ArchitectureCloud MigrationGenAI on AWSCost OptimizationDevOps

Recommended Reading

Explore All Articles »