OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
certifi
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
63 bytes
01/24/2018 08:57:27 AM
rw-r--r--
📄
__main__.py
41 bytes
01/24/2018 08:57:27 AM
rw-r--r--
📁
__pycache__
-
10/21/2019 03:49:43 PM
rwxr-xr-x
📄
cacert.pem
264.73 KB
01/24/2018 08:57:27 AM
rw-r--r--
📄
core.py
808 bytes
02/06/2018 08:27:04 AM
rw-r--r--
Editing: core.py
Close
#!/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/ssl/certs/ca-certificates.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())