Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
acme /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 11:08
__init__.py
736
B
-rw-r--r--
2022-12-07 14:50
challenges.py
21.93
KB
-rw-r--r--
2022-12-07 14:50
client.py
29.36
KB
-rw-r--r--
2022-12-07 14:50
crypto_util.py
17.38
KB
-rw-r--r--
2022-12-07 14:50
errors.py
4.21
KB
-rw-r--r--
2022-12-07 14:50
fields.py
1.61
KB
-rw-r--r--
2022-12-07 14:50
jws.py
2.56
KB
-rw-r--r--
2022-12-07 14:50
messages.py
24.29
KB
-rw-r--r--
2022-12-07 14:50
py.typed
0
B
-rw-r--r--
2022-12-07 14:50
standalone.py
12.68
KB
-rw-r--r--
2022-12-07 14:50
util.py
303
B
-rw-r--r--
2022-12-07 14:50
Save
Rename
"""ACME protocol implementation. This module is an implementation of the `ACME protocol`_. .. _`ACME protocol`: https://datatracker.ietf.org/doc/html/rfc8555 """ import sys # This code exists to keep backwards compatibility with people using acme.jose # before it became the standalone josepy package. # # It is based on # https://github.com/requests/requests/blob/1278ecdf71a312dc2268f3bfc0aabfab3c006dcf/requests/packages.py import josepy as jose for mod in list(sys.modules): # This traversal is apparently necessary such that the identities are # preserved (acme.jose.* is josepy.*) if mod == 'josepy' or mod.startswith('josepy.'): sys.modules['acme.' + mod.replace('josepy', 'jose', 1)] = sys.modules[mod]