nmap_network_discovery
Scan and identify hosts, services, and open ports on a network using specified discovery methods to analyze network activity and detect connected devices.
Instructions
Discover hosts and services on a network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
discovery_method | No | all | |
include_ports | No | ||
network | Yes |
Input Schema (JSON Schema)
{
"properties": {
"discovery_method": {
"default": "all",
"title": "Discovery Method",
"type": "string"
},
"include_ports": {
"default": true,
"title": "Include Ports",
"type": "boolean"
},
"network": {
"title": "Network",
"type": "string"
}
},
"required": [
"network"
],
"title": "nmap_network_discoveryArguments",
"type": "object"
}