Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (24 loc) · 1.01 KB

README.md

File metadata and controls

31 lines (24 loc) · 1.01 KB

dnsstorm

This project is now maintained as part of the StormLib++ project! It is available here.

A Synapse Rapid Power-Up that brings DNS over HTTPS capabilities to a Cortex using Cloudflare.

Adds a dns.request Storm command to a Cortex that takes inbound inet:fqdn or inet:ipv4 nodes and yields inet:dns:answer nodes. Querying by string value is also supported instead of using existing nodes.

The following DNS request types are supported:

A
AAAA
CNAME
MX
NS
PTR
TXT

Examples:

// Lift some inet:fqdn nodes and query their AAAA records
inet:fqdn | limit 5 | dns.request --type AAAA

// Make a DNS query using string input and then pivot to the inet:ipv4
// nodes corresponding to the DNS A records in the query's response
dns.request --query google.com | :a -> inet:dns:a :ipv4 -> inet:ipv4

// Lift an inet:ipv4 and make a reverse DNS query
inet:ipv4=1.1.1.1 | dns.request --type PTR