Table: net_tls_connection - Query Network TLS Connections using SQL
A Network TLS Connection is a secure connection established between two systems using the Transport Layer Security (TLS) protocol. This protocol provides privacy and data integrity between applications communicating over a network. Information about these connections can be useful in understanding network traffic patterns and identifying potential security vulnerabilities.
Table Usage Guide
The net_tls_connection
table provides insights into the SSL/TLS connections established by your system. As a network administrator or security analyst, explore connection-specific details through this table, including connection parameters, encryption algorithms used, and certificate details. Utilize it to uncover information about connections, such as those using weak encryption algorithms, expired certificates, and potential security vulnerabilities.
Important Notes
- You must specify the
address
column of the format address:port (e.g., steamipe.io:443) in thewhere
clause to query this table. - You can also provide a protocol version and/or cipher suite to verify specific TLS connection requirements. For example:
select *from net_tls_connectionwhere address = 'steampipe.io:443' and version = 'TLS v1.3' and cipher_suite_name = 'TLS_AES_128_GCM_SHA256';
select *from net_tls_connectionwhere address = 'steampipe.io:443' and version = 'TLS v1.3' and cipher_suite_name = 'TLS_AES_128_GCM_SHA256';
- SSL protocols (e.g. SSL v3 and SSL v2) are not supported by this table.
- This table supports a limited set of cipher suites, as defined by the TLS package.
Examples
List all supported protocols and cipher suites for which a TLS connection could be established
Explore which protocols and cipher suites can successfully establish a TLS connection to a specific address. This can be useful to ensure secure and compatible connections in your network communication.
select address, version, cipher_suite_name, handshake_completedfrom net_tls_connectionwhere address = 'steampipe.io:443' and handshake_completed;
select address, version, cipher_suite_name, handshake_completedfrom net_tls_connectionwhere address = 'steampipe.io:443' and handshake_completed;
Check TLS handshake with a certain protocol and cipher suite
Identify instances where a specific protocol and cipher suite have successfully completed a TLS handshake with a particular server. This can be useful to ensure secure communication and confirm the server's compatibility with desired security standards.
select address, version, cipher_suite_name, handshake_completedfrom net_tls_connectionwhere address = 'steampipe.io:443' and version = 'TLS v1.3' and cipher_suite_name = 'TLS_AES_128_GCM_SHA256';
select address, version, cipher_suite_name, handshake_completedfrom net_tls_connectionwhere address = 'steampipe.io:443' and version = 'TLS v1.3' and cipher_suite_name = 'TLS_AES_128_GCM_SHA256';
Check if a server allows connections with an insecure cipher suite
Determine if a server is susceptible to security risks by identifying connections that use potentially insecure cipher suites. This can be useful for enhancing security measures and preventing potential cyber threats.
select address, version, cipher_suite_name, handshake_completedfrom net_tls_connectionwhere address = 'steampipe.io:443' and cipher_suite_name in ( 'TLS_RSA_WITH_RC4_128_SHA', 'TLS_RSA_WITH_3DES_EDE_CBC_SHA', 'TLS_RSA_WITH_AES_128_CBC_SHA256', 'TLS_ECDHE_ECDSA_WITH_RC4_128_SHA', 'TLS_ECDHE_RSA_WITH_RC4_128_SHA', 'TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA', 'TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256', 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256' ) and handshake_completed;
select address, version, cipher_suite_name, handshake_completedfrom net_tls_connectionwhere address = 'steampipe.io:443' and cipher_suite_name in ( 'TLS_RSA_WITH_RC4_128_SHA', 'TLS_RSA_WITH_3DES_EDE_CBC_SHA', 'TLS_RSA_WITH_AES_128_CBC_SHA256', 'TLS_ECDHE_ECDSA_WITH_RC4_128_SHA', 'TLS_ECDHE_RSA_WITH_RC4_128_SHA', 'TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA', 'TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256', 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256' ) and handshake_completed = 1;
Query examples
Schema for net_tls_connection
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
address | text | = | Address to connect to, as specified in https://golang.org/pkg/net/#Dial. |
alpn_supported | boolean | True if the ALPN is supported. | |
cipher_suite_id | text | The ID of the cipher suite. | |
cipher_suite_name | text | = | The cipher suite negotiated for the connection. |
error | text | Error message if the connection failed. | |
fallback_scsv_supported | boolean | True if the TLS fallback SCSV is enabled to prevent protocol downgrade attacks. | |
handshake_completed | boolean | True if the handshake was successful. | |
local_address | text | Local address (ip:port) for the successful connection. | |
remote_address | text | Remote address (ip:port) for the successful connection. | |
server_name | text | The server name indication extension sent by the client. | |
version | text | = | The TLS version used by the connection. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- net
You can pass the configuration to the command with the --config
argument:
steampipe_export_net --config '<your_config>' net_tls_connection