dns_lookup
Convert hostnames to IP addresses using DNS resolution, enabling network analysis and cybersecurity research. Input a list of hostnames to retrieve their associated IPs.
Instructions
Resolve hostnames to IP addresses using DNS lookup
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostnames | Yes | List of hostnames to resolve (e.g., ['google.com', 'facebook.com']) |
Input Schema (JSON Schema)
{
"properties": {
"hostnames": {
"description": "List of hostnames to resolve (e.g., ['google.com', 'facebook.com'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"hostnames"
],
"type": "object"
}