Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
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
2021-02-25 12:38
display
[ DIR ]
drwxr-xr-x
2021-02-25 12:38
plugins
[ DIR ]
drwxr-xr-x
2021-02-25 12:38
tests
[ DIR ]
drwxr-xr-x
2021-02-25 12:38
__init__.py
114
B
-rw-r--r--
2019-02-07 22:20
account.py
13.98
KB
-rw-r--r--
2019-02-07 22:20
achallenges.py
1.59
KB
-rw-r--r--
2019-02-07 22:20
auth_handler.py
20.92
KB
-rw-r--r--
2019-02-07 22:20
cert_manager.py
15.1
KB
-rw-r--r--
2019-02-07 22:20
cli.py
71.49
KB
-rw-r--r--
2019-02-07 22:20
client.py
28.72
KB
-rw-r--r--
2019-02-07 22:20
compat.py
6.91
KB
-rw-r--r--
2019-02-07 22:20
configuration.py
5.66
KB
-rw-r--r--
2019-02-07 22:20
constants.py
6.54
KB
-rw-r--r--
2020-12-18 22:20
crypto_util.py
15.29
KB
-rw-r--r--
2019-02-07 22:20
eff.py
3.07
KB
-rw-r--r--
2019-02-07 22:20
error_handler.py
5.81
KB
-rw-r--r--
2019-02-07 22:20
errors.py
2.59
KB
-rw-r--r--
2019-02-07 22:20
hooks.py
8.44
KB
-rw-r--r--
2019-02-07 22:20
interfaces.py
22.02
KB
-rw-r--r--
2019-02-07 22:20
lock.py
3.56
KB
-rw-r--r--
2019-02-07 22:20
log.py
12.39
KB
-rw-r--r--
2019-02-07 22:20
main.py
48.47
KB
-rw-r--r--
2019-02-07 22:20
notify.py
1.04
KB
-rw-r--r--
2019-02-07 22:20
ocsp.py
4.1
KB
-rw-r--r--
2019-02-07 22:20
renewal.py
20.91
KB
-rw-r--r--
2020-12-18 22:20
reporter.py
3.46
KB
-rw-r--r--
2019-02-07 22:20
reverter.py
23.32
KB
-rw-r--r--
2019-02-07 22:20
ssl-dhparams.pem
424
B
-rw-r--r--
2019-02-07 22:20
storage.py
44.91
KB
-rw-r--r--
2019-02-07 22:20
updater.py
3.86
KB
-rw-r--r--
2019-02-07 22:20
util.py
20.35
KB
-rw-r--r--
2019-02-07 22:20
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