Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Client TLS1.0 #38

Merged
merged 1 commit into from Jun 9, 2022
Merged

Adding Client TLS1.0 #38

merged 1 commit into from Jun 9, 2022

Conversation

Mzack9999
Copy link
Member

Proposed changes

This PR lower the minimum required TLS to 1.0.

@Mzack9999 Mzack9999 added the Type: Maintenance Updating phrasing or wording to make things clearer or removing ambiguity. label Jun 3, 2022
@Mzack9999 Mzack9999 self-assigned this Jun 3, 2022
}

return d.DialTLSWithConfig(ctx, network, address, &tls.Config{InsecureSkipVerify: true})
return d.DialTLSWithConfig(ctx, network, address, &tls.Config{InsecureSkipVerify: true, MinVersion: tls.VersionTLS10})

Check failure

Code scanning / CodeQL

Disabled TLS certificate check

InsecureSkipVerify should not be used in production code.
}

return d.DialTLSWithConfig(ctx, network, address, &tls.Config{InsecureSkipVerify: true})
return d.DialTLSWithConfig(ctx, network, address, &tls.Config{InsecureSkipVerify: true, MinVersion: tls.VersionTLS10})

Check failure

Code scanning / CodeQL

Insecure TLS configuration

Using insecure TLS version VersionTLS10 for MinVersion.
@Mzack9999 Mzack9999 requested a review from Ice3man543 June 3, 2022 19:39
@Mzack9999 Mzack9999 added the Status: Review Needed The issue has a PR attached to it which needs to be reviewed label Jun 3, 2022
@Mzack9999 Mzack9999 removed the request for review from Ice3man543 June 9, 2022 09:14
@Mzack9999 Mzack9999 merged commit 2ff59f4 into master Jun 9, 2022
@Mzack9999 Mzack9999 deleted the maint-tls branch June 9, 2022 09:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: Review Needed The issue has a PR attached to it which needs to be reviewed Type: Maintenance Updating phrasing or wording to make things clearer or removing ambiguity.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant