mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-27 19:05:28 +00:00
* add execute function in dns * Add payload in dns protocol * Add integration test to cover dns payload - also check command line overriding a payload variable * Update matchedAt and remove trailing dot * Consider payload data for request count - Update verbose output to print question - Update dns requests Requests function to consider payload data * update gitignore * bump nuclei version to v2.9.4-dev --------- Co-authored-by: Tarun Koyalwar <tarun@projectdiscovery.io>
30 lines
420 B
YAML
30 lines
420 B
YAML
id: dns-attack
|
|
|
|
info:
|
|
name: basic dns template
|
|
author: pdteam
|
|
severity: info
|
|
|
|
|
|
dns:
|
|
- name: "{{subdomain_wordlist}}.{{FQDN}}"
|
|
type: A
|
|
|
|
attack: batteringram
|
|
payloads:
|
|
subdomain_wordlist:
|
|
- one
|
|
- docs
|
|
- drive
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "IN\tA"
|
|
|
|
extractors:
|
|
- type: regex
|
|
group: 1
|
|
regex:
|
|
- "IN\tA\t(.+)"
|