Current Path: > > opt > alt > python37 > lib > python3.7 > site-packages > raven > utils >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
serializer | Directory | - | - | |
__init__.py | File | 4822 bytes | October 29 2017 17:41:19. | |
compat.py | File | 5676 bytes | October 29 2017 17:41:19. | |
conf.py | File | 2278 bytes | October 29 2017 17:41:19. | |
encoding.py | File | 3303 bytes | October 29 2017 17:41:19. | |
http.py | File | 2000 bytes | October 29 2017 17:41:19. | |
imports.py | File | 404 bytes | October 29 2017 17:41:19. | |
json.py | File | 2605 bytes | October 29 2017 17:41:19. | |
ssl_match_hostname.py | File | 3598 bytes | October 29 2017 17:41:19. | |
stacks.py | File | 10041 bytes | October 29 2017 17:41:19. | |
testutils.py | File | 697 bytes | October 29 2017 17:41:19. | |
transaction.py | File | 1088 bytes | October 29 2017 17:41:19. | |
urlparse.py | File | 476 bytes | October 29 2017 17:41:19. | |
wsgi.py | File | 3731 bytes | October 29 2017 17:41:19. |
""" raven.utils.http ~~~~~~~~~~~~~~~~ :copyright: (c) 2010-2012 by the Sentry Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ from __future__ import absolute_import import socket import ssl import sys from raven.conf import defaults from raven.utils.compat import urllib2, httplib from raven.utils.ssl_match_hostname import match_hostname def urlopen(url, data=None, timeout=defaults.TIMEOUT, ca_certs=None, verify_ssl=False, assert_hostname=None): class ValidHTTPSConnection(httplib.HTTPConnection): default_port = httplib.HTTPS_PORT def __init__(self, *args, **kwargs): httplib.HTTPConnection.__init__(self, *args, **kwargs) def connect(self): sock = socket.create_connection( address=(self.host, self.port), timeout=self.timeout, ) if self._tunnel_host: self.sock = sock self._tunnel() self.sock = ssl.wrap_socket( sock, ca_certs=ca_certs, cert_reqs=ssl.CERT_REQUIRED) if assert_hostname is not None: match_hostname(self.sock.getpeercert(), self.assert_hostname or self.host) class ValidHTTPSHandler(urllib2.HTTPSHandler): def https_open(self, req): return self.do_open(ValidHTTPSConnection, req) if verify_ssl: handlers = [ValidHTTPSHandler] else: try: handlers = [urllib2.HTTPSHandler( context=ssl._create_unverified_context())] except AttributeError: handlers = [] opener = urllib2.build_opener(*handlers) if sys.version_info < (2, 6): default_timeout = socket.getdefaulttimeout() socket.setdefaulttimeout(timeout) try: return opener.open(url, data) finally: socket.setdefaulttimeout(default_timeout) return opener.open(url, data, timeout)
SILENT KILLER Tool