복붙노트

[PYTHON] SSL3_GET_SERVER_CERTIFICATE 인증서 확인이 (*) * .google.com을 요청할 때 Python에서 실패했습니다.

PYTHON

SSL3_GET_SERVER_CERTIFICATE 인증서 확인이 (*) * .google.com을 요청할 때 Python에서 실패했습니다.

SSL과 Python과 google.com (또는 더 일반적으로 여러 개의 인증서 체인이있는 도메인에서 생각하는)과 관련이있는 정말 이상한 버그가 발생했습니다. https : //*.google.com/whatever에 대한 요청을 시도 할 때마다 다음 오류가 발생합니다.

SSLError: ("bad handshake: Error([('SSL routines', 'SSL3_GET_SERVER_CERTIFICATE', 'certificate verify failed')],)",) while doing GET request to URL: https://google.com/

이 작업을 시도하는 많은 농구를 통해 갔다가 스택 오버플로 게시 할 때 무엇을 해야할지 모르겠다. 다음은 내가 시도한 것입니다.

$ python -V
Python 2.7.9

$ pip list | grep -e requests
requests (2.9.1)

$ uname-a  # ubuntu 14.04
Linux staging.example.com 3.13.0-48-generic #80-Ubuntu SMP Thu Mar 12 11:16:15 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

이것은 https를 통한 Google 도메인에서만 발생합니다. 다음은 그 예입니다.

$ ipython
Python 2.7.9 (default, Jan  6 2016, 21:37:32)
Type "copyright", "credits" or "license" for more information.

IPython 4.0.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In [1]: import requests

In [2]: requests.get('https://facebook.com', verify=True)
Out[2]: <Response [200]>

In [3]: requests.get('https://stackoverflow.com', verify=True)
Out[3]: <Response [200]>

In [4]: requests.get('https://spotify.com', verify=True)
Out[4]: <Response [200]>

In [5]: requests.get('http://google.com', verify=True) # notice the http
Out[5]: <Response [200]>

In [6]: requests.get('https://google.com', verify=True)
---------------------------------------------------------------------------
SSLError                                  Traceback (most recent call last)
<ipython-input-6-a7fff1831944> in <module>()
----> 1 requests.get('https://google.com', verify=True)

/example/.virtualenv/example/lib/python2.7/site-packages/requests/api.pyc in get(url, params, **kwargs)
     65
     66     kwargs.setdefault('allow_redirects', True)
---> 67     return request('get', url, params=params, **kwargs)
     68
     69

/example/.virtualenv/example/lib/python2.7/site-packages/requests/api.pyc in request(method, url, **kwargs)
     51     # cases, and look like a memory leak in others.
     52     with sessions.Session() as session:
---> 53         return session.request(method=method, url=url, **kwargs)
     54
     55

/example/.virtualenv/example/lib/python2.7/site-packages/requests/sessions.pyc in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    466         }
    467         send_kwargs.update(settings)
--> 468         resp = self.send(prep, **send_kwargs)
    469
    470         return resp

/example/.virtualenv/example/lib/python2.7/site-packages/requests/sessions.pyc in send(self, request, **kwargs)
    574
    575         # Send the request
--> 576         r = adapter.send(request, **kwargs)
    577
    578         # Total elapsed time of the request (approximately)

/example/.virtualenv/example/lib/python2.7/site-packages/requests/adapters.pyc in send(self, request, stream, timeout, verify, cert, proxies)
    445         except (_SSLError, _HTTPError) as e:
    446             if isinstance(e, _SSLError):
--> 447                 raise SSLError(e, request=request)
    448             elif isinstance(e, ReadTimeoutError):
    449                 raise ReadTimeout(e, request=request)

SSLError: ("bad handshake: Error([('SSL routines', 'SSL3_GET_SERVER_CERTIFICATE', 'certificate verify failed')],)",)

해결법

  1. ==============================

    1.해결책을 찾았습니다. 실행중인 certifi 버전에는 중대한 문제가있는 것으로 보입니다. 나는이 (매우 긴) GitHub 문제에서 이것을 발견했다 : https://github.com/certifi/python-certifi/issues/26

    해결책을 찾았습니다. 실행중인 certifi 버전에는 중대한 문제가있는 것으로 보입니다. 나는이 (매우 긴) GitHub 문제에서 이것을 발견했다 : https://github.com/certifi/python-certifi/issues/26

    TL, DR

    pip uninstall -y certifi & pip install certifi == 2015.04.28

  2. from https://stackoverflow.com/questions/34646942/ssl3-get-server-certificate-certificate-verify-failed-on-python-when-requesting by cc-by-sa and MIT license