Server IP : 85.214.239.14 / Your IP : 3.146.107.152 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/proc/3/task/3/root/usr/share/doc/python3-dnspython/examples/ |
Upload File : |
#!/usr/bin/env python3 import dns.edns import dns.message import dns.query import dns.resolver n = "." t = dns.rdatatype.SOA l = "google.com" # Address of l.root-servers.net, '199.7.83.42' i = "ns1.isc.org" # Address of ns1.isc.org, for COOKIEs, '149.20.1.73' o_list = [] # A query without options o_list.append((l, dict())) # The same query, but with empty options list o_list.append((l, dict(options=[]))) # Use use_edns() to specify EDNS0 options, such as buffer size o_list.append((l, dict(payload=2000))) # With an NSID option, but with use_edns() to specify the options edns_kwargs = dict( edns=0, options=[dns.edns.GenericOption(dns.edns.OptionType.NSID, b"")] ) o_list.append((l, edns_kwargs)) # With a COOKIE o_list.append( ( i, dict( options=[ dns.edns.GenericOption( dns.edns.OptionType.COOKIE, b"0xfe11ac99bebe3322" ) ] ), ) ) # With an ECS option using cloudflare dns address o_list.append((l, dict(options=[dns.edns.ECSOption("1.1.1.1", 24)]))) # With an ECS option using the current machine address import urllib.request external_ip = urllib.request.urlopen("https://ident.me").read().decode("utf8") o_list.append((l, dict(options=[dns.edns.ECSOption(external_ip, 24)]))) aresolver = dns.resolver.Resolver() for (addr, edns_kwargs) in o_list: if edns_kwargs: aresolver.use_edns(**edns_kwargs) aresolver.nameservers = ["8.8.8.8"] print(list(aresolver.resolve(addr, "A")))