Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions modules/test/tls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ Within the ```python/src``` directory, the below tests are executed.

| ID | Description | Expected behavior | Required result
|---|---|---|---|
| security.tls.v1_2_server | Check the device web server is TLSv1.2 minimum and the certificate is valid | TLS 1.2 certificate is issues to the client when accessed | Required |
| security.tls.v1_2_client | Device uses TLS with connections to external services on any port | The packet indicates a TLS connection with at least TLS v1.2 and support for ECDH and ECDSA ciphers | Required |
| security.tls.v1_0_client | Device uses TLS with connection to an external service on port 443 (or any other port which could be running the webserver-HTTPS) | The packet indicates a TLS connection with at least TLS 1.0 and support | Informational |
| security.tls.v1_2_server | Check the device web server TLS 1.2 and the certificate is valid | TLS 1.2 certificate is issues to the web browser client when accessed | Required if Applicable |
| security.tls.v1_2_client | Device uses TLS with connection to an external service on port 443 (or any other port which could be running the webserver-HTTPS) | The packet indicates a TLS connection with at least TLS v1.2 and support for ECDH and ECDSA ciphers | Required if Applicable |
| security.tls.v1_3_server | Check the device web server TLS 1.3 and the certificate is valid | TLS 1.3 certificate is issued to the web browser client when accessed | Informational |
| security.tls.v1_3_client | Device uses TLS with connection to an external service on port 443 (or any other port which could be running the webserver-HTTPS) | The packet indicates a TLS connection with at least TLS 1.3 | Informational |

4 changes: 2 additions & 2 deletions modules/test/tls/conf/module_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
{
"name": "security.tls.v1_2_server",
"test_description": "Check the device web server TLS 1.2 & certificate is valid",
"test_description": "Check the device web server TLS 1.2 and the certificate is valid",
"expected_behavior": "TLS 1.2 certificate is issued to the web browser client when accessed",
"recommendations": [
"Enable TLS 1.2 support in the web server configuration",
Expand All @@ -42,7 +42,7 @@
},
{
"name": "security.tls.v1_3_server",
"test_description": "Check the device web server TLS 1.3 & certificate is valid",
"test_description": "Check the device web server TLS 1.3 and the certificate is valid",
"expected_behavior": "TLS 1.3 certificate is issued to the web browser client when accessed",
"recommendations": [
"Enable TLS 1.3 support in the web server configuration",
Expand Down