mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-29 22:23:02 +00:00
* use parsed options while signing * update project layout to v3 * fix .gitignore * remove example template * misc updates * bump tlsx version * hide template sig warning with env * js: retain value while using log * fix nil pointer derefernce * misc doc update --------- Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
26 lines
626 B
YAML
26 lines
626 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.io') # check for http string
|
|
- trim_suffix(dns_cname,'.ghost.io.') == 'projectdiscovery' # check for cname (extracted information from dns response)
|
|
- ssl_subject_cn == 'blog.projectdiscovery.io'
|
|
condition: and |