scan_network
Scan network targets to identify open ports and detect services for security auditing and compliance validation within defined project boundaries.
Instructions
Performs network scanning within project boundaries
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ports | No | Port range to scan | |
| serviceDetection | No | Enable service detection | |
| target | Yes | Network target |
Input Schema (JSON Schema)
{
"properties": {
"ports": {
"description": "Port range to scan",
"type": "string"
},
"serviceDetection": {
"description": "Enable service detection",
"type": "boolean"
},
"target": {
"description": "Network target",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}