ডকুমেন্টেশন থেকে :
requests
আপনি যদি 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.com/')
print('It works')
requests.get('https://wrong.host.badssl.com/', verify=True)
print('Even if you try to force it to')
requests.get('https://wrong.host.badssl.com/', verify=False)
print('It resets back')
session = requests.Session()
session.verify = True
with no_ssl_verification():
session.get('https://wrong.host.badssl.com/', verify=True)
print('Works even here')
try:
requests.get('https://wrong.host.badssl.com/')
except requests.exceptions.SSLError:
print('It breaks')
try:
session.get('https://wrong.host.badssl.com/')
except requests.exceptions.SSLError:
print('It breaks here again')
মনে রাখবেন যে এই কোডটি সমস্ত প্রচ্ছন্ন অ্যাডাপ্টারগুলি বন্ধ করে দেয় যা আপনি প্যান্ট কনটেস্ট ম্যানেজারটি ছেড়ে যাওয়ার পরে প্যাচ করা অনুরোধটি পরিচালনা করে। এটি কারণ অনুরোধগুলি প্রতি সেশনের সংযোগ পুল বজায় রাখে এবং শংসাপত্রের বৈধতা কেবলমাত্র একবার সংযোগ প্রতি ঘটে তাই অনাকাক্সিক্ষত জিনিসগুলি ঘটবে:
>>> import requests
>>> session = requests.Session()
>>> session.get('https://wrong.host.badssl.com/', 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.com/', 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]>