Software⏱️ 2 min read📅 2026-05-31

How to Fix: curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number

Quick Answer: Try updating libcurl to the latest version using your package manager or by compiling from source.

To resolve the 'curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number' issue, you can try one of the following solutions:

🛠️ Step-by-Step Verified Fixes

Method 1: Update curl to the latest version

  1. Step 1: Install the latest version of curl using your package manager (e.g., apt-get install libcurl4-openssl-dev on Ubuntu-based systems).

Method 2: Disable SSLv3 in curl

  1. Step 1: Run the following command to disable SSLv3 in curl: curl --ssl-versions TLSv1.2+ www.google.com

🎯 Final Words

By following these methods, you should be able to resolve the 'curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number' issue and successfully connect to servers using curl.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions