Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit54bf71f

Browse files
author
Felipe Zimmerle
committed
mlogc: Changes the default SSL algo to TLS 1.2
As reported by Josh Amishav-Zlatin, mlogc was making usage of SSLv3 instead ofTLS 1.2. Servers should not answer SSLv3 after poodle.
1 parentd554b94 commit54bf71f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎mlogc/mlogc.c‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,8 +1218,8 @@ static void logc_init(void)
12181218
curl_easy_setopt(curl,CURLOPT_HTTPAUTH,CURLAUTH_BASIC);
12191219
curl_easy_setopt(curl,CURLOPT_SSL_VERIFYPEER, FALSE);
12201220
curl_easy_setopt(curl,CURLOPT_SSL_VERIFYHOST,0);
1221-
/* SSLv3 works better overall as some servers have issues with TLS */
1222-
curl_easy_setopt(curl,CURLOPT_SSLVERSION,CURL_SSLVERSION_SSLv3);
1221+
curl_easy_setopt(curl,CURLOPT_SSLVERSION,CURL_SSLVERSION_TLSv1_2);
1222+
12231223
curl_easy_setopt(curl,CURLOPT_CONNECTTIMEOUT,15);
12241224
curl_easy_setopt(curl,CURLOPT_NOSIGNAL, TRUE);
12251225
curl_easy_setopt(curl,CURLOPT_HEADER, TRUE);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp