mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-29 22:23:02 +00:00
* Add support to query DNS TLSA record * fix build test * fix ci-lint * set expected to 0 * test domain update Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
22 lines
318 B
YAML
22 lines
318 B
YAML
id: tlsa-fingerprinting
|
|
|
|
info:
|
|
name: TLSA Fingerprint
|
|
author: pdteam
|
|
severity: info
|
|
tags: dns,tlsa
|
|
|
|
dns:
|
|
- name: "{{FQDN}}"
|
|
type: TLSA
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "IN\tTLSA"
|
|
|
|
extractors:
|
|
- type: regex
|
|
group: 1
|
|
regex:
|
|
- "IN\tTLSA\t(.+)" |