mirror of https://github.com/daffainfo/nuclei.git
22 lines
312 B
YAML
22 lines
312 B
YAML
|
id: caa-fingerprinting
|
||
|
|
||
|
info:
|
||
|
name: CAA Fingerprint
|
||
|
author: pdteam
|
||
|
severity: info
|
||
|
tags: dns,caa
|
||
|
|
||
|
dns:
|
||
|
- name: "{{FQDN}}"
|
||
|
type: CAA
|
||
|
|
||
|
matchers:
|
||
|
- type: word
|
||
|
words:
|
||
|
- "IN\tCAA"
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
group: 1
|
||
|
regex:
|
||
|
- "IN\tCAA\t(.+)"
|