RDAP WHOIS
ID: rdap-whois
Severity: info
Author: ricardomaia,sttlr
Tags: miscellaneous,whois,rdap,osint,misc
Description
Section titled “Description”RDAP (Registration Data Access Protocol) is a standard defined by the IETF to replace the whois protocolin queries for information about Internet resource records such as domain names, IP addresses, and ASNs.
YAML Source
Section titled “YAML Source”id: rdap-whois
info: name: RDAP WHOIS author: ricardomaia,sttlr severity: info description: | RDAP (Registration Data Access Protocol) is a standard defined by the IETF to replace the whois protocol in queries for information about Internet resource records such as domain names, IP addresses, and ASNs. reference: - https://about.rdap.org/ classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N cvss-score: 0 cwe-id: CWE-200 metadata: verified: true max-request: 1 tags: miscellaneous,whois,rdap,osint,misc
http: - method: GET path: - "https://www.rdap.net/domain/{{Host}}"
redirects: true max-redirects: 3 matchers: - type: status status: - 200
extractors: - type: json part: body name: status json: - '.status[]'
- type: json part: body name: registrationDate json: - '.events[] | select(.eventAction == "registration").eventDate'
- type: json part: body name: lastChangeDate json: - '.events[] | select(.eventAction == "last changed").eventDate'
- type: json part: body name: expirationDate json: - '.events[] | select(.eventAction == "expiration").eventDate'
- type: json part: body name: registrantName json: - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "fn") | .[-1]'
- type: json part: body name: registrantOrg json: - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "org") | .[-1]'
- type: json part: body name: registrantEmail json: - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "email") | .[-1]'
- type: json part: body name: registrantPhone json: - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "tel") | .[-1]'
- type: json part: body name: registrantAddress json: - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "adr") | .[-1][] | select(. != "")'
- type: json part: body name: registrantCountry json: - '.entities[] | select(.roles[] | contains("registrant")) | .vcardArray[1].[] | select(.[0] == "adr") | .[-1][-1]'
- type: json part: body name: nameServers json: - '.nameservers[] | .ldhName'
- type: json part: body name: secureDNS json: - '.secureDNS.delegationSigned // false'# digest: 4a0a0047304502205d9a87dc27cb6e27a55ca9bc1f57aa0edc521ebb2fad07de67c07d692547bbdd022100cad43b1f49024e26caa029fdd4bf7ebe10de94118e73dc1a2d0ea3318806b889:922c64590222798bb761d5b6d8e72950Guide to check the vulnerabilities
Section titled “Guide to check the vulnerabilities”This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.
$ nuclei -u "URL" -t "http/miscellaneous/rdap-whois.yaml"