mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-25 00:55:26 +00:00
* fix missing browser init * . * using lazy init * updating test with new web ui * go mod * sandbox test * non fatal error
26 lines
603 B
YAML
26 lines
603 B
YAML
id: dns-http-proto-prefix
|
|
|
|
info:
|
|
name: multi protocol request with dynamic values
|
|
author: pdteam
|
|
severity: info
|
|
|
|
dns:
|
|
- name: "{{FQDN}}" # DNS Request
|
|
type: cname
|
|
|
|
ssl:
|
|
- address: "{{Hostname}}" # ssl request
|
|
|
|
http:
|
|
- method: GET # http request
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- contains(http_body, 'ProjectDiscovery') # check for http string
|
|
- dns_cname == 'cname.vercel-dns.com' # check for cname (extracted information from dns response)
|
|
- ssl_subject_cn == 'cloud.projectdiscovery.io'
|
|
condition: and |