security_vulnerability_scan
Scan servers for basic security vulnerabilities using hostname, username, and customizable parameters like port and timeout via OPS MCP Server.
Instructions
执行基础安全漏洞扫描
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostname | Yes | ||
password | No | ||
port | No | ||
scan_type | No | basic | |
timeout | No | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hostname": {
"title": "Hostname",
"type": "string"
},
"password": {
"default": "",
"title": "Password",
"type": "string"
},
"port": {
"default": 22,
"title": "Port",
"type": "integer"
},
"scan_type": {
"default": "basic",
"title": "Scan Type",
"type": "string"
},
"timeout": {
"default": 60,
"title": "Timeout",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"hostname",
"username"
],
"title": "security_vulnerability_scanArguments",
"type": "object"
}