nuclei-templates/http/technologies/aws/aws-cloudfront-service.yaml

25 lines
650 B
YAML
Raw Normal View History

id: aws-cloudfront-service
info:
2021-10-28 16:07:37 +00:00
name: AWS Cloudfront service detection
author: jiheon-dev
severity: info
2021-10-28 16:07:37 +00:00
description: Detect websites using AWS cloudfront service
tags: aws,tech,service
metadata:
max-request: 1
http:
- method: GET
path:
- "{{BaseURL}}"
matchers:
2021-10-28 16:07:37 +00:00
- type: dsl
condition: or
2021-10-28 16:07:37 +00:00
dsl:
- "contains(tolower(header), 'x-cache: hit from cloudfront')"
- "contains(tolower(header), 'x-cache: refreshhit from cloudfront')"
- "contains(tolower(header), 'x-cache: miss from cloudfront')"
- "contains(tolower(header), 'x-cache: error from cloudfront')"