nuclei-templates/dns/mx-fingerprint.yaml

31 lines
616 B
YAML
Raw Normal View History

id: mx-fingerprint
info:
name: MX Record Detection
author: pdteam
severity: info
description: An MX record was detected. MX records direct emails to a mail exchange server.
reference:
- https://www.cloudflare.com/learning/dns/dns-records/dns-mx-record/
- https://mxtoolbox.com/
classification:
cwe-id: CWE-200
metadata:
max-request: 1
2023-10-14 11:27:55 +00:00
tags: dns,mx
dns:
- name: "{{FQDN}}"
type: MX
matchers:
2023-09-29 15:10:50 +00:00
- type: regex
part: answer
regex:
- "IN\tMX\\t(.+)$"
extractors:
- type: regex
group: 1
regex:
2023-10-14 11:27:55 +00:00
- "IN\tMX\t(.+)"