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 /
certbot /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-08-28 00:25
_internal
[ DIR ]
drwxr-xr-x
2024-08-28 00:25
compat
[ DIR ]
drwxr-xr-x
2024-08-28 00:25
display
[ DIR ]
drwxr-xr-x
2024-08-28 00:25
plugins
[ DIR ]
drwxr-xr-x
2024-08-28 00:25
tests
[ DIR ]
drwxr-xr-x
2024-08-28 00:25
__init__.py
113
B
-rw-r--r--
2021-11-03 06:27
achallenges.py
1.62
KB
-rw-r--r--
2021-11-03 06:27
configuration.py
10.18
KB
-rw-r--r--
2021-11-03 06:27
crypto_util.py
23.83
KB
-rw-r--r--
2021-11-03 06:27
errors.py
2.53
KB
-rw-r--r--
2021-11-03 06:27
interfaces.py
16.59
KB
-rw-r--r--
2021-11-03 06:27
main.py
405
B
-rw-r--r--
2021-11-03 06:27
ocsp.py
14.58
KB
-rw-r--r--
2021-11-03 06:27
reverter.py
21.15
KB
-rw-r--r--
2021-11-03 06:27
ssl-dhparams.pem
424
B
-rw-r--r--
2021-11-03 06:27
util.py
20.31
KB
-rw-r--r--
2021-11-03 06:27
Save
Rename
"""Certbot client errors.""" class Error(Exception): """Generic Certbot client error.""" class AccountStorageError(Error): """Generic `.AccountStorage` error.""" class AccountNotFound(AccountStorageError): """Account not found error.""" class ReverterError(Error): """Certbot Reverter error.""" class SubprocessError(Error): """Subprocess handling error.""" class CertStorageError(Error): """Generic `.CertStorage` error.""" class HookCommandNotFound(Error): """Failed to find a hook command in the PATH.""" class SignalExit(Error): """A Unix signal was received while in the ErrorHandler context manager.""" class OverlappingMatchFound(Error): """Multiple lineages matched what should have been a unique result.""" class LockError(Error): """File locking error.""" # Auth Handler Errors class AuthorizationError(Error): """Authorization error.""" class FailedChallenges(AuthorizationError): """Failed challenges error. :ivar set failed_achalls: Failed `.AnnotatedChallenge` instances. """ def __init__(self, failed_achalls): assert failed_achalls self.failed_achalls = failed_achalls super().__init__() def __str__(self): return "Failed authorization procedure. {0}".format( ", ".join( "{0} ({1}): {2}".format(achall.domain, achall.typ, achall.error) for achall in self.failed_achalls if achall.error is not None)) # Plugin Errors class PluginError(Error): """Certbot Plugin error.""" class PluginEnhancementAlreadyPresent(Error): """ Enhancement was already set """ class PluginSelectionError(Error): """A problem with plugin/configurator selection or setup""" class NoInstallationError(PluginError): """Certbot No Installation error.""" class MisconfigurationError(PluginError): """Certbot Misconfiguration error.""" class NotSupportedError(PluginError): """Certbot Plugin function not supported error.""" class PluginStorageError(PluginError): """Certbot Plugin Storage error.""" class StandaloneBindError(Error): """Standalone plugin bind error.""" def __init__(self, socket_error, port): super().__init__( "Problem binding to port {0}: {1}".format(port, socket_error)) self.socket_error = socket_error self.port = port class ConfigurationError(Error): """Configuration sanity error.""" # NoninteractiveDisplay error: class MissingCommandlineFlag(Error): """A command line argument was missing in noninteractive usage"""