Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.149.24.115
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 /
twisted /
names /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-11-28 06:59
test
[ DIR ]
drwxr-xr-x
2024-11-28 06:59
__init__.py
135
B
-rw-r--r--
2022-02-07 13:12
_rfc1982.py
8.94
KB
-rw-r--r--
2022-02-07 13:12
authority.py
16.29
KB
-rw-r--r--
2022-02-07 13:12
cache.py
3.94
KB
-rw-r--r--
2022-02-07 13:12
client.py
23.95
KB
-rw-r--r--
2022-02-07 13:12
common.py
9.14
KB
-rw-r--r--
2022-02-07 13:12
dns.py
96.66
KB
-rw-r--r--
2022-02-07 13:12
error.py
1.98
KB
-rw-r--r--
2022-02-07 13:12
hosts.py
4.69
KB
-rw-r--r--
2022-02-07 13:12
resolve.py
3.17
KB
-rw-r--r--
2022-02-07 13:12
root.py
12.13
KB
-rw-r--r--
2022-02-07 13:12
secondary.py
6.97
KB
-rw-r--r--
2022-02-07 13:12
server.py
21.66
KB
-rw-r--r--
2022-02-07 13:12
srvconnect.py
8.98
KB
-rw-r--r--
2022-02-07 13:12
tap.py
4.69
KB
-rw-r--r--
2022-02-07 13:12
Save
Rename
# -*- test-case-name: twisted.names.test -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Exception class definitions for Twisted Names. """ from twisted.internet.defer import TimeoutError class DomainError(ValueError): """ Indicates a lookup failed because there were no records matching the given C{name, class, type} triple. """ class AuthoritativeDomainError(ValueError): """ Indicates a lookup failed for a name for which this server is authoritative because there were no records matching the given C{name, class, type} triple. """ class DNSQueryTimeoutError(TimeoutError): """ Indicates a lookup failed due to a timeout. @ivar id: The id of the message which timed out. """ def __init__(self, id): TimeoutError.__init__(self) self.id = id class DNSFormatError(DomainError): """ Indicates a query failed with a result of C{twisted.names.dns.EFORMAT}. """ class DNSServerError(DomainError): """ Indicates a query failed with a result of C{twisted.names.dns.ESERVER}. """ class DNSNameError(DomainError): """ Indicates a query failed with a result of C{twisted.names.dns.ENAME}. """ class DNSNotImplementedError(DomainError): """ Indicates a query failed with a result of C{twisted.names.dns.ENOTIMP}. """ class DNSQueryRefusedError(DomainError): """ Indicates a query failed with a result of C{twisted.names.dns.EREFUSED}. """ class DNSUnknownError(DomainError): """ Indicates a query failed with an unknown result. """ class ResolverError(Exception): """ Indicates a query failed because of a decision made by the local resolver object. """ __all__ = [ "DomainError", "AuthoritativeDomainError", "DNSQueryTimeoutError", "DNSFormatError", "DNSServerError", "DNSNameError", "DNSNotImplementedError", "DNSQueryRefusedError", "DNSUnknownError", "ResolverError", ]