nmap_scan
Perform comprehensive port scanning to identify open ports and services on target systems for security assessment and network reconnaissance.
Instructions
Perform comprehensive port scan using Nmap
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scan_type | No | Type of scan to perform | |
target | Yes | Target IP or domain |
Input Schema (JSON Schema)
{
"properties": {
"scan_type": {
"description": "Type of scan to perform",
"enum": [
"quick",
"full",
"stealth",
"aggressive"
],
"type": "string"
},
"target": {
"description": "Target IP or domain",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}