[GH-ISSUE #2613] [Performance] HickoryDNS loses nearly 50% of queries #1030

Open
opened 2026-03-16 01:19:03 +03:00 by kerem · 10 comments
Owner

Originally created by @mokeyish on GitHub (Nov 23, 2024).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/2613

Describe the bug

I made a simple DNS performance test repository and obtained the most popular 1 million domain names as a test set.

Then it was discovered that HickoryDNS actually lost nearly 50% of the queries.

To Reproduce

https://github.com/mokeyish/dnsperf-testing

Steps to reproduce the behavior:

  • Case 1: Use nameserver 119.29.29.29 directly

    1. Configure dnsperf .env file
    ## dns server settings
    
    # the server to query (default: 127.0.0.1)
    SERVER=119.29.29.29
    # the port on which to query the server (default: udp/tcp 53, DoT 853 or DoH 443)
    PORT=53
    # transport mode: udp, tcp, dot or doh (default: udp)
    MODE=udp
    TYPE=A
    
    
    ## data
    INPUT_CSV=./data/raw/cloudflare-radar_top-1000000-domains_20241111-20241118.csv
    DOMAIN_FILE=./data/processed/domain.txt
    COUNT=10000
    
    
    ## dnsperf settings
    CLIENT_COUNT=100
    TIMEOUT=5
    
    
    1. Start testing
    just test
    
    1. The results
    dns_gold
  • Case 2: use HickoryDNS

    1. HickoryDNS configuration file
    [[zones]]
    zone = "."
    zone_type = "Forward"
    stores = { type = "forward", name_servers = [{ socket_addr = "119.29.29.29:53", protocol = "udp", trust_negative_responses = false }] }
    
    1. Start HickoryDNS
    cargo run --bin=hickory-dns -- -c tests/test-data/test_configs/example_forwarder.toml -p 8054
    
    1. Update the dnsperf .env
    ## dns server settings
    
    # the server to query (default: 127.0.0.1)
    - SERVER=119.29.29.29
    + SERVER=127.0.0.1
    # the port on which to query the server (default: udp/tcp 53, DoT 853 or DoH 443)
    - PORT=53
    + PORT=8054
    # transport mode: udp, tcp, dot or doh (default: udp)
    MODE=udp
    TYPE=A
    
    
    ## data
    INPUT_CSV=./data/raw/cloudflare-radar_top-1000000-domains_20241111-20241118.csv
    DOMAIN_FILE=./data/processed/domain.txt
    COUNT=10000
    
    
    ## dnsperf settings
    CLIENT_COUNT=100
    TIMEOUT=5
    
    1. Start testing
    just test
    
    1. The results
    dns_bad

Expected behavior

Fix this performance issue.

System:

  • OS: Debian
  • Architecture: x86_64
  • Version 12 bookworm
  • rustc version: rustc 1.82.0 (f6e511eec 2024-10-15)

Version:
Crate: server
Version: github.com/hickory-dns/hickory-dns@001ced84c3

Originally created by @mokeyish on GitHub (Nov 23, 2024). Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/2613 **Describe the bug** I made a simple DNS performance test repository and obtained the most popular 1 million domain names as a test set. **Then it was discovered that HickoryDNS actually lost nearly 50% of the queries.** **To Reproduce** https://github.com/mokeyish/dnsperf-testing Steps to reproduce the behavior: - Case 1: Use nameserver 119.29.29.29 directly 1. Configure dnsperf .env file ```sh ## dns server settings # the server to query (default: 127.0.0.1) SERVER=119.29.29.29 # the port on which to query the server (default: udp/tcp 53, DoT 853 or DoH 443) PORT=53 # transport mode: udp, tcp, dot or doh (default: udp) MODE=udp TYPE=A ## data INPUT_CSV=./data/raw/cloudflare-radar_top-1000000-domains_20241111-20241118.csv DOMAIN_FILE=./data/processed/domain.txt COUNT=10000 ## dnsperf settings CLIENT_COUNT=100 TIMEOUT=5 ``` 2. Start testing ```sh just test ```` 4. The results <img width="636" alt="dns_gold" src="https://github.com/user-attachments/assets/d857412e-6647-4341-995f-c3f831ae5b5a"> - Case 2: use HickoryDNS 1. HickoryDNS configuration file ```toml [[zones]] zone = "." zone_type = "Forward" stores = { type = "forward", name_servers = [{ socket_addr = "119.29.29.29:53", protocol = "udp", trust_negative_responses = false }] } ``` 2. Start HickoryDNS ```sh cargo run --bin=hickory-dns -- -c tests/test-data/test_configs/example_forwarder.toml -p 8054 ``` 3. Update the dnsperf `.env` ```diff ## dns server settings # the server to query (default: 127.0.0.1) - SERVER=119.29.29.29 + SERVER=127.0.0.1 # the port on which to query the server (default: udp/tcp 53, DoT 853 or DoH 443) - PORT=53 + PORT=8054 # transport mode: udp, tcp, dot or doh (default: udp) MODE=udp TYPE=A ## data INPUT_CSV=./data/raw/cloudflare-radar_top-1000000-domains_20241111-20241118.csv DOMAIN_FILE=./data/processed/domain.txt COUNT=10000 ## dnsperf settings CLIENT_COUNT=100 TIMEOUT=5 ``` 2. Start testing ```sh just test ```` 5. The results <img width="524" alt="dns_bad" src="https://github.com/user-attachments/assets/ca6c2bb6-d1f6-4c2a-ad57-a2afafa7888f"> **Expected behavior** Fix this performance issue. **System:** - OS: Debian - Architecture: x86_64 - Version 12 bookworm - rustc version: rustc 1.82.0 (f6e511eec 2024-10-15) **Version:** Crate: server Version: https://github.com/hickory-dns/hickory-dns/commit/001ced84c37a3f1b1c43e1244df0ba436ffcb9c5
Author
Owner

@marcus0x62 commented on GitHub (Nov 23, 2024):

Hi @mokeyish,

Running the same git commit as you, this is what I see against 1.1.1.1:

Statistics:

  Queries sent:         9999
  Queries completed:    9952 (99.53%)
  Queries lost:         47 (0.47%)

  Response codes:       NOERROR 9855 (99.03%), NXDOMAIN 97 (0.97%)
  Average packet size:  request 30, response 78
  Run time (s):         28.946179
  Queries per second:   343.810490

  Average Latency (s):  0.229788 (min 0.011245, max 4.347742)
  Latency StdDev (s):   0.340956

and 8.8.8.8:

Statistics:

  Queries sent:         9999
  Queries completed:    9992 (99.93%)
  Queries lost:         7 (0.07%)

  Response codes:       NOERROR 9895 (99.03%), NXDOMAIN 97 (0.97%)
  Average packet size:  request 30, response 77
  Run time (s):         14.472769
  Queries per second:   690.400020

  Average Latency (s):  0.126741 (min 0.018369, max 4.703716)
  Latency StdDev (s):   0.213172

Most of the few query failures I did see went away with a longer timeout (I was getting late reply messages in a few cases.)

So, with DNS servers that are reasonably close to me, I can't duplicate the behavior you are seeing. If you can reproduce this readily, trace logs from hickory would be helpful.

<!-- gh-comment-id:2495555500 --> @marcus0x62 commented on GitHub (Nov 23, 2024): Hi @mokeyish, Running the same git commit as you, this is what I see against 1.1.1.1: ``` Statistics: Queries sent: 9999 Queries completed: 9952 (99.53%) Queries lost: 47 (0.47%) Response codes: NOERROR 9855 (99.03%), NXDOMAIN 97 (0.97%) Average packet size: request 30, response 78 Run time (s): 28.946179 Queries per second: 343.810490 Average Latency (s): 0.229788 (min 0.011245, max 4.347742) Latency StdDev (s): 0.340956 ``` and 8.8.8.8: ``` Statistics: Queries sent: 9999 Queries completed: 9992 (99.93%) Queries lost: 7 (0.07%) Response codes: NOERROR 9895 (99.03%), NXDOMAIN 97 (0.97%) Average packet size: request 30, response 77 Run time (s): 14.472769 Queries per second: 690.400020 Average Latency (s): 0.126741 (min 0.018369, max 4.703716) Latency StdDev (s): 0.213172 ``` Most of the few query failures I did see went away with a longer timeout (I was getting late reply messages in a few cases.) So, with DNS servers that are reasonably close to me, I can't duplicate the behavior you are seeing. If you can reproduce this readily, trace logs from hickory would be helpful.
Author
Owner

@mokeyish commented on GitHub (Nov 23, 2024):

@marcus0x62 Are your two directly testing 1.1.1.1 and 8.8.8.8?

One of my tests is to test 119.29.29.29 directly, and the other is to start HickoryDNS and set the upstream to 119.29.29.29.

<!-- gh-comment-id:2495558834 --> @mokeyish commented on GitHub (Nov 23, 2024): @marcus0x62 Are your two directly testing 1.1.1.1 and 8.8.8.8? One of my tests is to test 119.29.29.29 directly, and the other is to start HickoryDNS and set the upstream to 119.29.29.29.
Author
Owner

@marcus0x62 commented on GitHub (Nov 23, 2024):

@marcus0x62 Are your two directly testing 1.1.1.1 and 8.8.8.8?

No, the output of dnsperf in my previous message shows requests to Hickory, configured to forward to 1.1.1.1 and 8.8.8.8. I used the same forwarding configuration as in your issue report.

<!-- gh-comment-id:2495560774 --> @marcus0x62 commented on GitHub (Nov 23, 2024): > @marcus0x62 Are your two directly testing 1.1.1.1 and 8.8.8.8? > No, the output of dnsperf in my previous message shows requests to Hickory, configured to forward to 1.1.1.1 and 8.8.8.8. I used the same forwarding configuration as in your issue report.
Author
Owner

@mokeyish commented on GitHub (Nov 23, 2024):

Here are my logs from testing HickoryDNS (left) and dnsperf (right).

image

<!-- gh-comment-id:2495562640 --> @mokeyish commented on GitHub (Nov 23, 2024): Here are my logs from testing HickoryDNS (left) and dnsperf (right). ![image](https://github.com/user-attachments/assets/081a5c56-3b1d-49a9-82bc-0bdd735915f8)
Author
Owner

@mokeyish commented on GitHub (Nov 23, 2024):

Your data is so close, is it because my computer performance is relatively low? I am running it in WSL.

<!-- gh-comment-id:2495573467 --> @mokeyish commented on GitHub (Nov 23, 2024): Your data is so close, is it because my computer performance is relatively low? I am running it in WSL.
Author
Owner

@mokeyish commented on GitHub (Nov 24, 2024):

@marcus0x62 I ran it on cloudcone and got exactly the same result as yours.

<!-- gh-comment-id:2495780031 --> @mokeyish commented on GitHub (Nov 24, 2024): @marcus0x62 I ran it on [cloudcone](https://cloudcone.com) and got exactly the same result as yours.
Author
Owner

@marcus0x62 commented on GitHub (Nov 24, 2024):

I think I'd need to see the full log output to venture any sort of guess as to what's going on. Trying running your server with:

RUST_LOG=trace cargo run \
               --all-features \
               --bin hickory-dns \
               -- \
                  --debug -p 8054 \
                 --config tests/test-data/test_configs/example_forwarder.toml --debug

and attach the full log file.

<!-- gh-comment-id:2496093188 --> @marcus0x62 commented on GitHub (Nov 24, 2024): I think I'd need to see the full log output to venture any sort of guess as to what's going on. Trying running your server with: ``` RUST_LOG=trace cargo run \ --all-features \ --bin hickory-dns \ -- \ --debug -p 8054 \ --config tests/test-data/test_configs/example_forwarder.toml --debug ``` and attach the full log file.
Author
Owner

@mokeyish commented on GitHub (Dec 28, 2024):

I think I'd need to see the full log output to venture any sort of guess as to what's going on. and attach the full log file.

@marcus0x62 Hi, Here are some of the logs.

1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9831 response_code: Server Failure
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:INFO:hickory_server::server::server_future:857:request:9831 src:udp://127.0.0.1#47809 QUERY:1wfxkw.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9833 response_code: Server Failure
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9832 response_code: Server Failure
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9834 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9833 src:udp://127.0.0.1#45986 QUERY:1win-2024-gkx.buzz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:INFO:hickory_server::server::server_future:857:request:9834 src:udp://127.0.0.1#47417 QUERY:1win-casino2c9.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:INFO:hickory_server::server::server_future:857:request:9832 src:udp://127.0.0.1#46944 QUERY:1wgich.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1hallmark.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1h9add.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1h9add.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1hallmark.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 56552:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1h9add.com. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 19308:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1hallmark.com. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1gokazino1.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1gokazino1.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 26060:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1gokazino1.com. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9835 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9835 src:udp://127.0.0.1#47511 QUERY:1win-gkb.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1mf.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1mf.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 34747:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1mf.ru. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wazke.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wdgx.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wazke.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wdgx.com."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 50458:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wazke.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 23980:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wdgx.com. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9851 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9851 src:udp://127.0.0.1#45204 QUERY:1xbet-1xbet.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9852 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9852 src:udp://127.0.0.1#46517 QUERY:1xbet-67pn.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1webit.cz."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wgpr.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1weis.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9853 response_code: Server Failure
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1webit.cz."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1weko.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:INFO:hickory_server::server::server_future:857:request:9853 src:udp://127.0.0.1#46821 QUERY:1xbet-6x4s.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1weis.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wgpr.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1weko.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 11324:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1webit.cz. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 26422:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1weis.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 32238:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wgpr.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 38558:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1weko.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9854 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9854 src:udp://127.0.0.1#47573 QUERY:1xbet-aae.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9855 response_code: Server Failure
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9856 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9855 src:udp://127.0.0.1#45101 QUERY:1xbet-ang.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:INFO:hickory_server::server::server_future:857:request:9856 src:udp://127.0.0.1#48502 QUERY:1xbet-byq.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1win-1win-1win.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1win-bxh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1win-1win-1win.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1win-bxh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 23805:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1win-1win-1win.ru. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 17322:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1win-bxh.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9860 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9860 src:udp://127.0.0.1#46697 QUERY:1xbet-emf.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9858 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9858 src:udp://127.0.0.1#46601 QUERY:1xbet-dnm.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9857 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9857 src:udp://127.0.0.1#45644 QUERY:1xbet-ctu.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9859 response_code: Server Failure
1735355491:INFO:hickory_server::server::server_future:857:request:9859 src:udp://127.0.0.1#45583 QUERY:1xbet-eae.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wines.es."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1win-s5.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wines.es."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9861 response_code: Server Failure
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1winqy.xyz."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:INFO:hickory_server::server::server_future:857:request:9861 src:udp://127.0.0.1#46173 QUERY:1xbet-far8.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 22984:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wines.es. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wjtdb.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1win-s5.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 23651:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1win-s5.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wjtdb.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wincasino-18yw.buzz."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 1676:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wjtdb.top. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9862 response_code: Server Failure
1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wincasino-18yw.buzz."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:INFO:hickory_server::server::server_future:857:request:9862 src:udp://127.0.0.1#47183 QUERY:1xbet-fbj.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1winqy.xyz."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 59838:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wincasino-18yw.buzz. IN A; mdns_unicast_response: false

1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 53924:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1winqy.xyz. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9863 response_code: Server Failure
1735355492:INFO:hickory_server::server::server_future:857:request:9863 src:udp://127.0.0.1#44836 QUERY:1xbet-fea.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1word.ws."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wlvv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1word.ws."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wlvv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 34469:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1word.ws. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 39691:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wlvv.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wwbj.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wwbj.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 56789:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wwbj.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-clg.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9873 response_code: Server Failure
1735355492:INFO:hickory_server::server::server_future:857:request:9873 src:udp://127.0.0.1#45068 QUERY:0800flex.com.br.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-clg.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 8427:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-clg.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-97047.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9871 response_code: Server Failure
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:INFO:hickory_server::server::server_future:857:request:9871 src:udp://127.0.0.1#46926 QUERY:0626.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wxph.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9872 response_code: Server Failure
1735355492:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-97047.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wxph.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 56451:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-97047.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 13465:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1wxph.top. IN A; mdns_unicast_response: false

1735355492:INFO:hickory_server::server::server_future:857:request:9872 src:udp://127.0.0.1#48545 QUERY:072356.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-dbv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-dbv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 11970:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-dbv.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gby.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gby.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 6199:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-gby.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9874 response_code: Server Failure
1735355492:INFO:hickory_server::server::server_future:857:request:9874 src:udp://127.0.0.1#44898 QUERY:0896news.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-good213.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-good213.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 57400:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-good213.ru. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9875 response_code: Server Failure
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9876 response_code: Server Failure
1735355492:INFO:hickory_server::server::server_future:857:request:9876 src:udp://127.0.0.1#45137 QUERY:0nh8.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:INFO:hickory_server::server::server_future:857:request:9875 src:udp://127.0.0.1#46370 QUERY:0iloa3dp13ao.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gqo.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gqo.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 38741:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-gqo.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gwy.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gwy.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 20288:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-gwy.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gsd.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gsd.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 60942:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-gsd.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9880 response_code: Server Failure
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9881 response_code: Server Failure
1735355492:INFO:hickory_server::server::server_future:857:request:9881 src:udp://127.0.0.1#46034 QUERY:1-bdmbet.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:INFO:hickory_server::server::server_future:857:request:9880 src:udp://127.0.0.1#48468 QUERY:1-800-wholesale.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-hmh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-hmh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }]
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 39676:QUERY:RD:NoError:QUERY:0/0/0
; query
;; 1xbet-hmh.top. IN A; mdns_unicast_response: false

1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully
1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9882 response_code: Server Failure
1735355492:INFO:hickory_server::server::server_future:857:request:9882 src:udp://127.0.0.1#44828 QUERY:1-win-app.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9883 response_code: Server Failure
1735355493:INFO:hickory_server::server::server_future:857:request:9883 src:udp://127.0.0.1#47522 QUERY:100bahthuay.net.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9884 response_code: Server Failure
1735355493:INFO:hickory_server::server::server_future:857:request:9884 src:udp://127.0.0.1#47319 QUERY:100bucksbabes.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9886 response_code: Server Failure
1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9885 response_code: Server Failure
1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9887 response_code: Server Failure
1735355493:INFO:hickory_server::server::server_future:857:request:9885 src:udp://127.0.0.1#45429 QUERY:100puan.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355493:INFO:hickory_server::server::server_future:857:request:9887 src:udp://127.0.0.1#47236 QUERY:101netlink.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355493:INFO:hickory_server::server::server_future:857:request:9886 src:udp://127.0.0.1#46124 QUERY:10101010.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9889 response_code: Server Failure
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9890 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9890 src:udp://127.0.0.1#45871 QUERY:104prxy.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:INFO:hickory_server::server::server_future:857:request:9889 src:udp://127.0.0.1#47447 QUERY:103-440-76-92.store.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9895 response_code: Server Failure
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9893 response_code: Server Failure
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:INFO:hickory_server::server::server_future:857:request:9895 src:udp://127.0.0.1#47978 QUERY:114515.best.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9892 response_code: Server Failure
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9894 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9893 src:udp://127.0.0.1#46148 QUERY:1100.ir.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:INFO:hickory_server::server::server_future:857:request:9894 src:udp://127.0.0.1#48618 QUERY:1110wang.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:INFO:hickory_server::server::server_future:857:request:9892 src:udp://127.0.0.1#46865 QUERY:10g.kz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9896 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9896 src:udp://127.0.0.1#48426 QUERY:11880.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9897 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9897 src:udp://127.0.0.1#45476 QUERY:11am.co.kr.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9898 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9898 src:udp://127.0.0.1#44951 QUERY:11img.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9900 response_code: Server Failure
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9901 response_code: Server Failure
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:INFO:hickory_server::server::server_future:857:request:9901 src:udp://127.0.0.1#46856 QUERY:123.support.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9903 response_code: Server Failure
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:INFO:hickory_server::server::server_future:857:request:9903 src:udp://127.0.0.1#45653 QUERY:12345game.bet.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:INFO:hickory_server::server::server_future:857:request:9900 src:udp://127.0.0.1#47377 QUERY:121learn.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9899 response_code: Server Failure
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9902 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9899 src:udp://127.0.0.1#46303 QUERY:11x11.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:INFO:hickory_server::server::server_future:857:request:9902 src:udp://127.0.0.1#48563 QUERY:12345678.website.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9906 response_code: Server Failure
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9907 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9906 src:udp://127.0.0.1#48642 QUERY:123moviesfree.taxi.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:INFO:hickory_server::server::server_future:857:request:9907 src:udp://127.0.0.1#46310 QUERY:123moviesio.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9908 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9908 src:udp://127.0.0.1#47968 QUERY:123moviesraw.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9909 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9909 src:udp://127.0.0.1#47191 QUERY:123news.com.br.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9911 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9911 src:udp://127.0.0.1#48359 QUERY:123proxy.cc.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9913 response_code: Server Failure
1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9912 response_code: Server Failure
1735355494:INFO:hickory_server::server::server_future:857:request:9912 src:udp://127.0.0.1#47438 QUERY:123soapgate.cc.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:INFO:hickory_server::server::server_future:857:request:9913 src:udp://127.0.0.1#46267 QUERY:123stat.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9914 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9914 src:udp://127.0.0.1#45472 QUERY:123superproxy.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9941 response_code: Server Failure
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9939 response_code: Server Failure
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9937 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9941 src:udp://127.0.0.1#45879 QUERY:1and1-dns.biz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:INFO:hickory_server::server::server_future:857:request:9939 src:udp://127.0.0.1#47935 QUERY:1919bet6.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:INFO:hickory_server::server::server_future:857:request:9937 src:udp://127.0.0.1#47311 QUERY:18rule.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9940 response_code: Server Failure
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9942 response_code: Server Failure
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9943 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9942 src:udp://127.0.0.1#47974 QUERY:1bet1.uno.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:INFO:hickory_server::server::server_future:857:request:9940 src:udp://127.0.0.1#47014 QUERY:1a2b3c4d5s6a7u-x-08.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:INFO:hickory_server::server::server_future:857:request:9943 src:udp://127.0.0.1#47396 QUERY:1c-hosting.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9944 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9944 src:udp://127.0.0.1#48418 QUERY:1c.com.vn.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9945 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9945 src:udp://127.0.0.1#47237 QUERY:1da.ir.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9948 response_code: Server Failure
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:INFO:hickory_server::server::server_future:857:request:9948 src:udp://127.0.0.1#47676 QUERY:1go-casino-odisseyaco1.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9946 response_code: Server Failure
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9947 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9946 src:udp://127.0.0.1#48346 QUERY:1ee.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:INFO:hickory_server::server::server_future:857:request:9947 src:udp://127.0.0.1#48451 QUERY:1go-casino-gamewin6.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9950 response_code: Server Failure
1735355495:INFO:hickory_server::server::server_future:857:request:9950 src:udp://127.0.0.1#45849 QUERY:1gocasino-105.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9952 response_code: Server Failure
1735355496:INFO:hickory_server::server::server_future:857:request:9952 src:udp://127.0.0.1#46517 QUERY:1gocasino-mirror8.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9954 response_code: Server Failure
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9953 response_code: Server Failure
1735355496:INFO:hickory_server::server::server_future:857:request:9954 src:udp://127.0.0.1#47573 QUERY:1h9add.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:INFO:hickory_server::server::server_future:857:request:9953 src:udp://127.0.0.1#46821 QUERY:1gokazino1.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9955 response_code: Server Failure
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:INFO:hickory_server::server::server_future:857:request:9955 src:udp://127.0.0.1#45101 QUERY:1hallmark.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9957 response_code: Server Failure
1735355496:INFO:hickory_server::server::server_future:857:request:9957 src:udp://127.0.0.1#45644 QUERY:1mf.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9971 response_code: Server Failure
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9972 response_code: Server Failure
1735355496:INFO:hickory_server::server::server_future:857:request:9971 src:udp://127.0.0.1#46926 QUERY:1wazke.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:INFO:hickory_server::server::server_future:857:request:9972 src:udp://127.0.0.1#48545 QUERY:1wdgx.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9973 response_code: Server Failure
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:INFO:hickory_server::server::server_future:857:request:9973 src:udp://127.0.0.1#45068 QUERY:1webit.cz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9975 response_code: Server Failure
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9976 response_code: Server Failure
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9974 response_code: Server Failure
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:INFO:hickory_server::server::server_future:857:request:9975 src:udp://127.0.0.1#46370 QUERY:1weko.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:INFO:hickory_server::server::server_future:857:request:9974 src:udp://127.0.0.1#44898 QUERY:1weis.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:INFO:hickory_server::server::server_future:857:request:9976 src:udp://127.0.0.1#45137 QUERY:1wgpr.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9977 response_code: Server Failure
1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9978 response_code: Server Failure
1735355496:INFO:hickory_server::server::server_future:857:request:9977 src:udp://127.0.0.1#45817 QUERY:1win-1win-1win.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:INFO:hickory_server::server::server_future:857:request:9978 src:udp://127.0.0.1#48423 QUERY:1win-bxh.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9984 response_code: Server Failure
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9980 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9984 src:udp://127.0.0.1#47319 QUERY:1wjtdb.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9982 response_code: Server Failure
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9983 response_code: Server Failure
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:INFO:hickory_server::server::server_future:857:request:9983 src:udp://127.0.0.1#47522 QUERY:1winqy.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:INFO:hickory_server::server::server_future:857:request:9980 src:udp://127.0.0.1#48468 QUERY:1win-s5.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:INFO:hickory_server::server::server_future:857:request:9982 src:udp://127.0.0.1#44828 QUERY:1wines.es.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9981 response_code: Server Failure
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:INFO:hickory_server::server::server_future:857:request:9981 src:udp://127.0.0.1#46034 QUERY:1wincasino-18yw.buzz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9985 response_code: Server Failure
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9986 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9986 src:udp://127.0.0.1#46124 QUERY:1word.ws.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:INFO:hickory_server::server::server_future:857:request:9985 src:udp://127.0.0.1#45429 QUERY:1wlvv.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9989 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9989 src:udp://127.0.0.1#47447 QUERY:1wwbj.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9992 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9992 src:udp://127.0.0.1#46865 QUERY:1xbet-clg.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9991 response_code: Server Failure
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9990 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9991 src:udp://127.0.0.1#45052 QUERY:1xbet-97047.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:INFO:hickory_server::server::server_future:857:request:9990 src:udp://127.0.0.1#45871 QUERY:1wxph.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9993 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9993 src:udp://127.0.0.1#46148 QUERY:1xbet-dbv.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9994 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9994 src:udp://127.0.0.1#48618 QUERY:1xbet-gby.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9995 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9995 src:udp://127.0.0.1#47978 QUERY:1xbet-good213.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9996 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9996 src:udp://127.0.0.1#48426 QUERY:1xbet-gqo.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9997 response_code: Server Failure
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:INFO:hickory_server::server::server_future:857:request:9997 src:udp://127.0.0.1#45476 QUERY:1xbet-gsd.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9998 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9998 src:udp://127.0.0.1#44951 QUERY:1xbet-gwy.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down
1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None }
1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None })
1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9999 response_code: Server Failure
1735355497:INFO:hickory_server::server::server_future:857:request:9999 src:udp://127.0.0.1#46303 QUERY:1xbet-hmh.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA


<!-- gh-comment-id:2564153937 --> @mokeyish commented on GitHub (Dec 28, 2024): > I think I'd need to see the full log output to venture any sort of guess as to what's going on. and attach the full log file. @marcus0x62 Hi, Here are some of the logs. ```log 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9831 response_code: Server Failure 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:INFO:hickory_server::server::server_future:857:request:9831 src:udp://127.0.0.1#47809 QUERY:1wfxkw.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9833 response_code: Server Failure 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9832 response_code: Server Failure 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9834 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9833 src:udp://127.0.0.1#45986 QUERY:1win-2024-gkx.buzz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:INFO:hickory_server::server::server_future:857:request:9834 src:udp://127.0.0.1#47417 QUERY:1win-casino2c9.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:INFO:hickory_server::server::server_future:857:request:9832 src:udp://127.0.0.1#46944 QUERY:1wgich.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1hallmark.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1h9add.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1h9add.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1hallmark.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 56552:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1h9add.com. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 19308:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1hallmark.com. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1gokazino1.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1gokazino1.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 26060:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1gokazino1.com. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9835 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9835 src:udp://127.0.0.1#47511 QUERY:1win-gkb.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1mf.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1mf.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 34747:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1mf.ru. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wazke.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wdgx.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wazke.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wdgx.com."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 50458:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wazke.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 23980:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wdgx.com. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9851 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9851 src:udp://127.0.0.1#45204 QUERY:1xbet-1xbet.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9852 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9852 src:udp://127.0.0.1#46517 QUERY:1xbet-67pn.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1webit.cz."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wgpr.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1weis.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9853 response_code: Server Failure 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1webit.cz."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1weko.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:INFO:hickory_server::server::server_future:857:request:9853 src:udp://127.0.0.1#46821 QUERY:1xbet-6x4s.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1weis.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wgpr.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1weko.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 11324:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1webit.cz. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 26422:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1weis.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 32238:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wgpr.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 38558:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1weko.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9854 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9854 src:udp://127.0.0.1#47573 QUERY:1xbet-aae.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9855 response_code: Server Failure 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9856 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9855 src:udp://127.0.0.1#45101 QUERY:1xbet-ang.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:INFO:hickory_server::server::server_future:857:request:9856 src:udp://127.0.0.1#48502 QUERY:1xbet-byq.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1win-1win-1win.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1win-bxh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1win-1win-1win.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1win-bxh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 23805:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1win-1win-1win.ru. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 17322:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1win-bxh.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9860 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9860 src:udp://127.0.0.1#46697 QUERY:1xbet-emf.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9858 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9858 src:udp://127.0.0.1#46601 QUERY:1xbet-dnm.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9857 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9857 src:udp://127.0.0.1#45644 QUERY:1xbet-ctu.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9859 response_code: Server Failure 1735355491:INFO:hickory_server::server::server_future:857:request:9859 src:udp://127.0.0.1#45583 QUERY:1xbet-eae.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wines.es."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1win-s5.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wines.es."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9861 response_code: Server Failure 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1winqy.xyz."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:INFO:hickory_server::server::server_future:857:request:9861 src:udp://127.0.0.1#46173 QUERY:1xbet-far8.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 22984:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wines.es. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wjtdb.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1win-s5.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 23651:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1win-s5.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wjtdb.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wincasino-18yw.buzz."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 1676:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wjtdb.top. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355491:DEBUG:hickory_server::server::response_handler:107:response: 9862 response_code: Server Failure 1735355491:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wincasino-18yw.buzz."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:INFO:hickory_server::server::server_future:857:request:9862 src:udp://127.0.0.1#47183 QUERY:1xbet-fbj.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355491:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1winqy.xyz."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 59838:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wincasino-18yw.buzz. IN A; mdns_unicast_response: false 1735355491:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 53924:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1winqy.xyz. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9863 response_code: Server Failure 1735355492:INFO:hickory_server::server::server_future:857:request:9863 src:udp://127.0.0.1#44836 QUERY:1xbet-fea.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1word.ws."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wlvv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1word.ws."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wlvv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 34469:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1word.ws. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 39691:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wlvv.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wwbj.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wwbj.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 56789:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wwbj.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-clg.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9873 response_code: Server Failure 1735355492:INFO:hickory_server::server::server_future:857:request:9873 src:udp://127.0.0.1#45068 QUERY:0800flex.com.br.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-clg.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 8427:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-clg.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-97047.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9871 response_code: Server Failure 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:INFO:hickory_server::server::server_future:857:request:9871 src:udp://127.0.0.1#46926 QUERY:0626.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1wxph.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9872 response_code: Server Failure 1735355492:DEBUG:hickory_resolver::name_server::name_server:115:existing connection: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-97047.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1wxph.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 56451:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-97047.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 13465:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1wxph.top. IN A; mdns_unicast_response: false 1735355492:INFO:hickory_server::server::server_future:857:request:9872 src:udp://127.0.0.1#48545 QUERY:072356.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-dbv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-dbv.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 11970:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-dbv.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gby.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gby.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 6199:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-gby.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9874 response_code: Server Failure 1735355492:INFO:hickory_server::server::server_future:857:request:9874 src:udp://127.0.0.1#44898 QUERY:0896news.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-good213.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-good213.ru."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 57400:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-good213.ru. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9875 response_code: Server Failure 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9876 response_code: Server Failure 1735355492:INFO:hickory_server::server::server_future:857:request:9876 src:udp://127.0.0.1#45137 QUERY:0nh8.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:INFO:hickory_server::server::server_future:857:request:9875 src:udp://127.0.0.1#46370 QUERY:0iloa3dp13ao.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gqo.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gqo.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 38741:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-gqo.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gwy.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gwy.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 20288:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-gwy.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-gsd.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-gsd.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 60942:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-gsd.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9880 response_code: Server Failure 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9881 response_code: Server Failure 1735355492:INFO:hickory_server::server::server_future:857:request:9881 src:udp://127.0.0.1#46034 QUERY:1-bdmbet.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:INFO:hickory_server::server::server_future:857:request:9880 src:udp://127.0.0.1#48468 QUERY:1-800-wholesale.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_resolver::name_server::name_server_pool:223:sending request: [Query { name: Name("1xbet-hmh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_resolver::name_server::name_server:101:reconnecting: NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_proto::xfer:166:enqueueing message:QUERY:[Query { name: Name("1xbet-hmh.top."), query_type: A, query_class: IN, mdns_unicast_response: false }] 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355492:DEBUG:hickory_proto::udp::udp_client_stream:187:final message: ; header 39676:QUERY:RD:NoError:QUERY:0/0/0 ; query ;; 1xbet-hmh.top. IN A; mdns_unicast_response: false 1735355492:DEBUG:hickory_proto::udp::udp_stream:284:created socket successfully 1735355492:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355492:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355492:DEBUG:hickory_server::server::response_handler:107:response: 9882 response_code: Server Failure 1735355492:INFO:hickory_server::server::server_future:857:request:9882 src:udp://127.0.0.1#44828 QUERY:1-win-app.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355492:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9883 response_code: Server Failure 1735355493:INFO:hickory_server::server::server_future:857:request:9883 src:udp://127.0.0.1#47522 QUERY:100bahthuay.net.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9884 response_code: Server Failure 1735355493:INFO:hickory_server::server::server_future:857:request:9884 src:udp://127.0.0.1#47319 QUERY:100bucksbabes.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355493:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9886 response_code: Server Failure 1735355493:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9885 response_code: Server Failure 1735355493:DEBUG:hickory_server::server::response_handler:107:response: 9887 response_code: Server Failure 1735355493:INFO:hickory_server::server::server_future:857:request:9885 src:udp://127.0.0.1#45429 QUERY:100puan.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355493:INFO:hickory_server::server::server_future:857:request:9887 src:udp://127.0.0.1#47236 QUERY:101netlink.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355493:INFO:hickory_server::server::server_future:857:request:9886 src:udp://127.0.0.1#46124 QUERY:10101010.lol.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355493:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9889 response_code: Server Failure 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9890 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9890 src:udp://127.0.0.1#45871 QUERY:104prxy.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:INFO:hickory_server::server::server_future:857:request:9889 src:udp://127.0.0.1#47447 QUERY:103-440-76-92.store.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9895 response_code: Server Failure 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9893 response_code: Server Failure 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:INFO:hickory_server::server::server_future:857:request:9895 src:udp://127.0.0.1#47978 QUERY:114515.best.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9892 response_code: Server Failure 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9894 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9893 src:udp://127.0.0.1#46148 QUERY:1100.ir.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:INFO:hickory_server::server::server_future:857:request:9894 src:udp://127.0.0.1#48618 QUERY:1110wang.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:INFO:hickory_server::server::server_future:857:request:9892 src:udp://127.0.0.1#46865 QUERY:10g.kz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9896 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9896 src:udp://127.0.0.1#48426 QUERY:11880.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9897 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9897 src:udp://127.0.0.1#45476 QUERY:11am.co.kr.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9898 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9898 src:udp://127.0.0.1#44951 QUERY:11img.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9900 response_code: Server Failure 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9901 response_code: Server Failure 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:INFO:hickory_server::server::server_future:857:request:9901 src:udp://127.0.0.1#46856 QUERY:123.support.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9903 response_code: Server Failure 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:INFO:hickory_server::server::server_future:857:request:9903 src:udp://127.0.0.1#45653 QUERY:12345game.bet.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:INFO:hickory_server::server::server_future:857:request:9900 src:udp://127.0.0.1#47377 QUERY:121learn.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9899 response_code: Server Failure 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9902 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9899 src:udp://127.0.0.1#46303 QUERY:11x11.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:INFO:hickory_server::server::server_future:857:request:9902 src:udp://127.0.0.1#48563 QUERY:12345678.website.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9906 response_code: Server Failure 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9907 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9906 src:udp://127.0.0.1#48642 QUERY:123moviesfree.taxi.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:INFO:hickory_server::server::server_future:857:request:9907 src:udp://127.0.0.1#46310 QUERY:123moviesio.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9908 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9908 src:udp://127.0.0.1#47968 QUERY:123moviesraw.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9909 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9909 src:udp://127.0.0.1#47191 QUERY:123news.com.br.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9911 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9911 src:udp://127.0.0.1#48359 QUERY:123proxy.cc.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9913 response_code: Server Failure 1735355494:DEBUG:hickory_server::server::response_handler:107:response: 9912 response_code: Server Failure 1735355494:INFO:hickory_server::server::server_future:857:request:9912 src:udp://127.0.0.1#47438 QUERY:123soapgate.cc.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:INFO:hickory_server::server::server_future:857:request:9913 src:udp://127.0.0.1#46267 QUERY:123stat.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355494:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9914 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9914 src:udp://127.0.0.1#45472 QUERY:123superproxy.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9941 response_code: Server Failure 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9939 response_code: Server Failure 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9937 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9941 src:udp://127.0.0.1#45879 QUERY:1and1-dns.biz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:INFO:hickory_server::server::server_future:857:request:9939 src:udp://127.0.0.1#47935 QUERY:1919bet6.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:INFO:hickory_server::server::server_future:857:request:9937 src:udp://127.0.0.1#47311 QUERY:18rule.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9940 response_code: Server Failure 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9942 response_code: Server Failure 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9943 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9942 src:udp://127.0.0.1#47974 QUERY:1bet1.uno.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:INFO:hickory_server::server::server_future:857:request:9940 src:udp://127.0.0.1#47014 QUERY:1a2b3c4d5s6a7u-x-08.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:INFO:hickory_server::server::server_future:857:request:9943 src:udp://127.0.0.1#47396 QUERY:1c-hosting.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9944 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9944 src:udp://127.0.0.1#48418 QUERY:1c.com.vn.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9945 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9945 src:udp://127.0.0.1#47237 QUERY:1da.ir.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9948 response_code: Server Failure 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:INFO:hickory_server::server::server_future:857:request:9948 src:udp://127.0.0.1#47676 QUERY:1go-casino-odisseyaco1.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9946 response_code: Server Failure 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9947 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9946 src:udp://127.0.0.1#48346 QUERY:1ee.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:INFO:hickory_server::server::server_future:857:request:9947 src:udp://127.0.0.1#48451 QUERY:1go-casino-gamewin6.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355495:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355495:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355495:DEBUG:hickory_server::server::response_handler:107:response: 9950 response_code: Server Failure 1735355495:INFO:hickory_server::server::server_future:857:request:9950 src:udp://127.0.0.1#45849 QUERY:1gocasino-105.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355495:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9952 response_code: Server Failure 1735355496:INFO:hickory_server::server::server_future:857:request:9952 src:udp://127.0.0.1#46517 QUERY:1gocasino-mirror8.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9954 response_code: Server Failure 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9953 response_code: Server Failure 1735355496:INFO:hickory_server::server::server_future:857:request:9954 src:udp://127.0.0.1#47573 QUERY:1h9add.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:INFO:hickory_server::server::server_future:857:request:9953 src:udp://127.0.0.1#46821 QUERY:1gokazino1.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9955 response_code: Server Failure 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:INFO:hickory_server::server::server_future:857:request:9955 src:udp://127.0.0.1#45101 QUERY:1hallmark.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9957 response_code: Server Failure 1735355496:INFO:hickory_server::server::server_future:857:request:9957 src:udp://127.0.0.1#45644 QUERY:1mf.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9971 response_code: Server Failure 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9972 response_code: Server Failure 1735355496:INFO:hickory_server::server::server_future:857:request:9971 src:udp://127.0.0.1#46926 QUERY:1wazke.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:INFO:hickory_server::server::server_future:857:request:9972 src:udp://127.0.0.1#48545 QUERY:1wdgx.com.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9973 response_code: Server Failure 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:INFO:hickory_server::server::server_future:857:request:9973 src:udp://127.0.0.1#45068 QUERY:1webit.cz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9975 response_code: Server Failure 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9976 response_code: Server Failure 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9974 response_code: Server Failure 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:INFO:hickory_server::server::server_future:857:request:9975 src:udp://127.0.0.1#46370 QUERY:1weko.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:INFO:hickory_server::server::server_future:857:request:9974 src:udp://127.0.0.1#44898 QUERY:1weis.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:INFO:hickory_server::server::server_future:857:request:9976 src:udp://127.0.0.1#45137 QUERY:1wgpr.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9977 response_code: Server Failure 1735355496:DEBUG:hickory_server::server::response_handler:107:response: 9978 response_code: Server Failure 1735355496:INFO:hickory_server::server::server_future:857:request:9977 src:udp://127.0.0.1#45817 QUERY:1win-1win-1win.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:INFO:hickory_server::server::server_future:857:request:9978 src:udp://127.0.0.1#48423 QUERY:1win-bxh.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355496:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9984 response_code: Server Failure 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9980 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9984 src:udp://127.0.0.1#47319 QUERY:1wjtdb.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9982 response_code: Server Failure 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9983 response_code: Server Failure 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:INFO:hickory_server::server::server_future:857:request:9983 src:udp://127.0.0.1#47522 QUERY:1winqy.xyz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:INFO:hickory_server::server::server_future:857:request:9980 src:udp://127.0.0.1#48468 QUERY:1win-s5.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:INFO:hickory_server::server::server_future:857:request:9982 src:udp://127.0.0.1#44828 QUERY:1wines.es.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9981 response_code: Server Failure 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:INFO:hickory_server::server::server_future:857:request:9981 src:udp://127.0.0.1#46034 QUERY:1wincasino-18yw.buzz.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9985 response_code: Server Failure 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9986 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9986 src:udp://127.0.0.1#46124 QUERY:1word.ws.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:INFO:hickory_server::server::server_future:857:request:9985 src:udp://127.0.0.1#45429 QUERY:1wlvv.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9989 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9989 src:udp://127.0.0.1#47447 QUERY:1wwbj.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9992 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9992 src:udp://127.0.0.1#46865 QUERY:1xbet-clg.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9991 response_code: Server Failure 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9990 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9991 src:udp://127.0.0.1#45052 QUERY:1xbet-97047.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:INFO:hickory_server::server::server_future:857:request:9990 src:udp://127.0.0.1#45871 QUERY:1wxph.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9993 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9993 src:udp://127.0.0.1#46148 QUERY:1xbet-dbv.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9994 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9994 src:udp://127.0.0.1#48618 QUERY:1xbet-gby.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9995 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9995 src:udp://127.0.0.1#47978 QUERY:1xbet-good213.ru.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9996 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9996 src:udp://127.0.0.1#48426 QUERY:1xbet-gqo.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9997 response_code: Server Failure 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:INFO:hickory_server::server::server_future:857:request:9997 src:udp://127.0.0.1#45476 QUERY:1xbet-gsd.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9998 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9998 src:udp://127.0.0.1#44951 QUERY:1xbet-gwy.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_proto::xfer::dns_exchange:186:io_stream is done, shutting down 1735355497:DEBUG:hickory_resolver::name_server::name_server:150:name_server connection failure: request timed out config=NameServerConfig { socket_addr: 119.29.29.29:53, protocol: Udp, tls_dns_name: None, http_endpoint: None, trust_negative_responses: true, tls_config: None, bind_addr: None } 1735355497:DEBUG:hickory_server::authority::catalog:833:error resolving ResolveError(ResolveError { kind: Proto(ProtoError { kind: Timeout, backtrack: None }), backtrack: None }) 1735355497:DEBUG:hickory_server::server::response_handler:107:response: 9999 response_code: Server Failure 1735355497:INFO:hickory_server::server::server_future:857:request:9999 src:udp://127.0.0.1#46303 QUERY:1xbet-hmh.top.:A:IN qflags:RD response:ServFail rr:0/0/0 rflags:RD,RA ```
Author
Owner

@DirectXMan12 commented on GitHub (Mar 3, 2025):

if this is a performance issue, by doing cargo run without --release, you're compiling in dev mode, which is skipping a lot of optimizations. it's worth trying in release mode and seeing how things go.

<!-- gh-comment-id:2693486591 --> @DirectXMan12 commented on GitHub (Mar 3, 2025): if this is a performance issue, by doing `cargo run` without `--release`, you're compiling in dev mode, which is skipping a *lot* of optimizations. it's worth trying in release mode and seeing how things go.
Author
Owner

@redactedontop commented on GitHub (Mar 23, 2025):

@DirectXMan12 shouldn't be a performance issue as it's due to query loss and not runtime speed.

<!-- gh-comment-id:2746214407 --> @redactedontop commented on GitHub (Mar 23, 2025): @DirectXMan12 shouldn't be a performance issue as it's due to query loss and not runtime speed.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1030
No description provided.