Template file update and references
parent
2b7575bbb6
commit
445f09a7fd
|
@ -1,29 +0,0 @@
|
||||||
id: dead-host-with-cname
|
|
||||||
|
|
||||||
info:
|
|
||||||
name: Detect Dangling cnames
|
|
||||||
author: pdteam,nytr0gen
|
|
||||||
severity: info
|
|
||||||
tags: dns
|
|
||||||
|
|
||||||
dns:
|
|
||||||
- name: "{{FQDN}}"
|
|
||||||
type: A
|
|
||||||
class: inet
|
|
||||||
recursion: true
|
|
||||||
retries: 5
|
|
||||||
matchers-condition: and
|
|
||||||
matchers:
|
|
||||||
- type: word
|
|
||||||
words:
|
|
||||||
- "NXDOMAIN"
|
|
||||||
|
|
||||||
- type: word
|
|
||||||
words:
|
|
||||||
- "IN\tCNAME"
|
|
||||||
|
|
||||||
extractors:
|
|
||||||
- type: regex
|
|
||||||
group: 1
|
|
||||||
regex:
|
|
||||||
- "IN\tCNAME\t(.+)"
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
id: detect-dangling-cname
|
||||||
|
|
||||||
|
info:
|
||||||
|
name: Detect Dangling cname
|
||||||
|
author: pdteam,nytr0gen
|
||||||
|
severity: info
|
||||||
|
tags: dns,takeover
|
||||||
|
reference: |
|
||||||
|
- https://securitytrails.com/blog/subdomain-takeover-tips
|
||||||
|
- https://nominetcyber.com/dangling-dns-is-no-laughing-matter/
|
||||||
|
- https://nabeelxy.medium.com/dangling-dns-records-are-a-real-vulnerability-361f2a29d37f
|
||||||
|
- https://docs.microsoft.com/en-us/azure/security/fundamentals/subdomain-takeover
|
||||||
|
|
||||||
|
dns:
|
||||||
|
- name: "{{FQDN}}"
|
||||||
|
type: A
|
||||||
|
class: inet
|
||||||
|
recursion: true
|
||||||
|
retries: 5
|
||||||
|
matchers-condition: and
|
||||||
|
matchers:
|
||||||
|
- type: word
|
||||||
|
words:
|
||||||
|
- "NXDOMAIN"
|
||||||
|
|
||||||
|
- type: word
|
||||||
|
words:
|
||||||
|
- "IN\tCNAME"
|
||||||
|
|
||||||
|
extractors:
|
||||||
|
- type: regex
|
||||||
|
group: 1
|
||||||
|
regex:
|
||||||
|
- "IN\tCNAME\t(.+)"
|
Loading…
Reference in New Issue