Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.100.119
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python3-dnspython /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
async_dns.py
702
B
-rw-r--r--
ddns.py
1.18
KB
-rwxr-xr-x
doh-json.py
2.95
KB
-rwxr-xr-x
doh.py
1.16
KB
-rwxr-xr-x
e164.py
114
B
-rwxr-xr-x
ecs.py
429
B
-rwxr-xr-x
mx.py
189
B
-rwxr-xr-x
name.py
430
B
-rwxr-xr-x
query_specific.py
815
B
-rw-r--r--
receive_notify.py
1.01
KB
-rw-r--r--
reverse.py
1.39
KB
-rwxr-xr-x
reverse_name.py
139
B
-rwxr-xr-x
xfr.py
340
B
-rwxr-xr-x
zonediff.py
11.53
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : async_dns.py
import sys import trio import dns.message import dns.asyncquery import dns.asyncresolver async def main(): if len(sys.argv) > 1: host = sys.argv[0] else: host = 'www.dnspython.org' q = dns.message.make_query(host, 'A') r = await dns.asyncquery.udp(q, '8.8.8.8') print(r) q = dns.message.make_query(host, 'A') r = await dns.asyncquery.tcp(q, '8.8.8.8') print(r) q = dns.message.make_query(host, 'A') r = await dns.asyncquery.tls(q, '8.8.8.8') print(r) a = await dns.asyncresolver.resolve(host, 'A') print(a.response) zn = await dns.asyncresolver.zone_for_name(host) print(zn) if __name__ == '__main__': trio.run(main)
Close