Current Path: > > usr > lib > python2.7 > site-packages > pip > _vendor > > certifi
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 |
---|---|---|---|---|
__init__.py | File | 63 bytes | April 21 2022 18:08:21. | |
__init__.pyc | File | 265 bytes | April 21 2022 18:08:34. | |
__init__.pyo | File | 265 bytes | April 21 2022 18:08:34. | |
__main__.py | File | 41 bytes | April 21 2022 18:08:21. | |
__main__.pyc | File | 214 bytes | April 21 2022 18:08:34. | |
__main__.pyo | File | 214 bytes | April 21 2022 18:08:34. | |
core.py | File | 806 bytes | April 21 2022 18:08:21. | |
core.pyc | File | 1356 bytes | April 21 2022 18:08:34. | |
core.pyo | File | 1356 bytes | April 21 2022 18:08:34. |
#!/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())
SILENT KILLER Tool