Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
twisted /
names /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
26
B
-rw-r--r--
test_cache.py
5.45
KB
-rw-r--r--
test_client.py
40.53
KB
-rw-r--r--
test_common.py
4.03
KB
-rw-r--r--
test_dns.py
156.99
KB
-rw-r--r--
test_examples.py
5.2
KB
-rw-r--r--
test_hosts.py
9.67
KB
-rw-r--r--
test_names.py
47.84
KB
-rw-r--r--
test_resolve.py
1.05
KB
-rw-r--r--
test_rfc1982.py
13.51
KB
-rw-r--r--
test_rootresolve.py
25.05
KB
-rw-r--r--
test_server.py
40.69
KB
-rw-r--r--
test_srvconnect.py
9.2
KB
-rw-r--r--
test_tap.py
4.64
KB
-rw-r--r--
test_util.py
3.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_resolve.py
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Tests for L{twisted.names.resolve}. """ from twisted.names.error import DomainError from twisted.names.resolve import ResolverChain from twisted.trial.unittest import TestCase class ResolverChainTests(TestCase): """ Tests for L{twisted.names.resolve.ResolverChain} """ def test_emptyResolversList(self): """ L{ResolverChain._lookup} returns a L{DomainError} failure if its C{resolvers} list is empty. """ r = ResolverChain([]) d = r.lookupAddress("www.example.com") f = self.failureResultOf(d) self.assertIs(f.trap(DomainError), DomainError) def test_emptyResolversListLookupAllRecords(self): """ L{ResolverChain.lookupAllRecords} returns a L{DomainError} failure if its C{resolvers} list is empty. """ r = ResolverChain([]) d = r.lookupAllRecords("www.example.com") f = self.failureResultOf(d) self.assertIs(f.trap(DomainError), DomainError)
Close