File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
v3.x.y - YYYY-MMM-DD (to be released)
2
2
-------------------------------------
3
3
4
+ - Set the minimum security protocol version for SecRemoteRules
5
+ [Issue security/code-scanning/2 - @airween]
4
6
5
7
v3.0.11 - 2023-Dec-06
6
8
---------------------
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ bool HttpsClient::download(const std::string &uri) {
87
87
headers_chunk = curl_slist_append (headers_chunk, m_key.c_str ());
88
88
}
89
89
90
- /* Make it TLS 1.x only . */
91
- curl_easy_setopt (curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1 );
90
+ /* Make it TLS 1.2 at least . */
91
+ curl_easy_setopt (curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2 );
92
92
93
93
/* those are the default options, but lets make sure */
94
94
curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 1 );
You can’t perform that action at this time.
0 commit comments