OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3
/
dist-packages
/
certifi
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
__init__.py
94 bytes
12/27/2023 03:27:12 PM
rw-r--r--
📄
__main__.py
243 bytes
12/27/2023 03:27:12 PM
rw-r--r--
📁
__pycache__
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
cacert.pem
283.48 KB
12/27/2023 03:27:12 PM
rw-r--r--
📄
core.py
354 bytes
12/27/2023 03:36:00 PM
rw-r--r--
📄
py.typed
0 bytes
12/27/2023 03:27:12 PM
rw-r--r--
Editing: core.py
Close
""" certifi.py ~~~~~~~~~~ This module returns the installation location of /etc/ssl/certs/ca-certificates.crt or its contents. """ DEBIAN_CA_CERTS_PATH = '/etc/ssl/certs/ca-certificates.crt' def where() -> str: return DEBIAN_CA_CERTS_PATH def contents() -> str: with open(where(), "r", encoding="ascii") as data: return data.read()