
RADAR (Recognition and DNS Analysis for Resource detection) is an advanced DNS reconnaissance tool designed to identify technologies and services used by domains through their DNS footprints. Developed by Elite Security Systems, RADAR can detect hundreds of technologies including cloud services, email providers, CDNs, security services, and more.
Run the following command to install the latest version:
go install -v github.com/Elite-Security-Systems/radar/cmd/radar@latest
# Clone the repository
git clone https://github.com/Elite-Security-Systems/radar.git
cd radar
# Build
go build -o radar ./cmd/radar
# Install (optional)
go install ./cmd/radar
# Basic domain scan
radar -domain example.com
# Scan with all DNS records in output
radar -domain example.com -all-records
# Use custom signatures file
radar -domain example.com -signatures /path/to/signatures.json
# Enable debug output
radar -domain example.com -debug
# Set custom timeout
radar -domain example.com -timeout 30
{
"domain": "example.com",
"detectedTechnologies": [
{
"name": "Cloudflare",
"category": "CDN & Security",
"description": "Cloudflare CDN and security services",
"website": "https://www.cloudflare.com",
"evidence": "ns1.cloudflare.com.",
"recordType": "NS"
},
{
"name": "Google Workspace",
"category": "Email & Collaboration",
"description": "Google Workspace (formerly G Suite) email services",
"website": "https://workspace.google.com",
"evidence": "aspmx.l.google.com.",
"recordType": "MX"
}
]
}
RADAR uses a JSON-based signature format for technology detection. You can extend the default signature set or create your own:
{
"signatures": [
{
"name": "My Custom Technology",
"category": "Web Platform",
"description": "Description of the technology",
"recordTypes": ["TXT", "CNAME"],
"patterns": [
"regex-pattern-to-match",
"another-pattern-.*"
],
"website": "https://example.com"
}
]
}
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)Distributed under the MIT License. See LICENSE for more information.
$ claude mcp add radar \
-- python -m otcore.mcp_server <graph>