Closed cn-kali-team closed 3 years ago
After I delete the automatic monkey patch, it works successfully
After I delete the automatic monkey patch, it works successfully
Thank you :) I will check it out and fix it.
Edit: Do you have script that reproduce the issue? I tried to reproduce it but it doesn't work
import ssl
import requests_raw as requests
from requests.adapters import HTTPAdapter, PoolManager
class TLSHttpAdapter(HTTPAdapter):
def init_poolmanager(self, connections, maxsize, block=False):
self.poolmanager = PoolManager(num_pools=connections,
maxsize=maxsize,
block=block,
ssl_version=ssl.PROTOCOL_TLS)
session = requests.session()
session.mount('https://', TLSHttpAdapter())
@cn-kali-team can you help me with the reproduction?
@cn-kali-team can you help me with the reproduction?
Sorry, I can't reproduce the problem now. Maybe there is a bug in my code,
thank you :) if it pops again, reopen the issue
@cn-kali-team can you help me with the reproduction?
Sorry, I can't reproduce the problem now. Maybe there is a bug in my code,
The ssl3httpadapter is a custom adapter