Pythonリクエストでセキュリティ証明書チェックを無効にするにはどうすればいいですか?質問する

Pythonリクエストでセキュリティ証明書チェックを無効にするにはどうすればいいですか?質問する

使っています

import requests
requests.post(url='https://foo.example', data={'bar':'baz'})

しかし、request.exceptions.SSLError が発生します。Web サイトの証明書は期限切れですが、機密データは送信していないので、問題ではありません。使用できる 'verifiy=False' などの引数があると思いますが、見つけることができません。

ベストアンサー1

からドキュメント:

requestsFalse に設定すると、SSL 証明書の検証を無視することもできますverify

>>> requests.get('https://kennethreitz.com', verify=False)
<Response [200]>

サードパーティのモジュールを使用していて、チェックを無効にしたい場合は、モンキーパッチを適用しrequestsて変更し、それがverify=Falseデフォルトになって警告を抑制するコンテキスト マネージャーがあります。

import warnings
import contextlib

import requests
from urllib3.exceptions import InsecureRequestWarning

old_merge_environment_settings = requests.Session.merge_environment_settings

@contextlib.contextmanager
def no_ssl_verification():
    opened_adapters = set()

    def merge_environment_settings(self, url, proxies, stream, verify, cert):
        # Verification happens only once per connection so we need to close
        # all the opened adapters once we're done. Otherwise, the effects of
        # verify=False persist beyond the end of this context manager.
        opened_adapters.add(self.get_adapter(url))

        settings = old_merge_environment_settings(self, url, proxies, stream, verify, cert)
        settings['verify'] = False

        return settings

    requests.Session.merge_environment_settings = merge_environment_settings

    try:
        with warnings.catch_warnings():
            warnings.simplefilter('ignore', InsecureRequestWarning)
            yield
    finally:
        requests.Session.merge_environment_settings = old_merge_environment_settings

        for adapter in opened_adapters:
            try:
                adapter.close()
            except:
                pass

使い方は次のとおりです:

with no_ssl_verification():
    requests.get('https://wrong.host.badssl.example/')
    print('It works')

    requests.get('https://wrong.host.badssl.example/', verify=True)
    print('Even if you try to force it to')

requests.get('https://wrong.host.badssl.example/', verify=False)
print('It resets back')

session = requests.Session()
session.verify = True

with no_ssl_verification():
    session.get('https://wrong.host.badssl.example/', verify=True)
    print('Works even here')

try:
    requests.get('https://wrong.host.badssl.example/')
except requests.exceptions.SSLError:
    print('It breaks')

try:
    session.get('https://wrong.host.badssl.example/')
except requests.exceptions.SSLError:
    print('It breaks here again')

このコードは、コンテキスト マネージャーを終了すると、パッチを適用したリクエストを処理したすべてのオープン アダプターを閉じることに注意してください。これは、リクエストがセッションごとの接続プールを維持し、証明書の検証が接続ごとに 1 回だけ行われるため、次のような予期しない事態が発生するためです。

>>> import requests
>>> session = requests.Session()
>>> session.get('https://wrong.host.badssl.example/', verify=False)
/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py:857: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
<Response [200]>
>>> session.get('https://wrong.host.badssl.example/', verify=True)
/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py:857: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
<Response [200]>

おすすめ記事