mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 05:25:25 +00:00
* Extend dns extractor to dns answer records * add test template * Ignore error for dns variables are not found * Add all the records of answer section * Fixed the wrong typecasting
23 lines
313 B
YAML
23 lines
313 B
YAML
id: dns-template
|
|
|
|
info:
|
|
name: basic dns template
|
|
author: pdteam
|
|
severity: info
|
|
|
|
dns:
|
|
- name: "{{FQDN}}"
|
|
type: CNAME
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- "rcode == 0"
|
|
|
|
extractors:
|
|
- type: dsl
|
|
dsl:
|
|
- rcode
|
|
- cname
|
|
- a
|
|
- aaaa |