├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── ghcr_on_tag.yaml ├── .gitignore ├── .pylintrc ├── CREDITS.md ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── atree_output.png ├── logo.png ├── report_compliance.png ├── report_vuln.png └── stix_output.jpg ├── ciphersuites_converter.py ├── configs ├── compliance │ ├── alias │ │ ├── alias_mapping.json │ │ ├── default_versions.json │ │ └── user_defined.json │ ├── apache │ │ ├── mapping.json │ │ ├── rules.json │ │ └── template.conf │ ├── cert_key_filters.json │ ├── ciphersuites.json │ ├── ciphersuites_tags.json │ ├── condition_instructions.json │ ├── dhparams_mapping.json │ ├── evaluations_mapping.json │ ├── extended_key_usage_consistency.json │ ├── ffdhe │ │ ├── ffdhe2048.txt │ │ ├── ffdhe3072.txt │ │ └── ffdhe4096.txt │ ├── generate │ │ ├── configuration_mapping.json │ │ ├── configuration_rules.json │ │ └── user_conf_types.json │ ├── groups_defaults.json │ ├── iana_to_openssl.json │ ├── misc_fields.json │ ├── nginx │ │ ├── mapping.json │ │ ├── rules.json │ │ └── template.conf │ ├── openssl_to_iana.json │ ├── sigalgs.json │ ├── sigalgs_iana_to_ietf.json │ ├── sigalgs_table.json │ ├── special_configs.json │ └── tags_mapping.json ├── mitigations │ ├── 3SHAKE.json │ ├── ACCEPTING_ALL_SSL_CERTIFICATES.json │ ├── ALLOW_ALL_HOSTNAME.json │ ├── ALLOW_HTTP_PLIST.json │ ├── ALPACA.json │ ├── BEAST.json │ ├── BREACH.json │ ├── CCS.json │ ├── CCS_INJECTION.json │ ├── CERTIFICATE_OR_KEYSTORE_DISCLOSURE.json │ ├── CERTIFICATE_TRANSPARENCY.json │ ├── COMPLIANCE_CERTIFICATE.json │ ├── COMPLIANCE_CERTIFICATEEXTENSIONS.json │ ├── COMPLIANCE_CERTIFICATESIGNATURE.json │ ├── COMPLIANCE_CIPHERSUITE.json │ ├── COMPLIANCE_CIPHERSUITESTLS1.3.json │ ├── COMPLIANCE_EXTENSION.json │ ├── COMPLIANCE_GROUPS.json │ ├── COMPLIANCE_HASH.json │ ├── COMPLIANCE_KEYLENGTHS.json │ ├── COMPLIANCE_MISC.json │ ├── COMPLIANCE_PROTOCOL.json │ ├── COMPLIANCE_SIGNATURE.json │ ├── CRIME.json │ ├── CRYPTO_ECB_CIPHER.json │ ├── DEBUGGABLE_APPLICATION.json │ ├── DEFAULT_SCHEME_HTTP.json │ ├── DROWN.json │ ├── FREAK.json │ ├── HEARTBLEED.json │ ├── HOSTNAME_VERIFIER.json │ ├── HSTS_NOT_PRELOADED.json │ ├── HSTS_NOT_PRELOADED_INVALID_CERT.json │ ├── HSTS_NOT_SET.json │ ├── HTTPS_NOT_ENFORCED.json │ ├── INSECURE_CONNECTION.json │ ├── INSECURE_CONNECTION_PLIST.json │ ├── INSECURE_HOSTNAME_VERIFIER.json │ ├── INSECURE_SOCKET.json │ ├── INSECURE_SOCKET_FACTORY.json │ ├── INSECURE_TLS_VERSION_PLIST.json │ ├── INVALID_SERVER_CERTIFICATE.json │ ├── LOGJAM.json │ ├── LUCKY13.json │ ├── MITZVAH.json │ ├── NOMORE.json │ ├── NO_FORWARD_SECRECY_PLIST.json │ ├── OBFUSCATED_CODE.json │ ├── PADDING_ORACLE.json │ ├── PFS.json │ ├── RACCOON.json │ ├── RENEGOTIATION.json │ ├── ROBOT.json │ ├── SLOTH.json │ ├── SLOTH_MD5_SIGNATURE_TLS_1_3.json │ ├── SSL_ERROR.json │ ├── SSL_GETINSECURE_METHOD.json │ ├── SSL_POODLE.json │ ├── SWEET32.json │ ├── TICKETBLEED.json │ ├── TLS_POODLE.json │ ├── TRUST_MANAGER.json │ ├── WEAK_ALGORITHMS.json │ ├── WEAK_CRYPTO.json │ └── WEBVIEW_IGNORES_SSL_ERRORS.json ├── module_to_mitigation.json ├── modules │ ├── android │ │ ├── accepting_all_certificates.json │ │ ├── allow_all_hostname.json │ │ ├── certificate_keystore_disclosure.json │ │ ├── crypto_ecb_cipher.json │ │ ├── debuggable_application.json │ │ ├── default_scheme_http.json │ │ ├── insecure_connection.json │ │ ├── insecure_hostname_verifier.json │ │ ├── insecure_socket.json │ │ ├── insecure_socket_factory.json │ │ ├── invalid_server_certificate.json │ │ ├── obfuscated_code.json │ │ ├── ssl_getinsecure_method.json │ │ ├── weak_algorithms.json │ │ └── webview_ssl_errors.json │ ├── ios │ │ ├── allow_http_plist.json │ │ ├── insecure_connection_plist.json │ │ ├── insecure_tls_version_plist.json │ │ ├── no_forward_secrecy_plist.json │ │ └── weak_crypto.json │ └── server │ │ ├── 3shake.json │ │ ├── alpaca.json │ │ ├── beast.json │ │ ├── breach.json │ │ ├── ccs_injection.json │ │ ├── certificate_transparency.json │ │ ├── compare_many.json │ │ ├── compare_one.json │ │ ├── crime.json │ │ ├── drown.json │ │ ├── freak.json │ │ ├── generate_many.json │ │ ├── generate_one.json │ │ ├── heartbleed.json │ │ ├── hsts_preloading.json │ │ ├── hsts_set.json │ │ ├── https_enforced.json │ │ ├── logjam.json │ │ ├── lucky13.json │ │ ├── mitzvah.json │ │ ├── nomore.json │ │ ├── padding_oracle.json │ │ ├── pfs.json │ │ ├── raccoon.json │ │ ├── renegotiation.json │ │ ├── robot.json │ │ ├── sloth.json │ │ ├── sslpoodle.json │ │ ├── sweet32.json │ │ ├── ticketbleed.json │ │ └── tlspoodle.json ├── out_template │ ├── assets │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── css │ │ │ └── styles.min.css │ │ ├── img │ │ │ ├── FBK_Cybersecurity_white.png │ │ │ ├── ST.png │ │ │ └── screen-content-phone.jpg │ │ └── pdf │ │ │ ├── FBK_Cybersecurity_colour.png │ │ │ ├── custom_fonts.json │ │ │ ├── logo_only2.png │ │ │ └── name2.png │ ├── hosts_report.html │ ├── hosts_report.xml │ ├── modules_report.html │ └── modules_report.xml └── tls_rules.json ├── default_android.json ├── default_file.json ├── default_ios.json ├── default_server.json ├── dependencies.json ├── install.py ├── modules ├── __init__.py ├── android │ ├── accepting_all_certificates.py │ ├── allow_all_hostname.py │ ├── certificate_keystore_disclosure.py │ ├── crypto_ecb_cipher.py │ ├── debuggable_application.py │ ├── default_scheme_http.py │ ├── insecure_connection.py │ ├── insecure_hostname_verifier.py │ ├── insecure_socket.py │ ├── insecure_socket_factory.py │ ├── invalid_server_certificate.py │ ├── obfuscated_code.py │ ├── sebastian_base.py │ ├── ssl_getinsecure_method.py │ ├── super_base.py │ ├── weak_algorithms.py │ ├── webview_ssl_errors.py │ └── wrappers │ │ ├── sebastian.py │ │ └── super.py ├── compliance │ ├── __init__.py │ ├── compare_many.py │ ├── compare_one.py │ ├── compliance_base.py │ ├── configuration │ │ ├── __init__.py │ │ ├── apache_configuration.py │ │ ├── configuration_base.py │ │ └── nginx_configuration.py │ ├── generate_many.py │ ├── generate_one.py │ └── wrappers │ │ ├── certificateparser.py │ │ ├── conditionparser.py │ │ └── db_reader.py ├── configuration │ ├── apache │ │ ├── __init__.py │ │ └── apache_configuration_base.py │ ├── configuration.py │ ├── configuration_base.py │ └── nginx │ │ ├── __init__.py │ │ └── nginx_configuration_base.py ├── core.py ├── ios │ ├── allow_http_plist.py │ ├── insecure_connection_plist.py │ ├── insecure_tls_version_plist.py │ ├── no_forward_secrecy_plist.py │ ├── sebastian_base.py │ ├── weak_crypto.py │ └── wrappers │ │ └── sebastian.py ├── parse_input_conf.py ├── report.py ├── server │ ├── alpaca.py │ ├── beast.py │ ├── breach.py │ ├── ccs_injection.py │ ├── certificate_transparency.py │ ├── client_hello_multiple_packets.py │ ├── crime.py │ ├── drown.py │ ├── freak.py │ ├── heartbleed.py │ ├── hsts_base.py │ ├── hsts_preloading.py │ ├── hsts_set.py │ ├── https_enforced.py │ ├── logjam.py │ ├── lucky13.py │ ├── mitzvah.py │ ├── nomore.py │ ├── padding_oracle.py │ ├── pfs.py │ ├── raccoon.py │ ├── renegotiation.py │ ├── robot.py │ ├── sloth.py │ ├── sslpoodle.py │ ├── sweet32.py │ ├── testssl_base.py │ ├── three_shake.py │ ├── ticketbleed.py │ ├── tlsfuzzer_base.py │ ├── tlspoodle.py │ ├── tlsscanner_base.py │ ├── webserver_type.py │ └── wrappers │ │ ├── certificate.py │ │ ├── https_hsts.py │ │ ├── testssl.py │ │ ├── tlsfuzzer.py │ │ ├── tlslite-ng.py │ │ └── tlsscanner.py └── stix │ ├── stix.py │ └── stix_base.py ├── publiccode.yml ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── run.py ├── tests ├── __init__.py ├── certificate_test.py ├── faulty_configuration.json ├── hsts_https_test.py ├── include_configuration.json ├── jinja_test.py ├── nucleus_test.py ├── parse_conf_test.py ├── stix_adv_test.py ├── stix_test.py ├── super_test.py ├── test_condition_parser.py ├── test_configuration.json ├── tests_data │ └── testssl_dump.json └── testssl_test.py ├── tlsa ├── __init__.py └── tlsa.py ├── useful_scripts ├── openssl_releases.py └── urls.json └── utils ├── __init__.py ├── booleanize.py ├── ciphersuites.py ├── colors.py ├── configuration.py ├── counter.py ├── database.py ├── globals.py ├── iana2openssl.py ├── loader.py ├── logger.py ├── mitigations.py ├── output.py ├── prune.py ├── remove_duplicates.py ├── subdomain_enumeration.py ├── type.py ├── urls.py └── validation.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ghcr_on_tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/.github/workflows/ghcr_on_tag.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/.pylintrc -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/README.md -------------------------------------------------------------------------------- /assets/atree_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/assets/atree_output.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/report_compliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/assets/report_compliance.png -------------------------------------------------------------------------------- /assets/report_vuln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/assets/report_vuln.png -------------------------------------------------------------------------------- /assets/stix_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/assets/stix_output.jpg -------------------------------------------------------------------------------- /ciphersuites_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/ciphersuites_converter.py -------------------------------------------------------------------------------- /configs/compliance/alias/alias_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/alias/alias_mapping.json -------------------------------------------------------------------------------- /configs/compliance/alias/default_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/alias/default_versions.json -------------------------------------------------------------------------------- /configs/compliance/alias/user_defined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/alias/user_defined.json -------------------------------------------------------------------------------- /configs/compliance/apache/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/apache/mapping.json -------------------------------------------------------------------------------- /configs/compliance/apache/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/apache/rules.json -------------------------------------------------------------------------------- /configs/compliance/apache/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/apache/template.conf -------------------------------------------------------------------------------- /configs/compliance/cert_key_filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/cert_key_filters.json -------------------------------------------------------------------------------- /configs/compliance/ciphersuites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/ciphersuites.json -------------------------------------------------------------------------------- /configs/compliance/ciphersuites_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/ciphersuites_tags.json -------------------------------------------------------------------------------- /configs/compliance/condition_instructions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/condition_instructions.json -------------------------------------------------------------------------------- /configs/compliance/dhparams_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/dhparams_mapping.json -------------------------------------------------------------------------------- /configs/compliance/evaluations_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/evaluations_mapping.json -------------------------------------------------------------------------------- /configs/compliance/extended_key_usage_consistency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/extended_key_usage_consistency.json -------------------------------------------------------------------------------- /configs/compliance/ffdhe/ffdhe2048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/ffdhe/ffdhe2048.txt -------------------------------------------------------------------------------- /configs/compliance/ffdhe/ffdhe3072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/ffdhe/ffdhe3072.txt -------------------------------------------------------------------------------- /configs/compliance/ffdhe/ffdhe4096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/ffdhe/ffdhe4096.txt -------------------------------------------------------------------------------- /configs/compliance/generate/configuration_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/generate/configuration_mapping.json -------------------------------------------------------------------------------- /configs/compliance/generate/configuration_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/generate/configuration_rules.json -------------------------------------------------------------------------------- /configs/compliance/generate/user_conf_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/generate/user_conf_types.json -------------------------------------------------------------------------------- /configs/compliance/groups_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/groups_defaults.json -------------------------------------------------------------------------------- /configs/compliance/iana_to_openssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/iana_to_openssl.json -------------------------------------------------------------------------------- /configs/compliance/misc_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/misc_fields.json -------------------------------------------------------------------------------- /configs/compliance/nginx/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/nginx/mapping.json -------------------------------------------------------------------------------- /configs/compliance/nginx/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/nginx/rules.json -------------------------------------------------------------------------------- /configs/compliance/nginx/template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/nginx/template.conf -------------------------------------------------------------------------------- /configs/compliance/openssl_to_iana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/openssl_to_iana.json -------------------------------------------------------------------------------- /configs/compliance/sigalgs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/sigalgs.json -------------------------------------------------------------------------------- /configs/compliance/sigalgs_iana_to_ietf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/sigalgs_iana_to_ietf.json -------------------------------------------------------------------------------- /configs/compliance/sigalgs_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/sigalgs_table.json -------------------------------------------------------------------------------- /configs/compliance/special_configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/special_configs.json -------------------------------------------------------------------------------- /configs/compliance/tags_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/compliance/tags_mapping.json -------------------------------------------------------------------------------- /configs/mitigations/3SHAKE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/3SHAKE.json -------------------------------------------------------------------------------- /configs/mitigations/ACCEPTING_ALL_SSL_CERTIFICATES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/ACCEPTING_ALL_SSL_CERTIFICATES.json -------------------------------------------------------------------------------- /configs/mitigations/ALLOW_ALL_HOSTNAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/ALLOW_ALL_HOSTNAME.json -------------------------------------------------------------------------------- /configs/mitigations/ALLOW_HTTP_PLIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/ALLOW_HTTP_PLIST.json -------------------------------------------------------------------------------- /configs/mitigations/ALPACA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/ALPACA.json -------------------------------------------------------------------------------- /configs/mitigations/BEAST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/BEAST.json -------------------------------------------------------------------------------- /configs/mitigations/BREACH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/BREACH.json -------------------------------------------------------------------------------- /configs/mitigations/CCS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/CCS.json -------------------------------------------------------------------------------- /configs/mitigations/CCS_INJECTION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/CCS_INJECTION.json -------------------------------------------------------------------------------- /configs/mitigations/CERTIFICATE_OR_KEYSTORE_DISCLOSURE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/CERTIFICATE_OR_KEYSTORE_DISCLOSURE.json -------------------------------------------------------------------------------- /configs/mitigations/CERTIFICATE_TRANSPARENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/CERTIFICATE_TRANSPARENCY.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_CERTIFICATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_CERTIFICATE.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_CERTIFICATEEXTENSIONS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_CERTIFICATEEXTENSIONS.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_CERTIFICATESIGNATURE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_CERTIFICATESIGNATURE.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_CIPHERSUITE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_CIPHERSUITE.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_CIPHERSUITESTLS1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_CIPHERSUITESTLS1.3.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_EXTENSION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_EXTENSION.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_GROUPS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_GROUPS.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_HASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_HASH.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_KEYLENGTHS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_KEYLENGTHS.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_MISC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_MISC.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_PROTOCOL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_PROTOCOL.json -------------------------------------------------------------------------------- /configs/mitigations/COMPLIANCE_SIGNATURE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/COMPLIANCE_SIGNATURE.json -------------------------------------------------------------------------------- /configs/mitigations/CRIME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/CRIME.json -------------------------------------------------------------------------------- /configs/mitigations/CRYPTO_ECB_CIPHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/CRYPTO_ECB_CIPHER.json -------------------------------------------------------------------------------- /configs/mitigations/DEBUGGABLE_APPLICATION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/DEBUGGABLE_APPLICATION.json -------------------------------------------------------------------------------- /configs/mitigations/DEFAULT_SCHEME_HTTP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/DEFAULT_SCHEME_HTTP.json -------------------------------------------------------------------------------- /configs/mitigations/DROWN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/DROWN.json -------------------------------------------------------------------------------- /configs/mitigations/FREAK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/FREAK.json -------------------------------------------------------------------------------- /configs/mitigations/HEARTBLEED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/HEARTBLEED.json -------------------------------------------------------------------------------- /configs/mitigations/HOSTNAME_VERIFIER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/HOSTNAME_VERIFIER.json -------------------------------------------------------------------------------- /configs/mitigations/HSTS_NOT_PRELOADED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/HSTS_NOT_PRELOADED.json -------------------------------------------------------------------------------- /configs/mitigations/HSTS_NOT_PRELOADED_INVALID_CERT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/HSTS_NOT_PRELOADED_INVALID_CERT.json -------------------------------------------------------------------------------- /configs/mitigations/HSTS_NOT_SET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/HSTS_NOT_SET.json -------------------------------------------------------------------------------- /configs/mitigations/HTTPS_NOT_ENFORCED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/HTTPS_NOT_ENFORCED.json -------------------------------------------------------------------------------- /configs/mitigations/INSECURE_CONNECTION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INSECURE_CONNECTION.json -------------------------------------------------------------------------------- /configs/mitigations/INSECURE_CONNECTION_PLIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INSECURE_CONNECTION_PLIST.json -------------------------------------------------------------------------------- /configs/mitigations/INSECURE_HOSTNAME_VERIFIER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INSECURE_HOSTNAME_VERIFIER.json -------------------------------------------------------------------------------- /configs/mitigations/INSECURE_SOCKET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INSECURE_SOCKET.json -------------------------------------------------------------------------------- /configs/mitigations/INSECURE_SOCKET_FACTORY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INSECURE_SOCKET_FACTORY.json -------------------------------------------------------------------------------- /configs/mitigations/INSECURE_TLS_VERSION_PLIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INSECURE_TLS_VERSION_PLIST.json -------------------------------------------------------------------------------- /configs/mitigations/INVALID_SERVER_CERTIFICATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/INVALID_SERVER_CERTIFICATE.json -------------------------------------------------------------------------------- /configs/mitigations/LOGJAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/LOGJAM.json -------------------------------------------------------------------------------- /configs/mitigations/LUCKY13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/LUCKY13.json -------------------------------------------------------------------------------- /configs/mitigations/MITZVAH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/MITZVAH.json -------------------------------------------------------------------------------- /configs/mitigations/NOMORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/NOMORE.json -------------------------------------------------------------------------------- /configs/mitigations/NO_FORWARD_SECRECY_PLIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/NO_FORWARD_SECRECY_PLIST.json -------------------------------------------------------------------------------- /configs/mitigations/OBFUSCATED_CODE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/OBFUSCATED_CODE.json -------------------------------------------------------------------------------- /configs/mitigations/PADDING_ORACLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/PADDING_ORACLE.json -------------------------------------------------------------------------------- /configs/mitigations/PFS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/PFS.json -------------------------------------------------------------------------------- /configs/mitigations/RACCOON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/RACCOON.json -------------------------------------------------------------------------------- /configs/mitigations/RENEGOTIATION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/RENEGOTIATION.json -------------------------------------------------------------------------------- /configs/mitigations/ROBOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/ROBOT.json -------------------------------------------------------------------------------- /configs/mitigations/SLOTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/SLOTH.json -------------------------------------------------------------------------------- /configs/mitigations/SLOTH_MD5_SIGNATURE_TLS_1_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/SLOTH_MD5_SIGNATURE_TLS_1_3.json -------------------------------------------------------------------------------- /configs/mitigations/SSL_ERROR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/SSL_ERROR.json -------------------------------------------------------------------------------- /configs/mitigations/SSL_GETINSECURE_METHOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/SSL_GETINSECURE_METHOD.json -------------------------------------------------------------------------------- /configs/mitigations/SSL_POODLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/SSL_POODLE.json -------------------------------------------------------------------------------- /configs/mitigations/SWEET32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/SWEET32.json -------------------------------------------------------------------------------- /configs/mitigations/TICKETBLEED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/TICKETBLEED.json -------------------------------------------------------------------------------- /configs/mitigations/TLS_POODLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/TLS_POODLE.json -------------------------------------------------------------------------------- /configs/mitigations/TRUST_MANAGER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/TRUST_MANAGER.json -------------------------------------------------------------------------------- /configs/mitigations/WEAK_ALGORITHMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/WEAK_ALGORITHMS.json -------------------------------------------------------------------------------- /configs/mitigations/WEAK_CRYPTO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/WEAK_CRYPTO.json -------------------------------------------------------------------------------- /configs/mitigations/WEBVIEW_IGNORES_SSL_ERRORS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/mitigations/WEBVIEW_IGNORES_SSL_ERRORS.json -------------------------------------------------------------------------------- /configs/module_to_mitigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/module_to_mitigation.json -------------------------------------------------------------------------------- /configs/modules/android/accepting_all_certificates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/accepting_all_certificates.json -------------------------------------------------------------------------------- /configs/modules/android/allow_all_hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/allow_all_hostname.json -------------------------------------------------------------------------------- /configs/modules/android/certificate_keystore_disclosure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/certificate_keystore_disclosure.json -------------------------------------------------------------------------------- /configs/modules/android/crypto_ecb_cipher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/crypto_ecb_cipher.json -------------------------------------------------------------------------------- /configs/modules/android/debuggable_application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/debuggable_application.json -------------------------------------------------------------------------------- /configs/modules/android/default_scheme_http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/default_scheme_http.json -------------------------------------------------------------------------------- /configs/modules/android/insecure_connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/insecure_connection.json -------------------------------------------------------------------------------- /configs/modules/android/insecure_hostname_verifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/insecure_hostname_verifier.json -------------------------------------------------------------------------------- /configs/modules/android/insecure_socket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/insecure_socket.json -------------------------------------------------------------------------------- /configs/modules/android/insecure_socket_factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/insecure_socket_factory.json -------------------------------------------------------------------------------- /configs/modules/android/invalid_server_certificate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/invalid_server_certificate.json -------------------------------------------------------------------------------- /configs/modules/android/obfuscated_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/obfuscated_code.json -------------------------------------------------------------------------------- /configs/modules/android/ssl_getinsecure_method.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/ssl_getinsecure_method.json -------------------------------------------------------------------------------- /configs/modules/android/weak_algorithms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/weak_algorithms.json -------------------------------------------------------------------------------- /configs/modules/android/webview_ssl_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/android/webview_ssl_errors.json -------------------------------------------------------------------------------- /configs/modules/ios/allow_http_plist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/ios/allow_http_plist.json -------------------------------------------------------------------------------- /configs/modules/ios/insecure_connection_plist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/ios/insecure_connection_plist.json -------------------------------------------------------------------------------- /configs/modules/ios/insecure_tls_version_plist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/ios/insecure_tls_version_plist.json -------------------------------------------------------------------------------- /configs/modules/ios/no_forward_secrecy_plist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/ios/no_forward_secrecy_plist.json -------------------------------------------------------------------------------- /configs/modules/ios/weak_crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/ios/weak_crypto.json -------------------------------------------------------------------------------- /configs/modules/server/3shake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/3shake.json -------------------------------------------------------------------------------- /configs/modules/server/alpaca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/alpaca.json -------------------------------------------------------------------------------- /configs/modules/server/beast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/beast.json -------------------------------------------------------------------------------- /configs/modules/server/breach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/breach.json -------------------------------------------------------------------------------- /configs/modules/server/ccs_injection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/ccs_injection.json -------------------------------------------------------------------------------- /configs/modules/server/certificate_transparency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/certificate_transparency.json -------------------------------------------------------------------------------- /configs/modules/server/compare_many.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/compare_many.json -------------------------------------------------------------------------------- /configs/modules/server/compare_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/compare_one.json -------------------------------------------------------------------------------- /configs/modules/server/crime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/crime.json -------------------------------------------------------------------------------- /configs/modules/server/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/drown.json -------------------------------------------------------------------------------- /configs/modules/server/freak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/freak.json -------------------------------------------------------------------------------- /configs/modules/server/generate_many.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/generate_many.json -------------------------------------------------------------------------------- /configs/modules/server/generate_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/generate_one.json -------------------------------------------------------------------------------- /configs/modules/server/heartbleed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/heartbleed.json -------------------------------------------------------------------------------- /configs/modules/server/hsts_preloading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/hsts_preloading.json -------------------------------------------------------------------------------- /configs/modules/server/hsts_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/hsts_set.json -------------------------------------------------------------------------------- /configs/modules/server/https_enforced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/https_enforced.json -------------------------------------------------------------------------------- /configs/modules/server/logjam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/logjam.json -------------------------------------------------------------------------------- /configs/modules/server/lucky13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/lucky13.json -------------------------------------------------------------------------------- /configs/modules/server/mitzvah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/mitzvah.json -------------------------------------------------------------------------------- /configs/modules/server/nomore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/nomore.json -------------------------------------------------------------------------------- /configs/modules/server/padding_oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/padding_oracle.json -------------------------------------------------------------------------------- /configs/modules/server/pfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/pfs.json -------------------------------------------------------------------------------- /configs/modules/server/raccoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/raccoon.json -------------------------------------------------------------------------------- /configs/modules/server/renegotiation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/renegotiation.json -------------------------------------------------------------------------------- /configs/modules/server/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/robot.json -------------------------------------------------------------------------------- /configs/modules/server/sloth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/sloth.json -------------------------------------------------------------------------------- /configs/modules/server/sslpoodle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/sslpoodle.json -------------------------------------------------------------------------------- /configs/modules/server/sweet32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/sweet32.json -------------------------------------------------------------------------------- /configs/modules/server/ticketbleed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/ticketbleed.json -------------------------------------------------------------------------------- /configs/modules/server/tlspoodle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/modules/server/tlspoodle.json -------------------------------------------------------------------------------- /configs/out_template/assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /configs/out_template/assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /configs/out_template/assets/css/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/css/styles.min.css -------------------------------------------------------------------------------- /configs/out_template/assets/img/FBK_Cybersecurity_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/img/FBK_Cybersecurity_white.png -------------------------------------------------------------------------------- /configs/out_template/assets/img/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/img/ST.png -------------------------------------------------------------------------------- /configs/out_template/assets/img/screen-content-phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/img/screen-content-phone.jpg -------------------------------------------------------------------------------- /configs/out_template/assets/pdf/FBK_Cybersecurity_colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/pdf/FBK_Cybersecurity_colour.png -------------------------------------------------------------------------------- /configs/out_template/assets/pdf/custom_fonts.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom_font_code-2": "backColor=\"yellow\"" 3 | } -------------------------------------------------------------------------------- /configs/out_template/assets/pdf/logo_only2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/pdf/logo_only2.png -------------------------------------------------------------------------------- /configs/out_template/assets/pdf/name2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/assets/pdf/name2.png -------------------------------------------------------------------------------- /configs/out_template/hosts_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/hosts_report.html -------------------------------------------------------------------------------- /configs/out_template/hosts_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/hosts_report.xml -------------------------------------------------------------------------------- /configs/out_template/modules_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/modules_report.html -------------------------------------------------------------------------------- /configs/out_template/modules_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/out_template/modules_report.xml -------------------------------------------------------------------------------- /configs/tls_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/configs/tls_rules.json -------------------------------------------------------------------------------- /default_android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/default_android.json -------------------------------------------------------------------------------- /default_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/default_file.json -------------------------------------------------------------------------------- /default_ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/default_ios.json -------------------------------------------------------------------------------- /default_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/default_server.json -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/dependencies.json -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/install.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/android/accepting_all_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/accepting_all_certificates.py -------------------------------------------------------------------------------- /modules/android/allow_all_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/allow_all_hostname.py -------------------------------------------------------------------------------- /modules/android/certificate_keystore_disclosure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/certificate_keystore_disclosure.py -------------------------------------------------------------------------------- /modules/android/crypto_ecb_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/crypto_ecb_cipher.py -------------------------------------------------------------------------------- /modules/android/debuggable_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/debuggable_application.py -------------------------------------------------------------------------------- /modules/android/default_scheme_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/default_scheme_http.py -------------------------------------------------------------------------------- /modules/android/insecure_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/insecure_connection.py -------------------------------------------------------------------------------- /modules/android/insecure_hostname_verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/insecure_hostname_verifier.py -------------------------------------------------------------------------------- /modules/android/insecure_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/insecure_socket.py -------------------------------------------------------------------------------- /modules/android/insecure_socket_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/insecure_socket_factory.py -------------------------------------------------------------------------------- /modules/android/invalid_server_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/invalid_server_certificate.py -------------------------------------------------------------------------------- /modules/android/obfuscated_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/obfuscated_code.py -------------------------------------------------------------------------------- /modules/android/sebastian_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/sebastian_base.py -------------------------------------------------------------------------------- /modules/android/ssl_getinsecure_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/ssl_getinsecure_method.py -------------------------------------------------------------------------------- /modules/android/super_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/super_base.py -------------------------------------------------------------------------------- /modules/android/weak_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/weak_algorithms.py -------------------------------------------------------------------------------- /modules/android/webview_ssl_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/webview_ssl_errors.py -------------------------------------------------------------------------------- /modules/android/wrappers/sebastian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/wrappers/sebastian.py -------------------------------------------------------------------------------- /modules/android/wrappers/super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/android/wrappers/super.py -------------------------------------------------------------------------------- /modules/compliance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/compliance/compare_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/compare_many.py -------------------------------------------------------------------------------- /modules/compliance/compare_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/compare_one.py -------------------------------------------------------------------------------- /modules/compliance/compliance_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/compliance_base.py -------------------------------------------------------------------------------- /modules/compliance/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/compliance/configuration/apache_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/configuration/apache_configuration.py -------------------------------------------------------------------------------- /modules/compliance/configuration/configuration_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/configuration/configuration_base.py -------------------------------------------------------------------------------- /modules/compliance/configuration/nginx_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/configuration/nginx_configuration.py -------------------------------------------------------------------------------- /modules/compliance/generate_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/generate_many.py -------------------------------------------------------------------------------- /modules/compliance/generate_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/generate_one.py -------------------------------------------------------------------------------- /modules/compliance/wrappers/certificateparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/wrappers/certificateparser.py -------------------------------------------------------------------------------- /modules/compliance/wrappers/conditionparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/wrappers/conditionparser.py -------------------------------------------------------------------------------- /modules/compliance/wrappers/db_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/compliance/wrappers/db_reader.py -------------------------------------------------------------------------------- /modules/configuration/apache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/configuration/apache/apache_configuration_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/configuration/apache/apache_configuration_base.py -------------------------------------------------------------------------------- /modules/configuration/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/configuration/configuration.py -------------------------------------------------------------------------------- /modules/configuration/configuration_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/configuration/configuration_base.py -------------------------------------------------------------------------------- /modules/configuration/nginx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/configuration/nginx/nginx_configuration_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/configuration/nginx/nginx_configuration_base.py -------------------------------------------------------------------------------- /modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/core.py -------------------------------------------------------------------------------- /modules/ios/allow_http_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/allow_http_plist.py -------------------------------------------------------------------------------- /modules/ios/insecure_connection_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/insecure_connection_plist.py -------------------------------------------------------------------------------- /modules/ios/insecure_tls_version_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/insecure_tls_version_plist.py -------------------------------------------------------------------------------- /modules/ios/no_forward_secrecy_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/no_forward_secrecy_plist.py -------------------------------------------------------------------------------- /modules/ios/sebastian_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/sebastian_base.py -------------------------------------------------------------------------------- /modules/ios/weak_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/weak_crypto.py -------------------------------------------------------------------------------- /modules/ios/wrappers/sebastian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/ios/wrappers/sebastian.py -------------------------------------------------------------------------------- /modules/parse_input_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/parse_input_conf.py -------------------------------------------------------------------------------- /modules/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/report.py -------------------------------------------------------------------------------- /modules/server/alpaca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/alpaca.py -------------------------------------------------------------------------------- /modules/server/beast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/beast.py -------------------------------------------------------------------------------- /modules/server/breach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/breach.py -------------------------------------------------------------------------------- /modules/server/ccs_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/ccs_injection.py -------------------------------------------------------------------------------- /modules/server/certificate_transparency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/certificate_transparency.py -------------------------------------------------------------------------------- /modules/server/client_hello_multiple_packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/client_hello_multiple_packets.py -------------------------------------------------------------------------------- /modules/server/crime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/crime.py -------------------------------------------------------------------------------- /modules/server/drown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/drown.py -------------------------------------------------------------------------------- /modules/server/freak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/freak.py -------------------------------------------------------------------------------- /modules/server/heartbleed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/heartbleed.py -------------------------------------------------------------------------------- /modules/server/hsts_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/hsts_base.py -------------------------------------------------------------------------------- /modules/server/hsts_preloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/hsts_preloading.py -------------------------------------------------------------------------------- /modules/server/hsts_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/hsts_set.py -------------------------------------------------------------------------------- /modules/server/https_enforced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/https_enforced.py -------------------------------------------------------------------------------- /modules/server/logjam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/logjam.py -------------------------------------------------------------------------------- /modules/server/lucky13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/lucky13.py -------------------------------------------------------------------------------- /modules/server/mitzvah.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/mitzvah.py -------------------------------------------------------------------------------- /modules/server/nomore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/nomore.py -------------------------------------------------------------------------------- /modules/server/padding_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/padding_oracle.py -------------------------------------------------------------------------------- /modules/server/pfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/pfs.py -------------------------------------------------------------------------------- /modules/server/raccoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/raccoon.py -------------------------------------------------------------------------------- /modules/server/renegotiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/renegotiation.py -------------------------------------------------------------------------------- /modules/server/robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/robot.py -------------------------------------------------------------------------------- /modules/server/sloth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/sloth.py -------------------------------------------------------------------------------- /modules/server/sslpoodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/sslpoodle.py -------------------------------------------------------------------------------- /modules/server/sweet32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/sweet32.py -------------------------------------------------------------------------------- /modules/server/testssl_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/testssl_base.py -------------------------------------------------------------------------------- /modules/server/three_shake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/three_shake.py -------------------------------------------------------------------------------- /modules/server/ticketbleed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/ticketbleed.py -------------------------------------------------------------------------------- /modules/server/tlsfuzzer_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/tlsfuzzer_base.py -------------------------------------------------------------------------------- /modules/server/tlspoodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/tlspoodle.py -------------------------------------------------------------------------------- /modules/server/tlsscanner_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/tlsscanner_base.py -------------------------------------------------------------------------------- /modules/server/webserver_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/webserver_type.py -------------------------------------------------------------------------------- /modules/server/wrappers/certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/wrappers/certificate.py -------------------------------------------------------------------------------- /modules/server/wrappers/https_hsts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/wrappers/https_hsts.py -------------------------------------------------------------------------------- /modules/server/wrappers/testssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/wrappers/testssl.py -------------------------------------------------------------------------------- /modules/server/wrappers/tlsfuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/wrappers/tlsfuzzer.py -------------------------------------------------------------------------------- /modules/server/wrappers/tlslite-ng.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/server/wrappers/tlsscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/server/wrappers/tlsscanner.py -------------------------------------------------------------------------------- /modules/stix/stix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/stix/stix.py -------------------------------------------------------------------------------- /modules/stix/stix_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/modules/stix/stix_base.py -------------------------------------------------------------------------------- /publiccode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/publiccode.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/run.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/certificate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/certificate_test.py -------------------------------------------------------------------------------- /tests/faulty_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/faulty_configuration.json -------------------------------------------------------------------------------- /tests/hsts_https_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/hsts_https_test.py -------------------------------------------------------------------------------- /tests/include_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/include_configuration.json -------------------------------------------------------------------------------- /tests/jinja_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/jinja_test.py -------------------------------------------------------------------------------- /tests/nucleus_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/nucleus_test.py -------------------------------------------------------------------------------- /tests/parse_conf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/parse_conf_test.py -------------------------------------------------------------------------------- /tests/stix_adv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/stix_adv_test.py -------------------------------------------------------------------------------- /tests/stix_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/stix_test.py -------------------------------------------------------------------------------- /tests/super_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/super_test.py -------------------------------------------------------------------------------- /tests/test_condition_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/test_condition_parser.py -------------------------------------------------------------------------------- /tests/test_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/test_configuration.json -------------------------------------------------------------------------------- /tests/tests_data/testssl_dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/tests_data/testssl_dump.json -------------------------------------------------------------------------------- /tests/testssl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tests/testssl_test.py -------------------------------------------------------------------------------- /tlsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tlsa/__init__.py -------------------------------------------------------------------------------- /tlsa/tlsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/tlsa/tlsa.py -------------------------------------------------------------------------------- /useful_scripts/openssl_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/useful_scripts/openssl_releases.py -------------------------------------------------------------------------------- /useful_scripts/urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/useful_scripts/urls.json -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/booleanize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/booleanize.py -------------------------------------------------------------------------------- /utils/ciphersuites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/ciphersuites.py -------------------------------------------------------------------------------- /utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/colors.py -------------------------------------------------------------------------------- /utils/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/configuration.py -------------------------------------------------------------------------------- /utils/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/counter.py -------------------------------------------------------------------------------- /utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/database.py -------------------------------------------------------------------------------- /utils/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/globals.py -------------------------------------------------------------------------------- /utils/iana2openssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/iana2openssl.py -------------------------------------------------------------------------------- /utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/loader.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/mitigations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/mitigations.py -------------------------------------------------------------------------------- /utils/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/output.py -------------------------------------------------------------------------------- /utils/prune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/prune.py -------------------------------------------------------------------------------- /utils/remove_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/remove_duplicates.py -------------------------------------------------------------------------------- /utils/subdomain_enumeration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/subdomain_enumeration.py -------------------------------------------------------------------------------- /utils/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/type.py -------------------------------------------------------------------------------- /utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/urls.py -------------------------------------------------------------------------------- /utils/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfbk/tlsassistant/HEAD/utils/validation.py --------------------------------------------------------------------------------