This tool/library can be used to compare the configuration of a TLS server to the Mozilla TLS configuration recommendations.
Project description
TLS Profiler
The TLS Profiler
class provided in this library can be used to
compare the configuration of a TLS server to the Mozilla TLS
configuration
recommendations.
The Mozilla TLS recommendations are three profiles (old, intermediate, modern) containing values for the following properties:
- TLS 1.3 cipher suites
- TLS 1.0 - 1.2 cipher suites
- Protocol versions
- Certificate types
- TLS curves for the key exchange
- DH parameter size for the key exchange
- HSTS max age
- Maximum certificate lifespan
- cipher preference (client or server choose)
TLS Profiler
uses the sslyze
library under the hood. This library
retrieves a wide range of information about a TLS server remotely. For
example, sslyze
can retrieve the list of supported TLS versions.
sslyze
does not, however, rate the results (like Qualy's SSLLabs
test does) or provide information whether the server fulfills certain
criteria.
TLS Profiler
is initialized with a domain (host) name and a target
profile name (old
, intermediate
, or modern
). When the run()
method is called, it returns a TLS Profiler Result
with the following
attributes:
validation_errors
: A list of strings describing errors that occured while validating the certificate.certificate_warnings
: A list of strings describing warnings concerning the certificate.profile_errors
: A list of strings describing deviations from the target Mozilla profile.vulnerability_errors
: Further vulnerabilities (like Heartbleet) that can be detected bysslyze
.validated
: Boolean indicating whether the certificate is valid.profile_matched
: Boolean indicating whether the target profile's requirements are fulfilled.vulnerable
: Boolean indicating whether any vulnerabilities were discovered.all_ok
: Boolean indicating whether the certificate is valid, the profile was matched, no certificate warnings were issued and no vulnerabilities were detected.
Limitations:
- Currently, if a server has multiple certificates only one certificate will
be recognized. This is a limitation of the
sslyze
library (see issue #326).
Usage
To use the TLS Profiler you currently need the tls_profiler
branch of the following
forks: sslyze
and nassl.
API usage
Basic usage of the TLS Profiler:
from tlsprofiler import TLSProfiler, PROFILE
profiler = TLSProfiler("www.example.com")
profiler.scan_server()
tls_profiler_result = profiler.compare_to_profile(PROFILE.MODERN)
Command-line usage
Help text for the command-line interface:
usage: run.py [-h] [-c CA_FILE] [-w CERT_EXPIRE_WARNING] domain [profile]
Scans the TLS settings of a server and compares them with a Mozilla TLS profile.
positional arguments:
domain Domain name of the server to be scanned
profile The Mozilla TLS profile to scan for [old|intermediate|modern]. If no profile is specified,
the server's TLS settings will be compared to all profiles.
optional arguments:
-h, --help show this help message and exit
-c CA_FILE, --ca-file CA_FILE
Path to a trusted custom root certificates in PEM format
-w CERT_EXPIRE_WARNING, --cert-expire-warning CERT_EXPIRE_WARNING
A warning is issued if the certificate expires in less days than specified (default 15 days)
Example usage: python3 run.py www.example.com intermediate
To make the usage easier just build a docker container with the Dockerfile in the root directory of this repository. You have to use the following commands:
docker build -t tlsprofiler .
docker run tlsprofiler www.example.com intermediate
Tests
To run all tests the script ./tests/run_tests.sh
from the root
directory of this repository. You can call it with the argument
--no-cache
to rebuild the test environment from scratch.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tlsprofiler-2.1.tar.gz
.
File metadata
- Download URL: tlsprofiler-2.1.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce4d6fca9eba45aa46324b6b51610c2f5e1ac1f6ea53d38b7cb55ee52e6298bc |
|
MD5 | 35c835ac896c403712016023b06aacf9 |
|
BLAKE2b-256 | 30f41bd30414a5aff7b41bbd335190698ff96405dd8e92c55812b4b294970d21 |
File details
Details for the file tlsprofiler-2.1-py3-none-any.whl
.
File metadata
- Download URL: tlsprofiler-2.1-py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5489dc09b3ffef49dc911fd658f49929e6f577b7e00f8a498b8aaa70bcae37ca |
|
MD5 | 158f91a0a919e92d4d80cd5ce25446ab |
|
BLAKE2b-256 | 7224d66205328e8ff0de537f460ac61d13ef29332f5ba9ac43480a1de2954f37 |