validate_security_ssl_labs
Analyze SSL/TLS configuration and certificate security using SSL Labs API to identify vulnerabilities and ensure proper encryption protocols are implemented.
Instructions
Analyze SSL/TLS configuration using SSL Labs. Comprehensive certificate and protocol analysis. Long-running (may take minutes).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Your email (required by API) | ||
maxAge | No | Max cached report age in hours | |
maxWaitMinutes | No | Max wait time in minutes (default: 5) | |
startNew | No | Force new assessment | |
url | Yes | ||
waitForComplete | No | Wait for completion (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Your email (required by API)",
"type": "string"
},
"maxAge": {
"description": "Max cached report age in hours",
"type": "number"
},
"maxWaitMinutes": {
"description": "Max wait time in minutes (default: 5)",
"type": "number"
},
"startNew": {
"description": "Force new assessment",
"type": "boolean"
},
"url": {
"type": "string"
},
"waitForComplete": {
"description": "Wait for completion (default: false)",
"type": "boolean"
}
},
"required": [
"url",
"email"
],
"type": "object"
}