scan_network_range
Scan a network range in CIDR notation to identify connected devices, retrieve specific fields like IP, ports, or location, and limit results for efficient cybersecurity research.
Instructions
Scan a network range (CIDR notation) for devices
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cidr | Yes | Network range in CIDR notation (e.g., 192.168.1.0/24) | |
fields | No | List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name']) | |
max_items | No | Maximum number of items to include in results (default: 5) |
Input Schema (JSON Schema)
{
"properties": {
"cidr": {
"description": "Network range in CIDR notation (e.g., 192.168.1.0/24)",
"type": "string"
},
"fields": {
"description": "List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name'])",
"items": {
"type": "string"
},
"type": "array"
},
"max_items": {
"description": "Maximum number of items to include in results (default: 5)",
"type": "number"
}
},
"required": [
"cidr"
],
"type": "object"
}