Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
projectdiscovery
GitHub Repository: projectdiscovery/nuclei
Path: blob/dev/integration_tests/protocols/dns/payload.yaml
2070 views
1
id: dns-attack
2
3
info:
4
name: basic dns template
5
author: pdteam
6
severity: info
7
8
9
dns:
10
- name: "{{subdomain_wordlist}}.{{FQDN}}"
11
type: A
12
13
attack: batteringram
14
payloads:
15
subdomain_wordlist:
16
- one
17
- docs
18
- drive
19
20
matchers:
21
- type: word
22
words:
23
- "IN\tA"
24
25
extractors:
26
- type: regex
27
group: 1
28
regex:
29
- "IN\tA\t(.+)"
30
31