ssl_check
Opens its own TLS handshakes to one public host with openssl, using the URL's explicit port or 443 by default, and reports what they establish: which of TLS 1.3, TLS 1.2, TLS 1.1, TLS 1.0 and SSLv3 the server accepts, a protocol-support grade, and the certificate the server actually serves (subject, issuer, covered hostnames, hostname match, and validity dates). Reach for it on padlock, HTTPS, 'Not Secure', certificate-expiry and wrong-hostname questions, and to inspect which certificate is served after a renewal on the probed endpoint; this does not verify every load-balanced node. It does not fetch the page or establish whether plain HTTP is actually served or redirected, and it is not a browser trust decision: no chain-of-trust build, no revocation check, no cipher-suite inspection. Measured 0.05-1.5 seconds against real hosts; each probe is cut off at 12 seconds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full public URL of the site to probe. Its hostname and explicit port drive the handshakes; port 443 is used when no port is named. The submitted scheme is reported, but the page is never fetched and plain-HTTP serving or redirects are not tested |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL as requested | |
| host | Yes | The hostname the handshakes were opened against | |
| port | Yes | The port the handshakes were opened against (443 unless the URL named another) | |
| https | Yes | Whether anything completed a TLS handshake on the port | |
| issues | Yes | Protocol, certificate, and submitted-scheme observations found by the probe | |
| checkedAt | Yes | Probe timestamp | |
| protocols | No | Protocol versions the server agreed to speak | |
| certificate | No | The certificate the server served during the handshake | |
| protocolGrade | No | A+ (TLS 1.3, no legacy protocols), A, B, or C: read from protocol support ALONE by this app. It ignores the certificate entirely, so an expired or wrong-hostname certificate can still sit behind an A. Not a Qualys SSL Labs grade | |
| servedOverHttp | No | Legacy field name: true when the submitted URL used the http scheme and TLS answered on the probed port. It records the input scheme in this TLS result, not whether HTTP content is served, redirected or enforced |