rustscan_fast_scan
Perform rapid port scanning to identify open ports on target systems for security assessments and vulnerability discovery.
Instructions
Execute RustScan for ultra-fast port scanning.
Args: target: Target IP address or hostname ports: Custom port range (default: all ports) ulimit: File descriptor limit batch_size: Batch size for port scanning timeout: Socket timeout in milliseconds tries: Number of tries per port no_nmap: Skip nmap integration additional_args: Additional RustScan arguments
Returns: Fast port scan results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additional_args | No | ||
batch_size | No | ||
no_nmap | No | ||
ports | No | ||
target | Yes | ||
timeout | No | ||
tries | No | ||
ulimit | No |
Input Schema (JSON Schema)
{
"properties": {
"additional_args": {
"default": "",
"title": "Additional Args",
"type": "string"
},
"batch_size": {
"default": 4500,
"title": "Batch Size",
"type": "integer"
},
"no_nmap": {
"default": false,
"title": "No Nmap",
"type": "boolean"
},
"ports": {
"default": "",
"title": "Ports",
"type": "string"
},
"target": {
"title": "Target",
"type": "string"
},
"timeout": {
"default": 1500,
"title": "Timeout",
"type": "integer"
},
"tries": {
"default": 1,
"title": "Tries",
"type": "integer"
},
"ulimit": {
"default": 5000,
"title": "Ulimit",
"type": "integer"
}
},
"required": [
"target"
],
"type": "object"
}