Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/pkg/tmplexec/multiproto/testcases/multiprotodynamic.yaml
2070 views
1
id: dns-http-dynamic-values
2
3
info:
4
name: multi protocol request with dynamic values
5
author: pdteam
6
severity: info
7
8
dns:
9
- name: "{{FQDN}}" # DNS Request
10
type: a
11
12
http:
13
- method: GET # http request
14
path:
15
- "{{BaseURL}}"
16
17
matchers:
18
- type: dsl
19
dsl:
20
- body == "ok"
21
- dns_a == '128.199.158.128' # check for A record (extracted information from dns response)
22
condition: and
23