nuclei-templates/http/technologies/cloudfoundry-detect.yaml

31 lines
671 B
YAML

id: cloudfoundry-detect
info:
name: Cloudfoundry Detect
author: uomogrande
severity: info
description: Detects cloudfoundry based on response headers
reference: https://docs.cloudfoundry.org/concepts/cf-routing-architecture.html
tags: cloudfoundry,tech
metadata:
max-request: 2
http:
- raw:
- |
GET / HTTP/1.1
Host: {{Hostname}}
# request unknown (random) route
- |
GET / HTTP/1.1
Host: {{randstr}}.com
stop-at-first-match: true
req-condition: true
matchers:
- type: dsl
dsl:
- 'contains(header, "X-Vcap-Request-Id:") || contains(header, "X-Cf-Routererror:")'