Path: blob/dev/integration_tests/flow/dns-ns-probe.yaml
2070 views
id: dns-ns-probe12info:3name: Nuclei flow dns ns probe4author: pdteam5severity: info6description: Description of the Template7reference: https://example-reference-link89flow: |10dns("fetch-ns");11for(let ns of template["nameservers"]) {12set("nameserver",ns);13dns("probe-ns");14};1516dns:17- id: "fetch-ns"18name: "{{FQDN}}"19type: NS20matchers:21- type: word22words:23- "IN\tNS"24internal: true25extractors:26- type: regex27internal: true28name: "nameservers"29group: 130regex:31- "IN\tNS\t(.+)"3233- id: "probe-ns"34name: "{{nameserver}}"35type: A36class: inet37retries: 338recursion: true39extractors:40- type: dsl41dsl:42- "a"4344