Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.128.199.33
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
pip /
_vendor /
certifi /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
63
B
-rw-r--r--
2022-04-21 18:08
__init__.pyc
265
B
-rw-r--r--
2022-04-21 18:08
__init__.pyo
265
B
-rw-r--r--
2022-04-21 18:08
__main__.py
41
B
-rw-r--r--
2022-04-21 18:08
__main__.pyc
214
B
-rw-r--r--
2022-04-21 18:08
__main__.pyo
214
B
-rw-r--r--
2022-04-21 18:08
core.py
806
B
-rw-r--r--
2022-04-21 18:08
core.pyc
1.32
KB
-rw-r--r--
2022-04-21 18:08
core.pyo
1.32
KB
-rw-r--r--
2022-04-21 18:08
Save
Rename
#!/usr/bin/env python # -*- coding: utf-8 -*- """ certifi.py ~~~~~~~~~~ This module returns the installation location of cacert.pem. """ import os import warnings class DeprecatedBundleWarning(DeprecationWarning): """ The weak security bundle is being deprecated. Please bother your service provider to get them to stop using cross-signed roots. """ def where(): return '/etc/pki/tls/certs/ca-bundle.crt' def old_where(): warnings.warn( "The weak security bundle has been removed. certifi.old_where() is now an alias " "of certifi.where(). Please update your code to use certifi.where() instead. " "certifi.old_where() will be removed in 2018.", DeprecatedBundleWarning ) return where() if __name__ == '__main__': print(where())