Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
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 /
certbot /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-03-20 10:36
display
[ DIR ]
drwxrwxrwx
2022-03-20 10:36
plugins
[ DIR ]
drwxrwxrwx
2022-03-20 10:36
tests
[ DIR ]
drwxrwxrwx
2022-03-20 10:36
__init__.py
114
B
-rw-r--r--
2018-11-07 22:14
account.py
13.99
KB
-rw-r--r--
2018-11-07 22:14
achallenges.py
1.59
KB
-rw-r--r--
2018-11-07 22:14
auth_handler.py
20.56
KB
-rw-r--r--
2018-11-07 22:14
cert_manager.py
15.1
KB
-rw-r--r--
2018-11-07 22:14
cli.py
70.18
KB
-rw-r--r--
2018-11-07 22:14
client.py
27.86
KB
-rw-r--r--
2018-11-07 22:14
compat.py
6.02
KB
-rw-r--r--
2018-11-07 22:14
configuration.py
5.55
KB
-rw-r--r--
2018-11-07 22:14
constants.py
6.39
KB
-rw-r--r--
2020-09-26 20:25
crypto_util.py
15.29
KB
-rw-r--r--
2018-11-07 22:14
eff.py
3.07
KB
-rw-r--r--
2018-11-07 22:14
error_handler.py
5.81
KB
-rw-r--r--
2018-11-07 22:14
errors.py
2.59
KB
-rw-r--r--
2018-11-07 22:14
hooks.py
8.44
KB
-rw-r--r--
2018-11-07 22:14
interfaces.py
23.3
KB
-rw-r--r--
2018-11-07 22:14
lock.py
3.56
KB
-rw-r--r--
2018-11-07 22:14
log.py
12.39
KB
-rw-r--r--
2018-11-07 22:14
main.py
47.64
KB
-rw-r--r--
2018-11-07 22:14
notify.py
1.04
KB
-rw-r--r--
2018-11-07 22:14
ocsp.py
4.09
KB
-rw-r--r--
2018-11-07 22:14
renewal.py
19.85
KB
-rw-r--r--
2020-09-26 20:25
reporter.py
3.46
KB
-rw-r--r--
2018-11-07 22:14
reverter.py
23.32
KB
-rw-r--r--
2018-11-07 22:14
ssl-dhparams.pem
424
B
-rw-r--r--
2018-11-07 22:14
storage.py
45.75
KB
-rw-r--r--
2018-11-07 22:14
updater.py
3.86
KB
-rw-r--r--
2018-11-07 22:14
util.py
20.35
KB
-rw-r--r--
2018-11-07 22:14
Save
Rename
"""Client annotated ACME challenges. Please use names such as ``achall`` to distinguish from variables "of type" :class:`acme.challenges.Challenge` (denoted by ``chall``) and :class:`.ChallengeBody` (denoted by ``challb``):: from acme import challenges from acme import messages from certbot import achallenges chall = challenges.DNS(token='foo') challb = messages.ChallengeBody(chall=chall) achall = achallenges.DNS(chall=challb, domain='example.com') Note, that all annotated challenges act as a proxy objects:: achall.token == challb.token """ import logging import josepy as jose from acme import challenges logger = logging.getLogger(__name__) # pylint: disable=too-few-public-methods class AnnotatedChallenge(jose.ImmutableMap): """Client annotated challenge. Wraps around server provided challenge and annotates with data useful for the client. :ivar challb: Wrapped `~.ChallengeBody`. """ __slots__ = ('challb',) acme_type = NotImplemented def __getattr__(self, name): return getattr(self.challb, name) class KeyAuthorizationAnnotatedChallenge(AnnotatedChallenge): """Client annotated `KeyAuthorizationChallenge` challenge.""" __slots__ = ('challb', 'domain', 'account_key') def response_and_validation(self, *args, **kwargs): """Generate response and validation.""" return self.challb.chall.response_and_validation( self.account_key, *args, **kwargs) class DNS(AnnotatedChallenge): """Client annotated "dns" ACME challenge.""" __slots__ = ('challb', 'domain') acme_type = challenges.DNS