Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
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
2024-08-28 00:25
__init__.py
726
B
-rw-r--r--
2021-11-03 06:27
challenges.py
21.19
KB
-rw-r--r--
2021-11-03 06:27
client.py
52.86
KB
-rw-r--r--
2021-11-03 06:27
crypto_util.py
16.39
KB
-rw-r--r--
2023-05-02 05:17
errors.py
4.21
KB
-rw-r--r--
2021-11-03 06:27
fields.py
1.84
KB
-rw-r--r--
2021-11-03 06:27
jws.py
2.33
KB
-rw-r--r--
2021-11-03 06:27
magic_typing.py
595
B
-rw-r--r--
2021-11-03 06:27
messages.py
24.75
KB
-rw-r--r--
2021-11-03 06:27
mixins.py
2.78
KB
-rw-r--r--
2021-11-03 06:27
standalone.py
12.83
KB
-rw-r--r--
2021-11-03 06:27
util.py
303
B
-rw-r--r--
2021-11-03 06:27
Save
Rename
"""ACME protocol implementation. This module is an implementation of the `ACME protocol`_. .. _`ACME protocol`: https://ietf-wg-acme.github.io/acme """ 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]