nuclei-templates/ssl/tls-version.yaml

48 lines
1.0 KiB
YAML
Raw Normal View History

2021-12-15 15:13:36 +00:00
id: tls-version
info:
2023-03-15 10:39:49 +00:00
name: TLS Version - Detect
2023-03-13 18:25:53 +00:00
author: pdteam,pussycat0x
2021-12-15 15:13:36 +00:00
severity: info
2023-03-13 18:25:53 +00:00
description: |
TLS version detection is a security process used to determine the version of the Transport Layer Security (TLS) protocol used by a computer or server.
It is important to detect the TLS version in order to ensure secure communication between two computers or servers.
2021-12-15 15:13:36 +00:00
tags: ssl
ssl:
- address: "{{Host}}:{{Port}}"
2023-03-13 18:25:53 +00:00
min_version: tls10
max_version: tls10
2021-12-15 15:13:36 +00:00
extractors:
- type: json
json:
- ".tls_version"
2023-03-13 18:25:53 +00:00
- address: "{{Host}}:{{Port}}"
min_version: tls11
max_version: tls11
extractors:
- type: json
json:
2023-03-15 10:39:49 +00:00
- ".tls_version"
2023-03-13 18:25:53 +00:00
- address: "{{Host}}:{{Port}}"
min_version: tls12
max_version: tls12
extractors:
- type: json
json:
2023-03-15 10:39:49 +00:00
- ".tls_version"
2023-03-13 18:25:53 +00:00
- address: "{{Host}}:{{Port}}"
min_version: tls13
max_version: tls13
extractors:
- type: json
json:
2023-03-15 10:39:49 +00:00
- ".tls_version"