Avoid deprecated TLS/SSL protocol versions
`SSLContext.getInstance` should not request SSL, SSLv2, SSLv3, TLSv1.0, or TLSv1.1.
#Metadata
#Why it matters
Pre-TLSv1.2 protocols are deprecated and vulnerable to known attacks such as POODLE and BEAST.
#Remediation
Use `SSLContext.getInstance("TLSv1.2")` or `"TLSv1.3"` and rely on platform defaults where possible.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/java/java.security.insecure-ssl-context.rule.yaml.