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

22 lines
634 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
tags: aws,tech
2021-10-28 16:07:37 +00:00
description: Detect websites using AWS cloudfront service
requests:
- 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(all_headers), 'x-cache: hit from cloudfront')"
- "contains(tolower(all_headers), 'x-cache: refreshhit from cloudfront')"
- "contains(tolower(all_headers), 'x-cache: miss from cloudfront')"
- "contains(tolower(all_headers), 'x-cache: error from cloudfront')"