get_host_info
Retrieve detailed host information, including IP address, open ports, and geographical data, to perform cybersecurity research and threat intelligence analysis.
Instructions
Get detailed information about a specific IP address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name']) | |
ip | Yes | IP address to look up | |
max_items | No | Maximum number of items to include in arrays (default: 5) |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"description": "List of fields to include in the results (e.g., ['ip_str', 'ports', 'location.country_name'])",
"items": {
"type": "string"
},
"type": "array"
},
"ip": {
"description": "IP address to look up",
"type": "string"
},
"max_items": {
"description": "Maximum number of items to include in arrays (default: 5)",
"type": "number"
}
},
"required": [
"ip"
],
"type": "object"
}