search_subdomains
Discover subdomains associated with a domain to identify potential security vulnerabilities and expand network reconnaissance during cybersecurity assessments.
Instructions
Search for subdomains of a given domain.
Args: domain: The parent domain name to query (e.g., example.com) ctx: Request context page: Page number for pagination (Plus accounts only)
Returns: Formatted string containing subdomains found
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
}
},
"required": [
"domain"
],
"type": "object"
}