Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.144.1.100
202 Domain
8.1.31
nbspublicschool
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 /
site-packages /
httplib2 /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
79.86
KB
-rw-r--r--
__init__.pyc
60.23
KB
-rw-r--r--
__init__.pyo
60.23
KB
-rw-r--r--
cacerts.txt
132.37
KB
-rw-r--r--
certs.py
1023
B
-rw-r--r--
certs.pyc
1.23
KB
-rw-r--r--
certs.pyo
1.23
KB
-rw-r--r--
iri2uri.py
4.03
KB
-rw-r--r--
iri2uri.pyc
3.68
KB
-rw-r--r--
iri2uri.pyo
3.68
KB
-rw-r--r--
socks.py
19.18
KB
-rw-r--r--
socks.pyc
17.44
KB
-rw-r--r--
socks.pyo
17.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : certs.py
"""Utilities for certificate management.""" import os certifi_available = False certifi_where = None try: from certifi import where as certifi_where certifi_available = True except ImportError: pass custom_ca_locater_available = False custom_ca_locater_where = None try: from ca_certs_locater import get as custom_ca_locater_where custom_ca_locater_available = True except ImportError: pass BUILTIN_CA_CERTS = os.path.join( os.path.dirname(os.path.abspath(__file__)), "cacerts.txt" ) FEDORA_CA_CERTS = "/etc/pki/tls/certs/ca-bundle.crt" def where(): env = os.environ.get("HTTPLIB2_CA_CERTS") if env is not None: if os.path.isfile(env): return env else: raise RuntimeError("Environment variable HTTPLIB2_CA_CERTS not a valid file") if custom_ca_locater_available: return custom_ca_locater_where() if certifi_available: return certifi_where() return FEDORA_CA_CERTS if __name__ == "__main__": print(where())
Close