diff --git a/docs/documentation/.buildinfo b/docs/documentation/.buildinfo index 8cc545c5..50304dbd 100644 --- a/docs/documentation/.buildinfo +++ b/docs/documentation/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 7ed96ce74548bb7ceae0da1d5b1f50af +config: f71b8d947628f4c16f8ec17ec85934ab tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/documentation/_static/documentation_options.js b/docs/documentation/_static/documentation_options.js index f9bbedc6..7cebf3b0 100644 --- a/docs/documentation/_static/documentation_options.js +++ b/docs/documentation/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '5.2.0', + VERSION: '6.0.0', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/documentation/available-scan-commands.html b/docs/documentation/available-scan-commands.html index dae3d56c..14baa54b 100644 --- a/docs/documentation/available-scan-commands.html +++ b/docs/documentation/available-scan-commands.html @@ -5,10 +5,10 @@ -
The result of analyzing a server’s certificate to verify its validity.
Any certificate available within the fields that follow is parsed as a Certificate
object using the cryptography
module; documentation is available at
@@ -230,15 +230,10 @@
The result of validating the server’s
certificate chain using each trust store that is packaged with SSLyze (Mozilla, Apple, etc.).
-If for a given trust store, the validation was successful, the verified certificate chain built by OpenSSL
-can be retrieved from the PathValidationResult
.
True
if the leaf certificate’s Common Name or Subject Alternative
-Names match the server’s hostname.
+retrieved from the
+PathValidationResult
.
received_certificate_chain (List
[Certificate
]) –
leaf_certificate_subject_matches_hostname (bool
) –
leaf_certificate_has_must_staple_extension (bool
) –
leaf_certificate_is_ev (bool
) –
leaf_certificate_signed_certificate_timestamps_count (Optional
[int
]) –
The result of trying to validate a server’s certificate chain using a specific trust store.
The result string returned by OpenSSL’s validation function; None if validation was +
The error returned by the cryptography module’s validation function; None if validation was successful.
trust_store (TrustStore
) –
verified_certificate_chain (Optional
[List
[Certificate
]]) –
openssl_error_string (Optional
[str
]) –
validation_error (Optional
[str
]) –
certificate_chain_as_pem (List
[str
]) –
certificate_chain_as_pem (List
[str
]) –
server_hostname (str
) –
validation_time (Optional
[datetime
]) –
The result of testing a server for the presence of security-related HTTP headers.
Each HTTP header described below will be None
if the server did not return a valid HTTP response, or if the
server returned an HTTP response without the HTTP header.
The Strict-Transport-Security header returned by the server.
DEPRECATED - will always be None
. This is because the Expect-CT header has officially
-been deprecated.
http_error_trace (Optional
[TracebackException
]) –
http_path_redirected_to (Optional
[str
]) –
strict_transport_security_header (Optional
[StrictTransportSecurityHeader
]) –
expect_ct_header (None
) –
An Expect-CT header parsed from a server’s HTTP response.
-The content of the max-age field.
-The content of report-uri field.
-True if enforce directive is set.
-max_age (Optional
[int
]) –
report_uri (Optional
[str
]) –
enforce (bool
) –