Skip to content

Commit 85b1233

Browse files
committed
Re-generate JSON output schema
1 parent 316155e commit 85b1233

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

json_output_schema.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"type": "object"
130130
},
131131
"CertificateInfoScanResultAsJson": {
132-
"description": "The result of retrieving and analyzing a server's certificates to verify their validity.\n\nAttributes:\n hostname_used_for_server_name_indication: The hostname sent by SSLyze as the Server Name Indication extension.\n certificate_deployments: A list of leaf certificates detected by SSLyze and the corresponding analysis. Most\n servers only deploy one leaf certificate, but some websites (such as Facebook) return different leaf\n certificates depending on the client, as a way to maximize compatibility with older clients/devices.",
132+
"description": "The result of retrieving and analyzing a server's certificates to verify their validity.\n\nAttributes:\n hostname_used_for_server_name_indication: The hostname sent by SSLyze as the Server Name Indication (SNI)\n extension.\n certificate_deployments: The list of certificate deployments detected by SSLyze with SNI enabled. Most servers\n only deploy one leaf certificate, but some websites (such as Facebook) return different leaf certificates\n depending on the client, as a way to maximize compatibility with older clients/devices.\n certificate_deployment_with_sni_disabled: The certificate deployment retrieved by SSLyze with SNI disabled.\n This allows discovery of default certificates that servers return to clients that don't support or provide\n SNI. Will be ``None`` if the non-SNI connection failed.\n Most clients always enable SNI when connecting to a server so this certificate deployment can be ignored.",
133133
"properties": {
134134
"hostname_used_for_server_name_indication": {
135135
"title": "Hostname Used For Server Name Indication",
@@ -141,6 +141,17 @@
141141
},
142142
"title": "Certificate Deployments",
143143
"type": "array"
144+
},
145+
"certificate_deployment_with_sni_disabled": {
146+
"anyOf": [
147+
{
148+
"$ref": "#/$defs/_CertificateDeploymentAnalysisResultAsJson"
149+
},
150+
{
151+
"type": "null"
152+
}
153+
],
154+
"default": null
144155
}
145156
},
146157
"required": [
@@ -2197,7 +2208,7 @@
21972208
"type": "string"
21982209
},
21992210
"sslyze_version": {
2200-
"default": "6.1.0",
2211+
"default": "6.2.0",
22012212
"title": "Sslyze Version",
22022213
"type": "string"
22032214
},

0 commit comments

Comments
 (0)