nuclei-templates/http/technologies/akamai-cache-detect.yaml

29 lines
802 B
YAML
Raw Normal View History

2022-12-22 12:09:48 +00:00
id: akamai-cache-detect
info:
2022-12-22 17:03:23 +00:00
name: Akamai Cache Detection
2022-12-22 12:09:48 +00:00
author: nybble04
severity: info
2022-12-22 17:03:23 +00:00
description: |
Sends a HEAD request with a Pragma header value of "akamai-x-cache-on" and looks for an akamai-specific response header value.
2022-12-22 12:09:48 +00:00
reference:
- https://community.akamai.com/customers/s/article/Using-Akamai-Pragma-headers-to-investigate-or-troubleshoot-Akamai-content-delivery?language=en_US
- https://spyclub.tech/2022/12/14/unusual-cache-poisoning-akamai-s3/
metadata:
max-request: 1
2022-12-22 12:09:48 +00:00
verified: true
2022-12-22 17:03:23 +00:00
tags: cache,akamai,tech
2022-12-22 12:09:48 +00:00
http:
2022-12-22 12:09:48 +00:00
- method: HEAD
2022-12-22 13:06:03 +00:00
path:
2022-12-22 12:09:48 +00:00
- "{{BaseURL}}"
headers:
Pragma: akamai-x-cache-on
matchers:
- type: regex
part: header
regex:
- '(?:TCP_HIT|TCP_MISS).*deploy\.akamaitechnologies\.com'