summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliuxueli <[email protected]>2022-07-25 10:16:46 +0800
committerliuxueli <[email protected]>2022-07-25 10:16:46 +0800
commitfa0ebd48e689499d495852915c16d15a206c134e (patch)
tree7afa9cc4b0684bca7c67f7aa5f86356e7263b26f
parentac4dda42384a742d16bde2878c3c36401e01ee9d (diff)
OMPUB-563: 处理长度标识跨包的逻辑存在问题: 1)区分数据包方向导致偏移的长度出现负值导致访问越界,2)错误使用累计传输长度作为单包长度限制判断导致部分请求与应答未正常解析v2.1.4
-rw-r--r--.gitignore1
-rw-r--r--src/dns.cpp133
-rw-r--r--src/dns_internal.h12
-rw-r--r--test/CMakeLists.txt3
-rw-r--r--test/pcap/multi_pkt_trans_2bytes/1-dns-tcp-multi-pkt-trans-2bytes-cloud.duba.net-192.168.137.225.43508.202.14.67.4.53.pcapbin0 -> 2911 bytes
-rw-r--r--test/pcap/multi_pkt_trans_2bytes/multi_pkt_trans_2bytes_result.json137
-rw-r--r--test/pcap/multi_transcation/1-dns.tcp.multi.transcation.218.229.123.91.32294.45.80.170.1.53.pcapbin0 -> 23848 bytes
-rw-r--r--test/pcap/multi_transcation/multi_transcation_result.json5665
-rw-r--r--test/pcap/nsec3/nsec3_result.json5568
-rw-r--r--test/pcap/tcp_lost_pkt/1-dns.tcp.multi.lost.pkt.218.229.123.91.32294.45.80.170.1.53.pcapbin0 -> 23226 bytes
-rw-r--r--test/pcap/tcp_lost_pkt/lost_pkt_result.json5529
11 files changed, 16766 insertions, 282 deletions
diff --git a/.gitignore b/.gitignore
index 0d04808..fb6955a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
build/*
cmake-build-vscode/*
.vscode/
+*.si4project
diff --git a/src/dns.cpp b/src/dns.cpp
index 0b958fc..1a143d2 100644
--- a/src/dns.cpp
+++ b/src/dns.cpp
@@ -107,6 +107,69 @@ const unsigned char PCAP_FILE_HEAD[24] = {0xD4, 0xC3, 0xB2, 0xA1, 0x02, 0x00, 0x
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xFF, 0xFF, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00};
+int jump_message_length(struct dns_context *context, int payload_len, int lostlen, char dir)
+{
+ char *skiped_len=NULL;
+
+ if(dir==DIR_C2S)
+ {
+ skiped_len=&(context->c2s_skiped_len);
+ }
+ else
+ {
+ skiped_len=&(context->s2c_skiped_len);
+ }
+
+ if(lostlen>0)
+ {
+ switch(lostlen)
+ {
+ case 1: //drop 1 byte
+ if((*skiped_len)==1)
+ {
+ (*skiped_len)=0;
+ return 0;
+ }
+ else
+ {
+ (*skiped_len)=0;
+ return 1;
+ }
+ break;
+ case 2: //drop 2 byte
+ (*skiped_len)=0;
+ return 0;
+ default:
+ (*skiped_len)=0;
+ return 2;
+ }
+ }
+
+ switch((*skiped_len))
+ {
+ case 1:
+ (*skiped_len)=0;
+ return 1;
+ break;
+ case 2:
+ (*skiped_len)=0;
+ return 0;
+ break;
+ case 0:
+ if(payload_len<=2)
+ {
+ (*skiped_len)=(char)payload_len;
+ return payload_len;
+ }
+ return 2;
+ break;
+ default:
+ break;
+ }
+
+ return -1;
+}
+
static int str2hex(unsigned char *source, int s_len, char *dest, int d_len)
{
int i=0,used_len=0;
@@ -1369,7 +1432,7 @@ int callback_dns_business_plug(struct streaminfo *a_stream, void **pme, void *in
char state=PROT_STATE_GIVEME;
char app_state=APP_STATE_GIVEME;
stSessionInfo sessionInfo;
- save_dns_business_info_t *apme = (save_dns_business_info_t *)*pme;
+ struct dns_context *apme = (struct dns_context *)*pme;
memset(&sessionInfo, 0, sizeof(stSessionInfo));
@@ -1826,7 +1889,7 @@ int parse_dns_protocol(struct streaminfo *a_stream, unsigned char opstate, char
char *cur_pos = NULL;
dns_info_t dns_info;
unsigned long long register_flag = dns_register_flag;
- save_dns_business_info_t *context = (save_dns_business_info_t *)(*pme);
+ struct dns_context *context = (struct dns_context *)(*pme);
if(payload_len<12 || payload==NULL)
{
@@ -1990,8 +2053,8 @@ char DNS_UDP_ENTRY(struct streaminfo *a_udp, void **pme, int thread_seq, void *a
case OP_STATE_PENDING:
if(*pme == NULL)
{
- *pme = dictator_malloc(thread_seq, sizeof(save_dns_business_info_t));
- memset(*pme, 0, sizeof(save_dns_business_info_t));
+ *pme = dictator_malloc(thread_seq, sizeof(struct dns_context));
+ memset(*pme, 0, sizeof(struct dns_context));
}
/* no break here!!!! */
case OP_STATE_DATA:
@@ -2014,13 +2077,12 @@ char DNS_UDP_ENTRY(struct streaminfo *a_udp, void **pme, int thread_seq, void *a
state=parse_dns_protocol(a_udp, a_udp->opstate, payload, payload_len, pme, thread_seq, a_packet);
break;
case OP_STATE_CLOSE:
- state=parse_dns_protocol(a_udp, a_udp->opstate, payload, payload_len, pme, thread_seq, a_packet);
break;
}
if(state&APP_STATE_DROPME || a_udp->opstate==OP_STATE_CLOSE)
{
- save_dns_business_info_t *context=(save_dns_business_info_t *)(*pme);
+ struct dns_context *context=(struct dns_context *)(*pme);
if((context->session_state&SESSION_STATE_CLOSE)!=SESSION_STATE_CLOSE)
{
callback_dns_business_plug(a_udp, pme, NULL, DNS_ALL, SESSION_STATE_CLOSE, thread_seq, a_packet);
@@ -2036,40 +2098,38 @@ char DNS_UDP_ENTRY(struct streaminfo *a_udp, void **pme, int thread_seq, void *a
char DNS_TCP_ENTRY(struct streaminfo *a_tcp, void **pme, int thread_seq, void *a_packet)
{
- int payload_len = 0;
- char *payload = NULL;
+ int jump_len=0, payload_len=0;
+ char *payload=NULL;
char state=APP_STATE_GIVEME;
struct tcpdetail* tcp_detail = (struct tcpdetail*)a_tcp->pdetail;
- save_dns_business_info_t *context=(save_dns_business_info_t*)(*pme);
+ struct dns_context *context=(struct dns_context*)(*pme);
if(!check_port(a_tcp->addr, DNS_PORT))
{
return APP_STATE_DROPME;
}
- tcp_detail = (struct tcpdetail *)a_tcp->ptcpdetail;
- payload_len = tcp_detail->datalen;
- payload = (char *)tcp_detail->pdata;
-
switch(a_tcp->opstate)
{
- case OP_STATE_PENDING: /* ��δ������������Ϣ */
- if((NULL == tcp_detail->pdata) || (0 == tcp_detail->datalen))
- {
- return APP_STATE_GIVEME;
- }
-
+ case OP_STATE_PENDING: /* ��δ������������Ϣ */
if(*pme == NULL)
{
- *pme = dictator_malloc(thread_seq, sizeof(save_dns_business_info_t));
- memset(*pme, 0, sizeof(save_dns_business_info_t));
- context = (save_dns_business_info_t *)*pme;
- context->skip_len=2;
+ *pme = dictator_malloc(thread_seq, sizeof(struct dns_context));
+ memset(*pme, 0, sizeof(struct dns_context));
+ context = (struct dns_context *)*pme;
}
/* no break here!!!! */
case OP_STATE_DATA:
+ tcp_detail = (struct tcpdetail *)a_tcp->ptcpdetail;
+ if((NULL==tcp_detail->pdata) || (0==tcp_detail->datalen))
+ {
+ return APP_STATE_GIVEME;
+ }
+ payload_len = tcp_detail->datalen;
+ payload = (char *)tcp_detail->pdata;
+
switch(a_tcp->addr.addrtype)
{
case ADDR_TYPE_IPV4:
@@ -2086,40 +2146,21 @@ char DNS_TCP_ENTRY(struct streaminfo *a_tcp, void **pme, int thread_seq, void *a
break;
}
- if(tcp_detail->serverbytes <= 2)
+ jump_len=jump_message_length(context, payload_len, tcp_detail->lostlen, a_tcp->curdir);
+ if(jump_len<0 || payload_len-jump_len<12)
{
- context->skip_len -= payload_len;
break;
}
- else
- {
- if(context->skip_len!=0)
- {
- payload_len -= context->skip_len;
- payload += context->skip_len;
-
- context->skip_len=2; //https://datatracker.ietf.org/doc/html/rfc7766#section-8
- }
- }
-
- if(tcp_detail->clientbytes >= 1500)
- {
- FS_operate(g_dns_proto_info.stat_handle, g_dns_proto_info.fild_id[ERR_PKT], 0, FS_OP_ADD, 1);
- MESA_handle_runtime_log(g_dns_proto_info.logger, RLOG_LV_DEBUG, "TCP_ENTRY",
- "tuple4: %s PKT size(S: %d/C: %d) is too bigger", printaddr(&a_tcp->addr, thread_seq), tcp_detail->serverbytes, tcp_detail->clientbytes);
- return APP_STATE_GIVEME;
- }
- state=parse_dns_protocol(a_tcp, a_tcp->opstate, payload, payload_len, pme, thread_seq, a_packet);
+ state=parse_dns_protocol(a_tcp, a_tcp->opstate, payload+jump_len, payload_len-jump_len, pme, thread_seq, a_packet);
break;
case OP_STATE_CLOSE:
- state=parse_dns_protocol(a_tcp, a_tcp->opstate, payload, payload_len, pme, thread_seq, a_packet);
break;
}
if(state&APP_STATE_DROPME || a_tcp->opstate==OP_STATE_CLOSE)
{
- context=(save_dns_business_info_t *)(*pme);
+ context=(struct dns_context *)(*pme);
if((context->session_state&SESSION_STATE_CLOSE)!=SESSION_STATE_CLOSE)
{
callback_dns_business_plug(a_tcp, pme, NULL, DNS_ALL, SESSION_STATE_CLOSE, thread_seq, a_packet);
diff --git a/src/dns_internal.h b/src/dns_internal.h
index aa6ef5e..6106d7f 100644
--- a/src/dns_internal.h
+++ b/src/dns_internal.h
@@ -106,12 +106,14 @@ typedef struct
}dns_str_contrast_id_t;
-typedef struct _save_dns_business_info
+struct dns_context
{
+ char session_state;
+ char c2s_skiped_len;
+ char s2c_skiped_len;
+ char padding[5];
void *business_pme;
- int session_state;
- int skip_len;/* 2 bytes */
-}save_dns_business_info_t;
+};
typedef struct _pcap_hdr
{
@@ -121,7 +123,7 @@ typedef struct _pcap_hdr
u_int32_t caplen;
}pcap_hdr_t;
-#define MAX_LOG_PATH_LEN 256
+#define MAX_LOG_PATH_LEN 256
enum dns_statis_info_t
{
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index a272b4e..d4ba1d9 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -49,3 +49,6 @@ add_test(NAME DNS_HTTPS COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap
add_test(NAME DNS_CERT1 COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap/cernet1/cernet1_result.json -f "find ${CMAKE_CURRENT_SOURCE_DIR}/pcap/cernet1/ -name *.pcap|sort -V" WORKING_DIRECTORY ${PROTO_TEST_RUN_DIR})
add_test(NAME DNS_CERT2 COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap/cernet2/cernet2_result.json -f "find ${CMAKE_CURRENT_SOURCE_DIR}/pcap/cernet2/ -name *.pcap|sort -V" WORKING_DIRECTORY ${PROTO_TEST_RUN_DIR})
add_test(NAME DNS_SEC COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap/dnssec/dnssec_result.json -f "find ${CMAKE_CURRENT_SOURCE_DIR}/pcap/dnssec/ -name *.pcap|sort -V" WORKING_DIRECTORY ${PROTO_TEST_RUN_DIR})
+add_test(NAME DNS_TCP_MULTI_TRANSCATION COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap/multi_transcation/multi_transcation_result.json -f "find ${CMAKE_CURRENT_SOURCE_DIR}/pcap/multi_transcation/ -name *.pcap|sort -V" WORKING_DIRECTORY ${PROTO_TEST_RUN_DIR})
+add_test(NAME DNS_TCP_MULTI_PKT_TRANS_2BYTES COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap/multi_pkt_trans_2bytes/multi_pkt_trans_2bytes_result.json -f "find ${CMAKE_CURRENT_SOURCE_DIR}/pcap/multi_pkt_trans_2bytes/ -name *.pcap|sort -V" WORKING_DIRECTORY ${PROTO_TEST_RUN_DIR})
+add_test(NAME DNS_TCP_LOST_PKT COMMAND proto_test_main ${CMAKE_CURRENT_SOURCE_DIR}/pcap/tcp_lost_pkt/lost_pkt_result.json -f "find ${CMAKE_CURRENT_SOURCE_DIR}/pcap/tcp_lost_pkt/ -name *.pcap|sort -V" WORKING_DIRECTORY ${PROTO_TEST_RUN_DIR})
diff --git a/test/pcap/multi_pkt_trans_2bytes/1-dns-tcp-multi-pkt-trans-2bytes-cloud.duba.net-192.168.137.225.43508.202.14.67.4.53.pcap b/test/pcap/multi_pkt_trans_2bytes/1-dns-tcp-multi-pkt-trans-2bytes-cloud.duba.net-192.168.137.225.43508.202.14.67.4.53.pcap
new file mode 100644
index 0000000..f832fad
--- /dev/null
+++ b/test/pcap/multi_pkt_trans_2bytes/1-dns-tcp-multi-pkt-trans-2bytes-cloud.duba.net-192.168.137.225.43508.202.14.67.4.53.pcap
Binary files differ
diff --git a/test/pcap/multi_pkt_trans_2bytes/multi_pkt_trans_2bytes_result.json b/test/pcap/multi_pkt_trans_2bytes/multi_pkt_trans_2bytes_result.json
new file mode 100644
index 0000000..850be9b
--- /dev/null
+++ b/test/pcap/multi_pkt_trans_2bytes/multi_pkt_trans_2bytes_result.json
@@ -0,0 +1,137 @@
+[{
+ "Tuple4": "192.168.137.225.43508>202.14.67.4.53",
+ "dns_qname": "d3l1j2luiza96k.cloudfront.net",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 1,
+ "rr": {
+ "rr": []
+ },
+ "name": "DNS_RESULT_1"
+ }, {
+ "Tuple4": "192.168.137.225.43508>202.14.67.4.53",
+ "dns_qname": "d3l1j2luiza96k.cloudfront.net",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 1,
+ "rr": {
+ "rr": [{
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 60,
+ "rdlength": 4,
+ "a": "13.35.0.151"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 60,
+ "rdlength": 4,
+ "a": "13.35.0.125"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 60,
+ "rdlength": 4,
+ "a": "13.35.0.215"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 60,
+ "rdlength": 4,
+ "a": "13.35.0.10"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 1466,
+ "rdlength": 23,
+ "ns": "ns-1091.awsdns-08.org"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 1466,
+ "rdlength": 25,
+ "ns": "ns-1967.awsdns-53.co.uk"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 1466,
+ "rdlength": 21,
+ "ns": "ns-41.awsdns-05.com"
+ }, {
+ "name": "d3l1j2luiza96k.cloudfront.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 1466,
+ "rdlength": 19,
+ "ns": "ns-880.awsdns-46.net"
+ }, {
+ "name": "ns-41.awsdns-05.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 162292,
+ "rdlength": 4,
+ "a": "205.251.192.41"
+ }, {
+ "name": "ns-41.awsdns-05.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 162292,
+ "rdlength": 16,
+ "aaaa": "2600:9000:5300:2900::1"
+ }, {
+ "name": "ns-880.awsdns-46.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 162321,
+ "rdlength": 4,
+ "a": "205.251.195.112"
+ }, {
+ "name": "ns-880.awsdns-46.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 162321,
+ "rdlength": 16,
+ "aaaa": "2600:9000:5303:7000::1"
+ }, {
+ "name": "ns-1091.awsdns-08.org",
+ "type": 1,
+ "class": 1,
+ "ttl": 162308,
+ "rdlength": 4,
+ "a": "205.251.196.67"
+ }, {
+ "name": "ns-1091.awsdns-08.org",
+ "type": 28,
+ "class": 1,
+ "ttl": 162308,
+ "rdlength": 16,
+ "aaaa": "2600:9000:5304:4300::1"
+ }, {
+ "name": "ns-1967.awsdns-53.co.uk",
+ "type": 1,
+ "class": 1,
+ "ttl": 162324,
+ "rdlength": 4,
+ "a": "205.251.199.175"
+ }, {
+ "name": "ns-1967.awsdns-53.co.uk",
+ "type": 28,
+ "class": 1,
+ "ttl": 162324,
+ "rdlength": 16,
+ "aaaa": "2600:9000:5307:af00::1"
+ }]
+ },
+ "name": "DNS_RESULT_2"
+}]
diff --git a/test/pcap/multi_transcation/1-dns.tcp.multi.transcation.218.229.123.91.32294.45.80.170.1.53.pcap b/test/pcap/multi_transcation/1-dns.tcp.multi.transcation.218.229.123.91.32294.45.80.170.1.53.pcap
new file mode 100644
index 0000000..86c7d8f
--- /dev/null
+++ b/test/pcap/multi_transcation/1-dns.tcp.multi.transcation.218.229.123.91.32294.45.80.170.1.53.pcap
Binary files differ
diff --git a/test/pcap/multi_transcation/multi_transcation_result.json b/test/pcap/multi_transcation/multi_transcation_result.json
new file mode 100644
index 0000000..7a28e25
--- /dev/null
+++ b/test/pcap/multi_transcation/multi_transcation_result.json
@@ -0,0 +1,5665 @@
+[{
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_1"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_2"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_3"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_4"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_5"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_6"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_7"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_8"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_9"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_10"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_11"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_12"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_13"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_14"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_15"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_16"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_17"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_18"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_19"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_20"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_21"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_22"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_23"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_24"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_25"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_26"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_27"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_28"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_29"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_30"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_31"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_32"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_33"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_34"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_35"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_36"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_37"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_38"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_39"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_40"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_41"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_42"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_43"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_44"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_45"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_46"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_47"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_48"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_49"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_50"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_51"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_52"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_53"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_54"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_55"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_56"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_57"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_58"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_59"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_60"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_61"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_62"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_63"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_64"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_65"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_66"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_67"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_68"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_69"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_70"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_71"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_72"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_73"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_74"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_75"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_76"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_77"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_78"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_79"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_80"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_81"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_82"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_83"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_84"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_85"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_86"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_87"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_88"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_89"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_90"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_91"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_92"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_93"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_94"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_95"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_96"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_97"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_98"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_99"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_100"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_101"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_102"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_103"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_104"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_105"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_106"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_107"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_108"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_109"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_110"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_111"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_112"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_113"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_114"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_115"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_116"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_117"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_118"
+}]
diff --git a/test/pcap/nsec3/nsec3_result.json b/test/pcap/nsec3/nsec3_result.json
index e068a0f..e93616a 100644
--- a/test/pcap/nsec3/nsec3_result.json
+++ b/test/pcap/nsec3/nsec3_result.json
@@ -9166,6 +9166,1081 @@
},
"name": "DNS_RESULT_83"
}, {
+ "Tuple4": "202.114.200.252.14994>192.54.112.30.53",
+ "dns_qname": "default.wagbridge.umeng.alibabacorp.com",
+ "dns_qtype": 65,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "alibabacorp.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 17,
+ "ns": "ns1.alibabadns.com"
+ }, {
+ "name": "alibabacorp.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns2.alibabadns.com"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "UCKI4O10VPFCCTNI53HLPKSNJA9CACLB.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "f329294c3ad6e760f049f8464cc530db8b36a122",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "UCKI4O10VPFCCTNI53HLPKSNJA9CACLB.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636086728,
+ "sig_inception": 1635477728,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "2183d285294593687ebb4a5df4e469ba790df26cbf48e9e7e43df52fd23e5c31efa56a560d7e62715b31257ee7cf834e5c023a11f6f6c795bbe9b1763d3ab5133e32872abd448b0abffe4dca6daf8dc95866dc307d8c788246a8a875db6c9dadca6f4dd1383b2edc8a1db3b6cc634d6b0c197864d629bc5db975526ade670ddbeec64ea993763711bf5caa412cc9e0e516e86f5e4f05254ee1496181708434c8"
+ }, {
+ "name": "ns1.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "106.11.35.19"
+ }, {
+ "name": "ns1.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.122.66"
+ }, {
+ "name": "ns1.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.67.252"
+ }, {
+ "name": "ns1.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "198.11.138.254"
+ }, {
+ "name": "ns1.alibabadns.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2401:b180:4100::1"
+ }, {
+ "name": "ns2.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "106.11.35.18"
+ }, {
+ "name": "ns2.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.122.77"
+ }, {
+ "name": "ns2.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.67.254"
+ }, {
+ "name": "ns2.alibabadns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "198.11.138.252"
+ }, {
+ "name": "ns2.alibabadns.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2401:b180:4100::2"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_84"
+ }, {
+ "Tuple4": "202.114.200.252.5817>192.54.112.30.53",
+ "dns_qname": "pdns1.ultradns.net",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.com"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 10,
+ "ns": "pdns196.ultradns.net"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.org"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 23,
+ "ns": "pdns196.ultradns.info"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.biz"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 24,
+ "ns": "pdns196.ultradns.co.uk"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "9N89MAI0R5KCQRR8C8FLPU844863F829.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "4dd0bee7d0172f4b37bfe1b66fdd43b351108fa7",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "9N89MAI0R5KCQRR8C8FLPU844863F829.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636090764,
+ "sig_inception": 1635481764,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "b00ec9f6f868dba89fbdfa04d8e486e55b8d02ccc5d9979e7a19442526070d3db83005aa17f8969741aae848758638bd43dd73942b6b6d59cd9f183393e1e1e54f0d327fc1eb570ea397153a9c319b92f877e012c994ec26cdc259a9a3bda72105ad51f764d0280865dede51fd9d2c97e3f14804570720628e208870dfc4d2b8d41271ed057b3fc445ff437711bc4fdc417b553e96b846918a93c8e7dda9fb93"
+ }, {
+ "name": "pdns196.ultradns.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "156.154.65.196"
+ }, {
+ "name": "pdns196.ultradns.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2610:a1:1014::e8"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_85"
+ }, {
+ "Tuple4": "202.114.200.252.16913>192.54.112.30.53",
+ "dns_qname": "ns1.p31.dynect.net",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 29,
+ "ns": "ns1.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns2.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns3.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns4.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns5.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns6.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns7.dynamicnetworkservices.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "SKCOOFVTDHVMD0LHL7LKNIL1FH0P5JCT.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "e519c9f203ed4d143c17b84b74f4437c89dbfba7",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "SKCOOFVTDHVMD0LHL7LKNIL1FH0P5JCT.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636090771,
+ "sig_inception": 1635481771,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "bbd6807df336b7942c81b49f6ff7ab4eb8103879e3430be5f37976f3fb912df43ff40796a7e9b62702b9e629cfe34342b8b0dda4ecbdc3b943cc47947d30db8bdf1deeed234c13483722badb546eaad7f4a035a19c43b7780da10de9f293767748306349d964359031b72f492702a53a4f27adb0942a0cf2e8c723ee4583271a03f6150437e14f83b0ac18aa08070e6421cb352ab675a391729c1e68c4285afc"
+ }, {
+ "name": "ns1.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:500:90:1::136"
+ }, {
+ "name": "ns1.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "208.78.70.136"
+ }, {
+ "name": "ns2.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "204.13.250.136"
+ }, {
+ "name": "ns3.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:500:94:1::136"
+ }, {
+ "name": "ns3.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "208.78.71.136"
+ }, {
+ "name": "ns4.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "204.13.251.136"
+ }, {
+ "name": "ns5.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.88.60.21"
+ }, {
+ "name": "ns5.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2600:2000:1000::21"
+ }, {
+ "name": "ns6.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.88.61.21"
+ }, {
+ "name": "ns6.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2600:2000:1001::21"
+ }, {
+ "name": "ns7.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "108.59.165.1"
+ }, {
+ "name": "ns7.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2a02:e180:8::1"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_86"
+ }, {
+ "Tuple4": "202.114.200.252.7653>192.54.112.30.53",
+ "dns_qname": "ns2.p31.dynect.net",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 29,
+ "ns": "ns1.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns2.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns3.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns4.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns5.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns6.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns7.dynamicnetworkservices.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "SKCOOFVTDHVMD0LHL7LKNIL1FH0P5JCT.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "e519c9f203ed4d143c17b84b74f4437c89dbfba7",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "SKCOOFVTDHVMD0LHL7LKNIL1FH0P5JCT.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636090771,
+ "sig_inception": 1635481771,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "bbd6807df336b7942c81b49f6ff7ab4eb8103879e3430be5f37976f3fb912df43ff40796a7e9b62702b9e629cfe34342b8b0dda4ecbdc3b943cc47947d30db8bdf1deeed234c13483722badb546eaad7f4a035a19c43b7780da10de9f293767748306349d964359031b72f492702a53a4f27adb0942a0cf2e8c723ee4583271a03f6150437e14f83b0ac18aa08070e6421cb352ab675a391729c1e68c4285afc"
+ }, {
+ "name": "ns1.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:500:90:1::136"
+ }, {
+ "name": "ns1.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "208.78.70.136"
+ }, {
+ "name": "ns2.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "204.13.250.136"
+ }, {
+ "name": "ns3.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:500:94:1::136"
+ }, {
+ "name": "ns3.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "208.78.71.136"
+ }, {
+ "name": "ns4.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "204.13.251.136"
+ }, {
+ "name": "ns5.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.88.60.21"
+ }, {
+ "name": "ns5.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2600:2000:1000::21"
+ }, {
+ "name": "ns6.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.88.61.21"
+ }, {
+ "name": "ns6.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2600:2000:1001::21"
+ }, {
+ "name": "ns7.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "108.59.165.1"
+ }, {
+ "name": "ns7.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2a02:e180:8::1"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_87"
+ }, {
+ "Tuple4": "202.114.200.252.52123>192.54.112.30.53",
+ "dns_qname": "ns2.p31.dynect.net",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 29,
+ "ns": "ns1.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns2.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns3.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns4.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns5.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns6.dynamicnetworkservices.net"
+ }, {
+ "name": "dynect.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns7.dynamicnetworkservices.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "SKCOOFVTDHVMD0LHL7LKNIL1FH0P5JCT.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "e519c9f203ed4d143c17b84b74f4437c89dbfba7",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "SKCOOFVTDHVMD0LHL7LKNIL1FH0P5JCT.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636090771,
+ "sig_inception": 1635481771,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "bbd6807df336b7942c81b49f6ff7ab4eb8103879e3430be5f37976f3fb912df43ff40796a7e9b62702b9e629cfe34342b8b0dda4ecbdc3b943cc47947d30db8bdf1deeed234c13483722badb546eaad7f4a035a19c43b7780da10de9f293767748306349d964359031b72f492702a53a4f27adb0942a0cf2e8c723ee4583271a03f6150437e14f83b0ac18aa08070e6421cb352ab675a391729c1e68c4285afc"
+ }, {
+ "name": "ns1.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:500:90:1::136"
+ }, {
+ "name": "ns1.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "208.78.70.136"
+ }, {
+ "name": "ns2.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "204.13.250.136"
+ }, {
+ "name": "ns3.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:500:94:1::136"
+ }, {
+ "name": "ns3.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "208.78.71.136"
+ }, {
+ "name": "ns4.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "204.13.251.136"
+ }, {
+ "name": "ns5.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.88.60.21"
+ }, {
+ "name": "ns5.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2600:2000:1000::21"
+ }, {
+ "name": "ns6.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.88.61.21"
+ }, {
+ "name": "ns6.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2600:2000:1001::21"
+ }, {
+ "name": "ns7.dynamicnetworkservices.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "108.59.165.1"
+ }, {
+ "name": "ns7.dynamicnetworkservices.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2a02:e180:8::1"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_88"
+ }, {
+ "Tuple4": "202.114.200.252.4704>192.54.112.30.53",
+ "dns_qname": "pdns1.ultradns.net",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.com"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 10,
+ "ns": "pdns196.ultradns.net"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.org"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 23,
+ "ns": "pdns196.ultradns.info"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.biz"
+ }, {
+ "name": "ultradns.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 24,
+ "ns": "pdns196.ultradns.co.uk"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "9N89MAI0R5KCQRR8C8FLPU844863F829.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "4dd0bee7d0172f4b37bfe1b66fdd43b351108fa7",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "9N89MAI0R5KCQRR8C8FLPU844863F829.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636090764,
+ "sig_inception": 1635481764,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "b00ec9f6f868dba89fbdfa04d8e486e55b8d02ccc5d9979e7a19442526070d3db83005aa17f8969741aae848758638bd43dd73942b6b6d59cd9f183393e1e1e54f0d327fc1eb570ea397153a9c319b92f877e012c994ec26cdc259a9a3bda72105ad51f764d0280865dede51fd9d2c97e3f14804570720628e208870dfc4d2b8d41271ed057b3fc445ff437711bc4fdc417b553e96b846918a93c8e7dda9fb93"
+ }, {
+ "name": "pdns196.ultradns.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "156.154.65.196"
+ }, {
+ "name": "pdns196.ultradns.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2610:a1:1014::e8"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_89"
+ }, {
"Tuple4": "202.120.2.100.10911>199.19.57.1.53",
"dns_qname": "orcid.org",
"dns_qtype": 1,
@@ -9260,7 +10335,279 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_84"
+ "name": "DNS_RESULT_90"
+ }, {
+ "Tuple4": "202.114.200.252.27183>192.54.112.30.53",
+ "dns_qname": "pdns196.ultradns.com",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "pdns196.ultradns.com"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.net"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.org"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 23,
+ "ns": "pdns196.ultradns.info"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.biz"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 24,
+ "ns": "pdns196.ultradns.co.uk"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "JTGTK1RHNEO10C73DON1ESAH52SCS357.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "9f61e23e34b1d48140b712452b169da7ea423834",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "JTGTK1RHNEO10C73DON1ESAH52SCS357.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636088882,
+ "sig_inception": 1635479882,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "3c6681b0338640e10b6d0baee6a4d3b57b637e1bf9983b30f56a8fc0dde481dffb82f1bf18be695bb60a6afc58012d005668cd8280a9fbc2e4fc84ae7373316b411762c545ffb66c118f564b4d9b79131bfcec303701e12af4880ae144443d82330ec3f33d7fb2d4ba75688ff166effd9063cfa7ed51e57fc2fd0c8f21f821a3c24b88c40fdb9875bd2f9c2f68a971650b4167813d706c461533707d24c894a9"
+ }, {
+ "name": "pdns196.ultradns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "156.154.64.196"
+ }, {
+ "name": "pdns196.ultradns.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:502:f3ff::e8"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_91"
+ }, {
+ "Tuple4": "202.114.200.252.29499>192.54.112.30.53",
+ "dns_qname": "pdns196.ultradns.com",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "pdns196.ultradns.com"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.net"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.org"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 23,
+ "ns": "pdns196.ultradns.info"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 22,
+ "ns": "pdns196.ultradns.biz"
+ }, {
+ "name": "ultradns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 24,
+ "ns": "pdns196.ultradns.co.uk"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "JTGTK1RHNEO10C73DON1ESAH52SCS357.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "9f61e23e34b1d48140b712452b169da7ea423834",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "JTGTK1RHNEO10C73DON1ESAH52SCS357.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636088882,
+ "sig_inception": 1635479882,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "3c6681b0338640e10b6d0baee6a4d3b57b637e1bf9983b30f56a8fc0dde481dffb82f1bf18be695bb60a6afc58012d005668cd8280a9fbc2e4fc84ae7373316b411762c545ffb66c118f564b4d9b79131bfcec303701e12af4880ae144443d82330ec3f33d7fb2d4ba75688ff166effd9063cfa7ed51e57fc2fd0c8f21f821a3c24b88c40fdb9875bd2f9c2f68a971650b4167813d706c461533707d24c894a9"
+ }, {
+ "name": "pdns196.ultradns.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "156.154.64.196"
+ }, {
+ "name": "pdns196.ultradns.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2001:502:f3ff::e8"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_92"
}, {
"Tuple4": "210.36.64.33.24133>192.5.6.30.53",
"dns_qname": "miraizaka.com",
@@ -9368,7 +10715,150 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_85"
+ "name": "DNS_RESULT_93"
+ }, {
+ "Tuple4": "202.114.200.252.29863>192.54.112.30.53",
+ "dns_qname": "ptr2.dnspod.net",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "dnspod.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 15,
+ "ns": "ns4.dnsv2.com"
+ }, {
+ "name": "dnspod.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "ns3.dnsv2.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "JDST9B643717A9I6UCKS9HE56P63KMGM.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "9b7a33d5d918fb0b8842e0e2e05562fdb65f56d6",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "JDST9B643717A9I6UCKS9HE56P63KMGM.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636263210,
+ "sig_inception": 1635654210,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "181fd3b28556c8d863fd798c6fe5b6dbb35632d91c67063a4eab165a5aadeb0d82d1955b494efb1f96c230e9cb50f53a587196575c9e2c5480bc9521b868f0255d56e934090b455717ad82c403d71495113a5568812d784e514511f497aa2bd3535b0a5b6b8c64593ff6a18b0ce0f13a24bdb448c29990efc3855b83915e7e5adf66a8324858af56096143420b5d8f3ef5c7bfbb4b36b6b7056ccd5a796626aa"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "101.226.220.13"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "129.211.176.248"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.14.24.245"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "183.192.164.118"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "223.166.151.17"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2402:4e00:1430:1102:0:9136:2b2f:bf6b"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "61.129.8.141"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_94"
}, {
"Tuple4": "166.111.8.25.55709>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -9478,7 +10968,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_86"
+ "name": "DNS_RESULT_95"
}, {
"Tuple4": "166.111.8.25.30930>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -9588,7 +11078,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_87"
+ "name": "DNS_RESULT_96"
}, {
"Tuple4": "2620:0:cca::70.13274>2001:dd9::44.53",
"dns_qname": "big1.f5.lenovo.com.cn",
@@ -9712,7 +11202,171 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_88"
+ "name": "DNS_RESULT_97"
+ }, {
+ "Tuple4": "202.114.200.252.31763>192.54.112.30.53",
+ "dns_qname": "rdns2.alidns.com",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "alidns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 13,
+ "ns": "ns3.aliyun.com"
+ }, {
+ "name": "alidns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns4.aliyun.com"
+ }, {
+ "name": "alidns.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns5.aliyun.com"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "KLVNJBUJS84M94GO8K2N4S2MN0TCIILG.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "a57f7b40e910c56f8f02901dc16f84322f4f7045",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "KLVNJBUJS84M94GO8K2N4S2MN0TCIILG.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636351619,
+ "sig_inception": 1635739019,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "0c6c58cb9564f65d97cd6b0a9546a58999781a52035ab90f821d94479eb55b8e02ca4d372849c649e9846c8d50b48c89afbbaa38ecf26fe1f6f7d0d3b1f709ba084494eaa31bf7299064392db0456a6fbe205e3bab11c6d232ef6a89e595d702d74e7f94b3aa5cebab9dfe36be8397c0a639bfc1e74c6300248961789ed0093edf1194b415aa4a35cfda6f2a0e6a97919851ebf9390a04992c238e5297ff267f"
+ }, {
+ "name": "ns3.aliyun.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "106.11.35.29"
+ }, {
+ "name": "ns3.aliyun.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "106.11.35.30"
+ }, {
+ "name": "ns3.aliyun.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2401:b180:4100::11"
+ }, {
+ "name": "ns4.aliyun.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.122.133"
+ }, {
+ "name": "ns4.aliyun.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.122.143"
+ }, {
+ "name": "ns4.aliyun.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2401:b180:4100::12"
+ }, {
+ "name": "ns5.aliyun.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.205.122.153"
+ }, {
+ "name": "ns5.aliyun.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "198.11.138.248"
+ }, {
+ "name": "ns5.aliyun.com",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2401:b180:4100::13"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_98"
}, {
"Tuple4": "2607:f7a0:17:3::30.16451>2001:da8:1:100::44.53",
"dns_qname": "ucloud.com.cn",
@@ -9823,7 +11477,171 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_89"
+ "name": "DNS_RESULT_99"
+ }, {
+ "Tuple4": "202.114.200.252.45111>192.54.112.30.53",
+ "dns_qname": "ns-intl-834.awsdns-cn-52.com",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-1076.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-2310.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-3857.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 11,
+ "ns": "g-ns-944.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "ns": "g-ns-intl-944.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 17,
+ "ns": "g-ns-intl-3857.awsdns-cn-52.com"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "496PQRQKVR1JDOQTAK0USRPH784NKN6I.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "224da21a6e8d3d65e27a248e9602b92ac9f43b75",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "496PQRQKVR1JDOQTAK0USRPH784NKN6I.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636350784,
+ "sig_inception": 1635738184,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "16a78d883f4d619f2a9cbbf4b7b0a389b7a72c0d143e71432bca23cc0666ccc843dcceadc2aac5b1ff304d637ae07f9f2bd8f2c5b61fd62dd6208e3f9d50f970a1d8a4eb88ce8fa4ec8478c460fb4f60a8f9cda645c9d3d4572942a0dda394e75d271f8e74d1ff96cadb659c61f462617298e5389d3fd122eca1f1c7fe04002ef1e75ec14ad7935c99df4053e71fd50a13ca877f89515526c78da826e5c19d56"
+ }, {
+ "name": "g-ns-1076.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.180.52"
+ }, {
+ "name": "g-ns-2310.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.33.6"
+ }, {
+ "name": "g-ns-3857.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.39.17"
+ }, {
+ "name": "g-ns-944.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.179.176"
+ }, {
+ "name": "g-ns-intl-944.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.187.176"
+ }, {
+ "name": "g-ns-intl-3857.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.183.17"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_100"
}, {
"Tuple4": "2001:da8:7007:10::77.38324>2001:503:231d::2:30.53",
"dns_qname": "i.imgur.com",
@@ -9931,7 +11749,171 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_90"
+ "name": "DNS_RESULT_101"
+ }, {
+ "Tuple4": "202.114.200.252.46810>192.54.112.30.53",
+ "dns_qname": "ns-834.awsdns-cn-52.com",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-1076.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-2310.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-3857.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 11,
+ "ns": "g-ns-944.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "ns": "g-ns-intl-944.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 17,
+ "ns": "g-ns-intl-3857.awsdns-cn-52.com"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "496PQRQKVR1JDOQTAK0USRPH784NKN6I.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "224da21a6e8d3d65e27a248e9602b92ac9f43b75",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "496PQRQKVR1JDOQTAK0USRPH784NKN6I.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636350784,
+ "sig_inception": 1635738184,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "16a78d883f4d619f2a9cbbf4b7b0a389b7a72c0d143e71432bca23cc0666ccc843dcceadc2aac5b1ff304d637ae07f9f2bd8f2c5b61fd62dd6208e3f9d50f970a1d8a4eb88ce8fa4ec8478c460fb4f60a8f9cda645c9d3d4572942a0dda394e75d271f8e74d1ff96cadb659c61f462617298e5389d3fd122eca1f1c7fe04002ef1e75ec14ad7935c99df4053e71fd50a13ca877f89515526c78da826e5c19d56"
+ }, {
+ "name": "g-ns-1076.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.180.52"
+ }, {
+ "name": "g-ns-2310.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.33.6"
+ }, {
+ "name": "g-ns-3857.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.39.17"
+ }, {
+ "name": "g-ns-944.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.179.176"
+ }, {
+ "name": "g-ns-intl-944.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.187.176"
+ }, {
+ "name": "g-ns-intl-3857.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.183.17"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_102"
}, {
"Tuple4": "166.111.8.25.47577>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -10041,7 +12023,725 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_91"
+ "name": "DNS_RESULT_103"
+ }, {
+ "Tuple4": "202.114.200.252.16028>192.54.112.30.53",
+ "dns_qname": "ptr1.dnspod.net",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "dnspod.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 15,
+ "ns": "ns4.dnsv2.com"
+ }, {
+ "name": "dnspod.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "ns3.dnsv2.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "JDST9B643717A9I6UCKS9HE56P63KMGM.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "9b7a33d5d918fb0b8842e0e2e05562fdb65f56d6",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "JDST9B643717A9I6UCKS9HE56P63KMGM.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636263210,
+ "sig_inception": 1635654210,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "181fd3b28556c8d863fd798c6fe5b6dbb35632d91c67063a4eab165a5aadeb0d82d1955b494efb1f96c230e9cb50f53a587196575c9e2c5480bc9521b868f0255d56e934090b455717ad82c403d71495113a5568812d784e514511f497aa2bd3535b0a5b6b8c64593ff6a18b0ce0f13a24bdb448c29990efc3855b83915e7e5adf66a8324858af56096143420b5d8f3ef5c7bfbb4b36b6b7056ccd5a796626aa"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "101.226.220.13"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "129.211.176.248"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "162.14.24.245"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "183.192.164.118"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "223.166.151.17"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2402:4e00:1430:1102:0:9136:2b2f:bf6b"
+ }, {
+ "name": "ns3.dnsv2.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "61.129.8.141"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_104"
+ }, {
+ "Tuple4": "78.108.38.100.63651>202.112.0.44.53",
+ "dns_qname": "3g.cn",
+ "dns_qtype": 43,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "cn",
+ "type": 6,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 41,
+ "mname": "a.dns.cn",
+ "rname": "root.cnnic.cn",
+ "serial": 2028896702,
+ "refresh": 7200,
+ "retry": 3600,
+ "cname": 2419200,
+ "minimum": 21600
+ }, {
+ "name": "cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 6,
+ "algo": 8,
+ "labels": 1,
+ "original_ttl": 86400,
+ "sig_expiration": 1638342101,
+ "sig_inception": 1635746501,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "9856c7ce6b03e3710a4b290e72e1f0d8a814b1f3768243f383cbcbfeb2196750f3d5c0b5bcebcc877bc2a333bec0bc78c0e1d506d13ba4f8c539ac3c10a24265e55ec9b46084497ac2ee39946486d46d606e4e392aed87c621279f9fa317e48573bfe8845ab771e6e2718a6e020b5fdc718754099684d0aee97061cc84f09a37"
+ }, {
+ "name": "VM1G35JO0ESQL71JCHCUR0KVI0ELKP3M.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "fde3787799d010156398064bebd9e1344db2858d",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "VM1G35JO0ESQL71JCHCUR0KVI0ELKP3M.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1637157690,
+ "sig_inception": 1634562633,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "38e4f61c44518e4bc5b0af6f280d777f44f402498274148aa0f6d9699fc9a047fdfedf86c71525ba330b7aea89835330bde0dafee65f649b62fa439d774e8f67d57da804470d7fef266b6624263bd16f27607a82b9a4a7a45b1744caea514882cd93d4607a3879a6366bc7d66e517b271e37059d567f381e847bdd6c50c1681d"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 28
+ }]
+ },
+ "name": "DNS_RESULT_105"
+ }, {
+ "Tuple4": "202.114.200.252.64257>192.54.112.30.53",
+ "dns_qname": "ns-intl-834.awsdns-cn-52.com",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-1076.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-2310.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-3857.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 11,
+ "ns": "g-ns-944.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "ns": "g-ns-intl-944.awsdns-cn-52.com"
+ }, {
+ "name": "awsdns-cn-52.com",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 17,
+ "ns": "g-ns-intl-3857.awsdns-cn-52.com"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "6501a0c25720ee156f6c4e39636b3ada0312d92a",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "CK0POJMG874LJREF7EFN8430QVIT8BSM.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636349012,
+ "sig_inception": 1635736412,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "1f77dc4c5796eda9ced317925c67d91c52922152424c9dca024948c1169e8429053fdf50a23370d9c3dc79de909f2f79475b2c731d6060d1db7b5d294b8ee43c91a57b8a4afa06c25fb13127bfca3fb353c7d5a38eaf093e12ffa1e33bc80bd7118851ca730ed22bd27b6f16673b86b44898785c6e13b3dd3620750492e47bb8ca823ffa6e25225ffa5408184c25e4ff423497802deed0586629d78103b3e6e7"
+ }, {
+ "name": "496PQRQKVR1JDOQTAK0USRPH784NKN6I.com",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "224da21a6e8d3d65e27a248e9602b92ac9f43b75",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "496PQRQKVR1JDOQTAK0USRPH784NKN6I.com",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636350784,
+ "sig_inception": 1635738184,
+ "key_tag": 15549,
+ "signer_name": "com",
+ "signature_len": 160,
+ "signature": "16a78d883f4d619f2a9cbbf4b7b0a389b7a72c0d143e71432bca23cc0666ccc843dcceadc2aac5b1ff304d637ae07f9f2bd8f2c5b61fd62dd6208e3f9d50f970a1d8a4eb88ce8fa4ec8478c460fb4f60a8f9cda645c9d3d4572942a0dda394e75d271f8e74d1ff96cadb659c61f462617298e5389d3fd122eca1f1c7fe04002ef1e75ec14ad7935c99df4053e71fd50a13ca877f89515526c78da826e5c19d56"
+ }, {
+ "name": "g-ns-1076.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.180.52"
+ }, {
+ "name": "g-ns-2310.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.33.6"
+ }, {
+ "name": "g-ns-3857.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.39.17"
+ }, {
+ "name": "g-ns-944.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.179.176"
+ }, {
+ "name": "g-ns-intl-944.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.187.176"
+ }, {
+ "name": "g-ns-intl-3857.awsdns-cn-52.com",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.183.17"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_106"
+ }, {
+ "Tuple4": "202.114.200.252.65376>192.54.112.30.53",
+ "dns_qname": "ns.cnmobile.net",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "cnmobile.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "ns.cnmobile.net"
+ }, {
+ "name": "cnmobile.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns1.cnmobile.net"
+ }, {
+ "name": "cnmobile.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 6,
+ "ns": "ns2.cnmobile.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "UN0EOP8SLV85N00OL2H45TADL08BB24I.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "f5c11b5dbcabe81938b4e46f450c813fbf722fed",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "UN0EOP8SLV85N00OL2H45TADL08BB24I.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636090651,
+ "sig_inception": 1635481651,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "d0a314caa197cc40abf9976c562d449012ea3bed4b6608110d28a5d03fd000afa0435d6e5a61b958f0459b935670cd8ded04f15416d274e950715ac5dc250dcbe5901f26f006ab4b1ae84e541bb9b5926f3d5899eecc29e5f8cdc7ee42021d0817d6c76ca2e74d3155a2415981fad8ea7394fac8ebae83a1f99b3bd4e138eca2d6dd9f124b96929e09b36a57bf5fc472d9d80c77e01eaf4211121e085830a602"
+ }, {
+ "name": "ns.cnmobile.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "211.136.17.105"
+ }, {
+ "name": "ns.cnmobile.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2409:8080::3"
+ }, {
+ "name": "ns1.cnmobile.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "211.136.17.105"
+ }, {
+ "name": "ns2.cnmobile.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "211.136.20.201"
+ }, {
+ "name": "ns2.cnmobile.net",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2409:8080::4"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_107"
+ }, {
+ "Tuple4": "202.114.200.252.35453>192.54.112.30.53",
+ "dns_qname": "ns-1934.awsdns-cn-56.net",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "awsdns-cn-56.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 11,
+ "ns": "g-ns-515.awsdns-cn-56.net"
+ }, {
+ "name": "awsdns-cn-56.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-2758.awsdns-cn-56.net"
+ }, {
+ "name": "awsdns-cn-56.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-3442.awsdns-cn-56.net"
+ }, {
+ "name": "awsdns-cn-56.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 12,
+ "ns": "g-ns-1662.awsdns-cn-56.net"
+ }, {
+ "name": "awsdns-cn-56.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "ns": "g-ns-intl-515.awsdns-cn-56.net"
+ }, {
+ "name": "awsdns-cn-56.net",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 17,
+ "ns": "g-ns-intl-3442.awsdns-cn-56.net"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "5077ef3df3a33a2d14993a1e874e1344d743c90b",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "A1RT98BS5QGC9NFI51S9HCI47ULJG6JH.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636353694,
+ "sig_inception": 1635741094,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "99742854cdb4e7be28fa1f234456d67b13c1e60a6ab365e5cefc56d4a6f03ce13dfb9572ad7d54fd616fd729c59cf62e5f3cb6fef2833d33bc442242e52c9137110bf1b6289e037cd5fd3efdf610b6e10c8dbeaccfc19c84508b8f0d87d6f317d92030e537eb6554b364e05c04b2e7e0e3261c73055ab36856149423c0d8b8539cb2ca2930064239ba338ff9c21a9ea7f83bb7b5833616ab3f9fd4d55a99ad10"
+ }, {
+ "name": "8CSIABPI69T7PE60G5Q4UJ59M3O12BBM.net",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 0,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "433945f7949e73db6e15b15e9400ff2bee27e6af",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "8CSIABPI69T7PE60G5Q4UJ59M3O12BBM.net",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1636263612,
+ "sig_inception": 1635654612,
+ "key_tag": 40649,
+ "signer_name": "net",
+ "signature_len": 160,
+ "signature": "7fe6cbfaa1eccbfa46e641268884ff1a48094bd6236675a554faf65ba2e442a79e1a44b14645a6d599666a4bcf84bb35d985a96aa887af8cf1258af1f54c78e7fd452720c755645ee8086c187812d77f39548b8c149ac6d01cf89cc97cbd7d804b5553848c1a825e8f67a22a22e3f7da2be8337a8b9fa999350de138b843d4735da0ed2aa951b867ea7e2583d97d691df41b3dc51fe2ea6f55090006b2ccc1c7"
+ }, {
+ "name": "g-ns-515.awsdns-cn-56.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.178.3"
+ }, {
+ "name": "g-ns-2758.awsdns-cn-56.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.34.198"
+ }, {
+ "name": "g-ns-3442.awsdns-cn-56.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "54.222.37.114"
+ }, {
+ "name": "g-ns-1662.awsdns-cn-56.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.82.182.126"
+ }, {
+ "name": "g-ns-intl-515.awsdns-cn-56.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.186.3"
+ }, {
+ "name": "g-ns-intl-3442.awsdns-cn-56.net",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "52.46.181.114"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_108"
}, {
"Tuple4": "162.158.37.100.42315>202.112.0.44.53",
"dns_qname": "ksvxhlnftooqqna.cn",
@@ -10183,7 +12883,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_92"
+ "name": "DNS_RESULT_109"
}, {
"Tuple4": "166.111.8.25.30553>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -10293,7 +12993,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_93"
+ "name": "DNS_RESULT_110"
}, {
"Tuple4": "210.35.128.2.47158>192.41.162.30.53",
"dns_qname": "twitter.com",
@@ -10402,7 +13102,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_94"
+ "name": "DNS_RESULT_111"
}, {
"Tuple4": "166.111.8.25.41392>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -10512,7 +13212,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_95"
+ "name": "DNS_RESULT_112"
}, {
"Tuple4": "211.71.93.0.14481>185.24.64.42.53",
"dns_qname": "frpic.xyz",
@@ -10606,7 +13306,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_96"
+ "name": "DNS_RESULT_113"
}, {
"Tuple4": "2001:da8:1001:3:2d0:f8ff:febc:df38.38333>2003:8:14::53.53",
"dns_qname": "adscale.de",
@@ -10717,7 +13417,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_97"
+ "name": "DNS_RESULT_114"
}, {
"Tuple4": "2001:250:7401:9:a792:2d2e:5406:f809.46824>2001:503:231d::2:30.53",
"dns_qname": "ns1.qh-lb.com",
@@ -10867,7 +13567,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_98"
+ "name": "DNS_RESULT_115"
}, {
"Tuple4": "2001:250:7401:9:a792:2d2e:5406:f809.58261>2001:503:231d::2:30.53",
"dns_qname": "ns3.qh-lb.com",
@@ -11017,7 +13717,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_99"
+ "name": "DNS_RESULT_116"
}, {
"Tuple4": "2001:250:7401:9:a792:2d2e:5406:f809.40865>2001:503:231d::2:30.53",
"dns_qname": "ns4.qh-lb.com",
@@ -11167,7 +13867,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_100"
+ "name": "DNS_RESULT_117"
}, {
"Tuple4": "139.59.107.152.50715>202.112.0.44.53",
"dns_qname": "ax30.cn",
@@ -11263,7 +13963,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_101"
+ "name": "DNS_RESULT_118"
}, {
"Tuple4": "139.59.107.152.29808>202.112.0.44.53",
"dns_qname": "v4cqise.cn",
@@ -11359,7 +14059,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_102"
+ "name": "DNS_RESULT_119"
}, {
"Tuple4": "166.111.8.25.63830>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -11469,7 +14169,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_103"
+ "name": "DNS_RESULT_120"
}, {
"Tuple4": "202.4.130.100.59356>192.42.93.30.53",
"dns_qname": "dyi.bbhmjl.net",
@@ -11608,7 +14308,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_104"
+ "name": "DNS_RESULT_121"
}, {
"Tuple4": "166.111.8.25.31983>193.232.142.17.53",
"dns_qname": "56.ru",
@@ -11718,7 +14418,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_105"
+ "name": "DNS_RESULT_122"
}, {
"Tuple4": "2620:0:cca::72.2499>2001:dd9::44.53",
"dns_qname": "big1.f5.lenovo.com.cn",
@@ -11842,7 +14542,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_106"
+ "name": "DNS_RESULT_123"
}, {
"Tuple4": "139.59.107.152.41685>202.112.0.44.53",
"dns_qname": "www.ffgmjz.cn",
@@ -11938,7 +14638,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_107"
+ "name": "DNS_RESULT_124"
}, {
"Tuple4": "139.59.107.152.5103>202.112.0.44.53",
"dns_qname": "www.ffgmjz.cn",
@@ -12034,7 +14734,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_108"
+ "name": "DNS_RESULT_125"
}, {
"Tuple4": "210.36.64.33.23600>192.5.6.30.53",
"dns_qname": "www.xn--ecki4eoz7542cnmxd240azxr.com",
@@ -12128,7 +14828,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_109"
+ "name": "DNS_RESULT_126"
}, {
"Tuple4": "139.59.107.152.33636>202.112.0.44.53",
"dns_qname": "2ivw0eh.cn",
@@ -12224,7 +14924,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_110"
+ "name": "DNS_RESULT_127"
}, {
"Tuple4": "2620:0:cca::72.49377>2001:dd9::44.53",
"dns_qname": "big2.f5.lenovo.com.cn",
@@ -12348,7 +15048,149 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_111"
+ "name": "DNS_RESULT_128"
+ }, {
+ "Tuple4": "101.4.126.219.55408>156.154.127.65.53",
+ "dns_qname": "m42.kfxtjzb.biz",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "biz",
+ "type": 6,
+ "class": 1,
+ "ttl": 900,
+ "rdlength": 50,
+ "mname": "a.gtld.biz",
+ "rname": "admin.tldns.godaddy",
+ "serial": 1635749528,
+ "refresh": 1800,
+ "retry": 300,
+ "cname": 604800,
+ "minimum": 1800
+ }, {
+ "name": "biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 900,
+ "rdlength": 183,
+ "type_covered": 6,
+ "algo": 8,
+ "labels": 1,
+ "original_ttl": 900,
+ "sig_expiration": 1638341618,
+ "sig_inception": 1635746018,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "dd0cdd4bb69faf939c1745509b2b4769f1aff4d7d2ee3a27b3dd88ec0cbdf9a724de8260cf74dab59c0fe2057ff41429972d840d7ec9884becc63296f77e2f4abf55d53960d40785610cb6506a3f2433f9da9c27af2c5cf9cca8dcac1fea65bb7afcdeb968193549082f0a3f95387d8cbe0c9f5292ae9aeb0ad57382f8c51115c67721960e346fe5169e92d3af56045912248681a10de4eaa6b1ed4b7e5abff7"
+ }, {
+ "name": "9ivsa0gimv18nm4si1tkf2r78navcdut.biz",
+ "type": 50,
+ "class": 1,
+ "ttl": 1800,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 4,
+ "salt_value": "e3c15f5f",
+ "hash_len": 20,
+ "next_hash_owner": "4cc0fe2cb10889586f958c61b06dacc837d73c37",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "9ivsa0gimv18nm4si1tkf2r78navcdut.biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 1800,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 1800,
+ "sig_expiration": 1637803195,
+ "sig_inception": 1635210901,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "1f5b69f935dbd978fbc124e867460f957e3862926a827c4a9a307ec7dbe058f50aaab0a322eb4f231a2fd7c1986f55133b49a9e9d89d296e95913429fa21c3e87e3191a1cd715db898a08b6e40a2ef31e283e74ba706998514d28e6a9fe042c9c9e931f24507a41dba7d4f05e1280b07075585f228b2940e4ee0652ec823b2455e29a2299274a6e045ef6f2b9299608a65d94a9d8565c1ef092acb9f4968357f"
+ }, {
+ "name": "o8ojpbu0objug6dqaj0bmffhldibhllq.biz",
+ "type": 50,
+ "class": 1,
+ "ttl": 1800,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 4,
+ "salt_value": "e3c15f5f",
+ "hash_len": 20,
+ "next_hash_owner": "c238c651d13e3e6dc6c3993537842ba50eab27b9",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "o8ojpbu0objug6dqaj0bmffhldibhllq.biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 1800,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 1800,
+ "sig_expiration": 1638199207,
+ "sig_inception": 1635606420,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "d18e4afe45d125261206f14979df12b8754f4d7f0a4b865ca6f793eb3593f75934edb4b7f7795bb9d46ea3ed2683d3eef46988cd32f539e608b63ea893a69abee7fa2481f199ad59e1e445cb2f4b10835d62ddf6689394cef75ae5667f6ff66ef023c9fa184205dde333baf35dd8681af35e121af60057f92ac222236a300ee843e5e5d21cd84dd6ce795ac518d18ab4faf842d4471e1c9a4b929794dc4e3cf8"
+ }, {
+ "name": "59t50n8fq02hkljabjgs271g6q7j00ll.biz",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 4,
+ "salt_value": "e3c15f5f",
+ "hash_len": 20,
+ "next_hash_owner": "2a7e032b51226b1cc4cd6d02daf24baa7a111f3d",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "59t50n8fq02hkljabjgs271g6q7j00ll.biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1637930769,
+ "sig_inception": 1635338028,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "76525c6d442b2fe73b5adb7ca6b43b3cc8e19ec1fea1d89f9ac52d442682debdb94e95e0823a3cf737dc8829d55510d952166d09e23205daba888db26566b2041fbb5a29230f2e33785e7d209db7a38bbdf66c1ab149beb7049e5dc3ea2cc7a4be8f9055b425ac48522a39687920acd376189d05d60572f472a9561050e76bb7ccb373601a9666ded84cad5d040bd1b17f61504087b18ab48dc8cbabba926a25"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 28
+ }]
+ },
+ "name": "DNS_RESULT_129"
}, {
"Tuple4": "2001:240:bb5c:8016::1:221.43477>2001:dd9::44.53",
"dns_qname": "byd.com.cn",
@@ -12458,7 +15300,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_112"
+ "name": "DNS_RESULT_130"
}, {
"Tuple4": "180.250.120.55.22767>202.112.26.43.53",
"dns_qname": "ntp.sjtu.edu.cn",
@@ -12560,7 +15402,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_113"
+ "name": "DNS_RESULT_131"
}, {
"Tuple4": "2402:f000:1:801::8:29.22476>2001:67c:e0::9.53",
"dns_qname": "1.149.227.124.in-addr.arpa",
@@ -12625,7 +15467,173 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_114"
+ "name": "DNS_RESULT_132"
+ }, {
+ "Tuple4": "23.222.16.158.35690>202.112.0.44.53",
+ "dns_qname": "ns-3674.awsdns-cn-37.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "awsdns-cn-37.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 11,
+ "ns": "g-ns-801.awsdns-cn-37.cn"
+ }, {
+ "name": "awsdns-cn-37.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 16,
+ "ns": "g-ns-intl-801.awsdns-cn-37.cn"
+ }, {
+ "name": "awsdns-cn-37.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 17,
+ "ns": "g-ns-intl-3659.awsdns-cn-37.cn"
+ }, {
+ "name": "awsdns-cn-37.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 12,
+ "ns": "g-ns-2410.awsdns-cn-37.cn"
+ }, {
+ "name": "awsdns-cn-37.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 12,
+ "ns": "g-ns-3659.awsdns-cn-37.cn"
+ }, {
+ "name": "awsdns-cn-37.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 12,
+ "ns": "g-ns-1939.awsdns-cn-37.cn"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "VVLBQ5SUJ0PIH9ARBH9NCFKQMIS47A5T.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "003cce2056bf814a6705d66f30417714ae9f88d5",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "VVLBQ5SUJ0PIH9ARBH9NCFKQMIS47A5T.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636931809,
+ "sig_inception": 1634337381,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "8b8396616a00c6d5fff81d19baa34cf924815e82db10da19fdeca7e6a453f226254ecf231a9da1ffd63f6436299d4b781753c99be13b2e7896d4fc06172c774317a7c357547b8805dbd94d4069666f4ac5b63a201daf3697e674f9c24b4a7460059b8b2c4ff2e30a429dba499714960cb4bef21678ab077540a96675a50f675c"
+ }, {
+ "name": "g-ns-801.awsdns-cn-37.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "52.82.179.33"
+ }, {
+ "name": "g-ns-1939.awsdns-cn-37.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "52.82.183.147"
+ }, {
+ "name": "g-ns-2410.awsdns-cn-37.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "54.222.33.106"
+ }, {
+ "name": "g-ns-3659.awsdns-cn-37.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "54.222.38.75"
+ }, {
+ "name": "g-ns-intl-801.awsdns-cn-37.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "52.46.187.33"
+ }, {
+ "name": "g-ns-intl-3659.awsdns-cn-37.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "52.46.182.75"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_133"
}, {
"Tuple4": "162.158.104.182.21606>202.112.0.44.53",
"dns_qname": "kblood.cn",
@@ -12736,7 +15744,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_115"
+ "name": "DNS_RESULT_134"
}, {
"Tuple4": "202.4.130.100.49282>192.42.93.30.53",
"dns_qname": "fewui-3rd.com",
@@ -12875,7 +15883,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_116"
+ "name": "DNS_RESULT_135"
}, {
"Tuple4": "138.255.72.27.23762>202.112.26.43.53",
"dns_qname": "ecslb.sjtu.edu.cn",
@@ -12954,7 +15962,103 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_117"
+ "name": "DNS_RESULT_136"
+ }, {
+ "Tuple4": "202.114.200.252.44123>195.219.8.90.53",
+ "dns_qname": "usertask-drcn.himovie.dbankcloud.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "dbankcloud.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 15,
+ "ns": "ns4.dnsv5.com"
+ }, {
+ "name": "dbankcloud.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 6,
+ "ns": "ns3.dnsv5.com"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "29JBASAO5FU38I6E14F5NK17HV6718JQ.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "12c53cb81c356e3899f62d45c03b0f58aba5d556",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "29JBASAO5FU38I6E14F5NK17HV6718JQ.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1637155800,
+ "sig_inception": 1634561611,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "167298a8af9334c1ee88beae14f467c7c691a274e79e01384322067631dd744a9dde277036b55a46e202f6a2f6341aabd17cc8796e9a4de24b1bf022329d44fe79c1319e98baf56a8fa493f9ff5e8e43ff723d90eef6e350f8d78326beda10813d127710d0af2eb65289e10d8148e80489ae2e4bd4e5685449407277e20a868c"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_137"
}, {
"Tuple4": "202.120.2.170.15836>192.43.172.30.53",
"dns_qname": "adxadserv.com",
@@ -13048,7 +16152,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_118"
+ "name": "DNS_RESULT_138"
}, {
"Tuple4": "2610:a1:3014:128::145.36429>2001:dd9::44.53",
"dns_qname": "autohome.com.cn",
@@ -13159,7 +16263,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_119"
+ "name": "DNS_RESULT_139"
}, {
"Tuple4": "2620:0:cca::72.4618>2001:dd9::44.53",
"dns_qname": "tz1c.cn",
@@ -13270,7 +16374,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_120"
+ "name": "DNS_RESULT_140"
}, {
"Tuple4": "2001:da8:2000:2193::43.32136>2001:503:d2d::30.53",
"dns_qname": "tiktokv.com",
@@ -13379,7 +16483,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_121"
+ "name": "DNS_RESULT_141"
}, {
"Tuple4": "2001:da8:2000:2193::43.48006>2001:503:d2d::30.53",
"dns_qname": "instagram.com",
@@ -13488,7 +16592,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_122"
+ "name": "DNS_RESULT_142"
}, {
"Tuple4": "202.38.193.43.24409>185.159.198.45.53",
"dns_qname": "google.dk",
@@ -13599,7 +16703,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_123"
+ "name": "DNS_RESULT_143"
}, {
"Tuple4": "162.158.252.85.45832>202.112.0.44.53",
"dns_qname": "chaoyouliao.cn",
@@ -13695,7 +16799,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_124"
+ "name": "DNS_RESULT_144"
}, {
"Tuple4": "210.35.128.2.59273>192.42.93.30.53",
"dns_qname": "tlc288.com",
@@ -13804,7 +16908,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_125"
+ "name": "DNS_RESULT_145"
}, {
"Tuple4": "2001:da8:8006:1::6666.42533>2001:500:856e::30.53",
"dns_qname": "pythontutor.com",
@@ -13913,7 +17017,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_126"
+ "name": "DNS_RESULT_146"
}, {
"Tuple4": "2402:f000:1:801::8:28.47308>2001:67c:e0::9.53",
"dns_qname": "1.149.227.124.in-addr.arpa",
@@ -13978,7 +17082,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_127"
+ "name": "DNS_RESULT_147"
}, {
"Tuple4": "2402:f000:1:801::8:28.23039>2001:67c:e0::9.53",
"dns_qname": "1.149.227.124.in-addr.arpa",
@@ -14043,7 +17147,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_128"
+ "name": "DNS_RESULT_148"
}, {
"Tuple4": "202.112.26.34.39663>192.26.92.30.53",
"dns_qname": "graph.facebook.com",
@@ -14207,7 +17311,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_129"
+ "name": "DNS_RESULT_149"
}, {
"Tuple4": "2001:250:3c01::2.54771>2001:500:856e::30.53",
"dns_qname": "ns2.jddebug.com",
@@ -14315,7 +17419,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_130"
+ "name": "DNS_RESULT_150"
}, {
"Tuple4": "212.142.48.72.8807>202.120.2.90.53",
"dns_qname": "ntp.sjtu.edu.cn",
@@ -14417,7 +17521,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_131"
+ "name": "DNS_RESULT_151"
}, {
"Tuple4": "166.111.8.25.54586>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -14541,7 +17645,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_132"
+ "name": "DNS_RESULT_152"
}, {
"Tuple4": "166.111.8.25.12717>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -14665,7 +17769,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_133"
+ "name": "DNS_RESULT_153"
}, {
"Tuple4": "166.111.8.25.38493>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -14789,7 +17893,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_134"
+ "name": "DNS_RESULT_154"
}, {
"Tuple4": "166.111.8.25.6266>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -14913,7 +18017,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_135"
+ "name": "DNS_RESULT_155"
}, {
"Tuple4": "166.111.8.25.28193>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -15037,7 +18141,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_136"
+ "name": "DNS_RESULT_156"
}, {
"Tuple4": "166.111.8.25.42600>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -15161,7 +18265,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_137"
+ "name": "DNS_RESULT_157"
}, {
"Tuple4": "166.111.8.25.29642>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -15285,7 +18389,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_138"
+ "name": "DNS_RESULT_158"
}, {
"Tuple4": "168.95.1.148.58691>202.112.0.13.53",
"dns_qname": "ctponline.zust.edu.cn",
@@ -15378,7 +18482,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_139"
+ "name": "DNS_RESULT_159"
}, {
"Tuple4": "2804:858:bac1::bac1:54.25757>2001:dd9::44.53",
"dns_qname": "com.cn",
@@ -15458,7 +18562,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_140"
+ "name": "DNS_RESULT_160"
}, {
"Tuple4": "139.59.107.152.43008>202.112.0.44.53",
"dns_qname": "0srhtd.cn",
@@ -15554,7 +18658,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_141"
+ "name": "DNS_RESULT_161"
}, {
"Tuple4": "2804:858:bac1::bac1:54.26239>2001:dd9::44.53",
"dns_qname": "com.cn",
@@ -15634,7 +18738,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_142"
+ "name": "DNS_RESULT_162"
}, {
"Tuple4": "139.59.107.152.38848>202.112.0.44.53",
"dns_qname": "www.uiakl5.cn",
@@ -15730,7 +18834,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_143"
+ "name": "DNS_RESULT_163"
}, {
"Tuple4": "139.59.107.152.37345>202.112.0.44.53",
"dns_qname": "nsyomcf.cn",
@@ -15826,7 +18930,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_144"
+ "name": "DNS_RESULT_164"
}, {
"Tuple4": "2001:250:7401:9:a792:2d2e:5406:f809.48747>2001:503:231d::2:30.53",
"dns_qname": "ns4.yahoo.com",
@@ -16004,7 +19108,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_145"
+ "name": "DNS_RESULT_165"
}, {
"Tuple4": "2001:da8:7007:10::77.51448>2001:503:231d::2:30.53",
"dns_qname": "analytics.tiktok.com",
@@ -16119,7 +19223,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_146"
+ "name": "DNS_RESULT_166"
}, {
"Tuple4": "202.120.2.169.4329>192.43.172.30.53",
"dns_qname": "qz.com",
@@ -16228,7 +19332,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_147"
+ "name": "DNS_RESULT_167"
}, {
"Tuple4": "2001:da8:8006:1::6666.50339>2001:500:856e::30.53",
"dns_qname": "stackpathcdn.com",
@@ -16337,7 +19441,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_148"
+ "name": "DNS_RESULT_168"
}, {
"Tuple4": "211.81.20.201.48203>192.33.14.30.53",
"dns_qname": "material.mtty.com",
@@ -16557,7 +19661,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_149"
+ "name": "DNS_RESULT_169"
}, {
"Tuple4": "2001:da8:8006:1::6666.61147>2001:500:856e::30.53",
"dns_qname": "eshukan.com",
@@ -16666,7 +19770,227 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_150"
+ "name": "DNS_RESULT_170"
+ }, {
+ "Tuple4": "202.114.200.252.11431>195.219.8.90.53",
+ "dns_qname": "ns.guangzhou.gd.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "guangzhou.gd.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 2,
+ "ns": "ns.guangzhou.gd.cn"
+ }, {
+ "name": "guangzhou.gd.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 6,
+ "ns": "dns.guangzhou.gd.cn"
+ }, {
+ "name": "RDRCTEA36BMNT2TD7O460LF6OD8QA63I.gd.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "24492a177350d877364a29a7315aea04035551f3",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "RDRCTEA36BMNT2TD7O460LF6OD8QA63I.gd.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 153,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637073947,
+ "sig_inception": 1634481654,
+ "key_tag": 54306,
+ "signer_name": "gd.cn",
+ "signature_len": 128,
+ "signature": "20d0382b53de5df1d1c24b886015a8f3a82806691283fa4d3efa74a74a22003bde80e36e4a1cd3d1f55da4beb9dec79708f164c4beeeeb3cd5af21a21d9da8cd01283b17fd54bb8ee87b427b5284945df417971db9337f9d6ad620bc2c93b065c9af21be3aa4533275ad490eb790366f11d22928185b892f15d984109d2c010b"
+ }, {
+ "name": "4H4IK5RJA3C7EDIA56JJ2MNA0G1LAKFJ.gd.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "c297a5f146dfa9f0698dfca6aa7864942a564018",
+ "maps_len": 8,
+ "type_bit_maps": "0006000080000002"
+ }, {
+ "name": "4H4IK5RJA3C7EDIA56JJ2MNA0G1LAKFJ.gd.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 153,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637092479,
+ "sig_inception": 1634499821,
+ "key_tag": 54306,
+ "signer_name": "gd.cn",
+ "signature_len": 128,
+ "signature": "3d31e1f17f0e09e19db2abdc9f63571d0b7166de5329aaad440946fffcf2d87d8d79829c6796a92711c024a1cf1046f489dc35c66aa5e2a28c9fec5c82d6fb3970e125e368ae2c6a2c8d063fa45cc576cb29327b08b07c837058ff98718a38b43d2b42f90af777b067dd97ae441caea71677e3720975a62bb214cd40145735c6"
+ }, {
+ "name": "ns.guangzhou.gd.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.128.143"
+ }, {
+ "name": "dns.guangzhou.gd.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.128.68"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_171"
+ }, {
+ "Tuple4": "202.114.200.252.26557>195.219.8.90.53",
+ "dns_qname": "ns.guangzhou.gd.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "guangzhou.gd.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 6,
+ "ns": "dns.guangzhou.gd.cn"
+ }, {
+ "name": "guangzhou.gd.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 2,
+ "ns": "ns.guangzhou.gd.cn"
+ }, {
+ "name": "RDRCTEA36BMNT2TD7O460LF6OD8QA63I.gd.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "24492a177350d877364a29a7315aea04035551f3",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "RDRCTEA36BMNT2TD7O460LF6OD8QA63I.gd.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 153,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637073947,
+ "sig_inception": 1634481654,
+ "key_tag": 54306,
+ "signer_name": "gd.cn",
+ "signature_len": 128,
+ "signature": "20d0382b53de5df1d1c24b886015a8f3a82806691283fa4d3efa74a74a22003bde80e36e4a1cd3d1f55da4beb9dec79708f164c4beeeeb3cd5af21a21d9da8cd01283b17fd54bb8ee87b427b5284945df417971db9337f9d6ad620bc2c93b065c9af21be3aa4533275ad490eb790366f11d22928185b892f15d984109d2c010b"
+ }, {
+ "name": "4H4IK5RJA3C7EDIA56JJ2MNA0G1LAKFJ.gd.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "c297a5f146dfa9f0698dfca6aa7864942a564018",
+ "maps_len": 8,
+ "type_bit_maps": "0006000080000002"
+ }, {
+ "name": "4H4IK5RJA3C7EDIA56JJ2MNA0G1LAKFJ.gd.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 153,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637092479,
+ "sig_inception": 1634499821,
+ "key_tag": 54306,
+ "signer_name": "gd.cn",
+ "signature_len": 128,
+ "signature": "3d31e1f17f0e09e19db2abdc9f63571d0b7166de5329aaad440946fffcf2d87d8d79829c6796a92711c024a1cf1046f489dc35c66aa5e2a28c9fec5c82d6fb3970e125e368ae2c6a2c8d063fa45cc576cb29327b08b07c837058ff98718a38b43d2b42f90af777b067dd97ae441caea71677e3720975a62bb214cd40145735c6"
+ }, {
+ "name": "ns.guangzhou.gd.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.128.143"
+ }, {
+ "name": "dns.guangzhou.gd.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.128.68"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_172"
}, {
"Tuple4": "202.120.2.100.31773>199.19.57.1.53",
"dns_qname": "nanoha.org",
@@ -16777,7 +20101,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_151"
+ "name": "DNS_RESULT_173"
}, {
"Tuple4": "210.35.128.2.46854>192.42.93.30.53",
"dns_qname": "twitter.com",
@@ -16886,7 +20210,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_152"
+ "name": "DNS_RESULT_174"
}, {
"Tuple4": "139.59.107.152.41955>202.112.0.44.53",
"dns_qname": "www.ot3c5b.cn",
@@ -16982,7 +20306,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_153"
+ "name": "DNS_RESULT_175"
}, {
"Tuple4": "210.44.10.32.6126>8.8.8.8.53",
"dns_qname": "tracker.torrentyorg.pl",
@@ -17062,7 +20386,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_154"
+ "name": "DNS_RESULT_176"
}, {
"Tuple4": "202.120.2.169.60223>192.43.172.30.53",
"dns_qname": "qz.com",
@@ -17171,7 +20495,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_155"
+ "name": "DNS_RESULT_177"
}, {
"Tuple4": "210.35.128.1.54693>192.41.162.30.53",
"dns_qname": "twitter.com",
@@ -17280,7 +20604,247 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_156"
+ "name": "DNS_RESULT_178"
+ }, {
+ "Tuple4": "2604:a880:800:10::965:a001.59761>2001:dd9::44.53",
+ "dns_qname": "ns1-05.azure-dns-1.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns1-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns2-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns4-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns3-04.azure-dns-1.cn"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "D0956PQVAO5RRA5GB8OMUO7HDOKDE07V.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "68fa06ab625494e0c43293be5f5d96ed98b8ddf9",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "D0956PQVAO5RRA5GB8OMUO7HDOKDE07V.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1638186728,
+ "sig_inception": 1635591128,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "51a57dd4a1ab3738cb9d75ecf941fa98f4f13d903c4d8b10464171d5bc8eac038ee65101793f51fd76f446b4d0e760ea7749e9b68b80d94373ba509a7c6f382b20e438f06e82a93210b1c31c0d0af63ddb5cb06804146aef2f4a71679e3c6fd60864e1597a22abeecefecac1aecfd087e4e76c8a55bcc7442f2becfddb5895d4"
+ }, {
+ "name": "ns1-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.192.4"
+ }, {
+ "name": "ns2-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.194.4"
+ }, {
+ "name": "ns3-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.196.4"
+ }, {
+ "name": "ns4-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.198.4"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_179"
+ }, {
+ "Tuple4": "211.36.129.17.44301>202.120.2.90.53",
+ "dns_qname": "ntp.sjtu.edu.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "ntp.sjtu.edu.cn",
+ "type": 5,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 12,
+ "cname": "ntp.ecslb.sjtu.edu.cn"
+ }, {
+ "name": "ntp.sjtu.edu.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 159,
+ "type_covered": 5,
+ "algo": 8,
+ "labels": 4,
+ "original_ttl": 3600,
+ "sig_expiration": 1638330241,
+ "sig_inception": 1635738241,
+ "key_tag": 9528,
+ "signer_name": "sjtu.edu.cn",
+ "signature_len": 128,
+ "signature": "7c481e1c0aecd28235929eb03f8339c8502022edb5d92b5de08b04f76e85fb8be085677db906cdde4eb9faedbd9f15012ec2697f061a3759493931e30ed6517abad9ccf48d0ddf7dbce514bc9a93109b1aa24245860a8ffc1b11eae23715e13e038b6931252c3901da620e21c9ac6e21213abaf2b537f25063d01111fd70c036"
+ }, {
+ "name": "ecslb.sjtu.edu.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 6,
+ "ns": "ns2.ecslb.sjtu.edu.cn"
+ }, {
+ "name": "ecslb.sjtu.edu.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 6,
+ "ns": "ns1.ecslb.sjtu.edu.cn"
+ }, {
+ "name": "7I0KROKLLTJLR4CGSFC8QGP14OMI23SO.sjtu.edu.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 33,
+ "hash_algo": 1,
+ "flags": 0,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "55b9b62d",
+ "hash_len": 20,
+ "next_hash_owner": "3cc34b1be941f6b2a53852cba0caf09563cb8e92",
+ "maps_len": 3,
+ "type_bit_maps": "000120"
+ }, {
+ "name": "7I0KROKLLTJLR4CGSFC8QGP14OMI23SO.sjtu.edu.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 159,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 4,
+ "original_ttl": 3600,
+ "sig_expiration": 1638330241,
+ "sig_inception": 1635738241,
+ "key_tag": 9528,
+ "signer_name": "sjtu.edu.cn",
+ "signature_len": 128,
+ "signature": "6ed19d8534a2b310399919daaac8158621c0c32f0f6c1e2c5da79cce888e789e749614392bada04b60f4580bc478e2d25cc0654ddc37b605f6972ae41166bea2dc01a928018b3a5d417635e0e5e12f4c9e1232c694c857c80f37825002f3f7557d7e20d7f1c2ab33d56b8b2cad17b72c0aa8c05fb19a6809e20c09d20be31cde"
+ }, {
+ "name": "ns1.ecslb.sjtu.edu.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 4,
+ "a": "202.120.2.172"
+ }, {
+ "name": "ns2.ecslb.sjtu.edu.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 4,
+ "a": "202.112.26.74"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_180"
}, {
"Tuple4": "2001:da8:2008::10.7529>2001:503:231d::2:30.53",
"dns_qname": "lps.jd.com",
@@ -17416,7 +20980,283 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_157"
+ "name": "DNS_RESULT_181"
+ }, {
+ "Tuple4": "2604:a880:800:10::965:a001.46591>2001:dd9::44.53",
+ "dns_qname": "ns2-05.azure-dns-1.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns4-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns1-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns2-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns3-04.azure-dns-1.cn"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "D0956PQVAO5RRA5GB8OMUO7HDOKDE07V.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "68fa06ab625494e0c43293be5f5d96ed98b8ddf9",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "D0956PQVAO5RRA5GB8OMUO7HDOKDE07V.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1638186728,
+ "sig_inception": 1635591128,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "51a57dd4a1ab3738cb9d75ecf941fa98f4f13d903c4d8b10464171d5bc8eac038ee65101793f51fd76f446b4d0e760ea7749e9b68b80d94373ba509a7c6f382b20e438f06e82a93210b1c31c0d0af63ddb5cb06804146aef2f4a71679e3c6fd60864e1597a22abeecefecac1aecfd087e4e76c8a55bcc7442f2becfddb5895d4"
+ }, {
+ "name": "ns1-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.192.4"
+ }, {
+ "name": "ns2-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.194.4"
+ }, {
+ "name": "ns3-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.196.4"
+ }, {
+ "name": "ns4-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.198.4"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_182"
+ }, {
+ "Tuple4": "2604:a880:800:10::965:a001.49081>2001:dd9::44.53",
+ "dns_qname": "ns4-05.azure-dns-1.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns2-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns1-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns4-04.azure-dns-1.cn"
+ }, {
+ "name": "azure-dns-1.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 9,
+ "ns": "ns3-04.azure-dns-1.cn"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "D0956PQVAO5RRA5GB8OMUO7HDOKDE07V.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "68fa06ab625494e0c43293be5f5d96ed98b8ddf9",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "D0956PQVAO5RRA5GB8OMUO7HDOKDE07V.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1638186728,
+ "sig_inception": 1635591128,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "51a57dd4a1ab3738cb9d75ecf941fa98f4f13d903c4d8b10464171d5bc8eac038ee65101793f51fd76f446b4d0e760ea7749e9b68b80d94373ba509a7c6f382b20e438f06e82a93210b1c31c0d0af63ddb5cb06804146aef2f4a71679e3c6fd60864e1597a22abeecefecac1aecfd087e4e76c8a55bcc7442f2becfddb5895d4"
+ }, {
+ "name": "ns1-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.192.4"
+ }, {
+ "name": "ns2-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.194.4"
+ }, {
+ "name": "ns3-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.196.4"
+ }, {
+ "name": "ns4-04.azure-dns-1.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "40.73.198.4"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_183"
}, {
"Tuple4": "2001:da8:2008::10.56211>2001:503:231d::2:30.53",
"dns_qname": "lps.jd.com.gslb.qianxun.com",
@@ -17552,7 +21392,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_158"
+ "name": "DNS_RESULT_184"
}, {
"Tuple4": "180.241.233.8.32261>103.137.60.44.53",
"dns_qname": "img.likevideo.cn",
@@ -17648,7 +21488,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_159"
+ "name": "DNS_RESULT_185"
}, {
"Tuple4": "166.111.8.25.45572>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -17772,7 +21612,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_160"
+ "name": "DNS_RESULT_186"
}, {
"Tuple4": "166.111.8.25.7532>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -17896,7 +21736,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_161"
+ "name": "DNS_RESULT_187"
}, {
"Tuple4": "166.111.8.25.28849>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18020,7 +21860,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_162"
+ "name": "DNS_RESULT_188"
}, {
"Tuple4": "166.111.8.25.18033>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18144,7 +21984,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_163"
+ "name": "DNS_RESULT_189"
}, {
"Tuple4": "166.111.8.25.22513>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18268,7 +22108,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_164"
+ "name": "DNS_RESULT_190"
}, {
"Tuple4": "166.111.8.25.62552>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18392,7 +22232,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_165"
+ "name": "DNS_RESULT_191"
}, {
"Tuple4": "166.111.8.25.30327>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18516,7 +22356,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_166"
+ "name": "DNS_RESULT_192"
}, {
"Tuple4": "166.111.8.25.47451>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18640,7 +22480,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_167"
+ "name": "DNS_RESULT_193"
}, {
"Tuple4": "166.111.8.25.15638>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18764,7 +22604,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_168"
+ "name": "DNS_RESULT_194"
}, {
"Tuple4": "166.111.8.25.11809>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -18888,7 +22728,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_169"
+ "name": "DNS_RESULT_195"
}, {
"Tuple4": "166.111.8.25.36896>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -19012,7 +22852,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_170"
+ "name": "DNS_RESULT_196"
}, {
"Tuple4": "166.111.8.25.26419>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -19136,7 +22976,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_171"
+ "name": "DNS_RESULT_197"
}, {
"Tuple4": "166.111.8.25.49106>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -19260,7 +23100,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_172"
+ "name": "DNS_RESULT_198"
}, {
"Tuple4": "202.120.127.220.2205>185.24.64.64.53",
"dns_qname": "ns1.cepc.coop",
@@ -19338,7 +23178,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_173"
+ "name": "DNS_RESULT_199"
}, {
"Tuple4": "202.120.127.220.4268>185.24.64.64.53",
"dns_qname": "ns2.cepc.coop",
@@ -19416,7 +23256,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_174"
+ "name": "DNS_RESULT_200"
}, {
"Tuple4": "2001:da8:8006:1::6667.53772>2001:500:856e::30.53",
"dns_qname": "stackpathcdn.com",
@@ -19525,7 +23365,227 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_175"
+ "name": "DNS_RESULT_201"
+ }, {
+ "Tuple4": "202.114.200.252.26767>195.219.8.90.53",
+ "dns_qname": "dns-noc.zjhzptt.net.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "zjhzptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 5,
+ "ns": "ns.zjhzptt.net.cn"
+ }, {
+ "name": "zjhzptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 13,
+ "ns": "ns.zjnbptt.net.cn"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "2558b9ad0285e72d248482101eb9decfae96d180",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636593513,
+ "sig_inception": 1634000065,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "24ffbc24e5cbb4b7d5bf964953d9d0bf94d8d4dd521979668916e2bebb893ec32760a5216350ba4a02009ca09b3aac2194cd9df0de13e8d071787661ac765a087e3fd2ebca21ec633490f82d9ef3785c9f80495f6e20a783f5221a39cc25a8a3448211cac1e6d868ddc7e2066b2bda3c47aa0268ca75353b4d75315ef264b816"
+ }, {
+ "name": "8E5B6CH35PJJ38GMGEU31B3LFCCUQ4BD.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "55faa70081372403f5b1dea4d7a70bcfe91eed3c",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "8E5B6CH35PJJ38GMGEU31B3LFCCUQ4BD.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1638277242,
+ "sig_inception": 1635682401,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "4de96b2e5c59767a4bdd217e7a63686ebead70313495878dba79d2df9e59ffcbbf9745355de42895a44ff79e1c2afce89b152d1f4fe1e74e475798022f9ed72a9f65ec5ba0ae3d9962c69845d453a0875be9dc12a61cbba714dfe0bc86613926ffae233712096d35431cfe42cb15ea248ff3c94b4dee7a270d8d961ca3c8f31c"
+ }, {
+ "name": "ns.zjhzptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.96.68"
+ }, {
+ "name": "ns.zjnbptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.104.18"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_202"
+ }, {
+ "Tuple4": "202.114.200.252.41038>195.219.8.90.53",
+ "dns_qname": "dns-noc.zjhzptt.net.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "zjhzptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 5,
+ "ns": "ns.zjhzptt.net.cn"
+ }, {
+ "name": "zjhzptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 13,
+ "ns": "ns.zjnbptt.net.cn"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "2558b9ad0285e72d248482101eb9decfae96d180",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636593513,
+ "sig_inception": 1634000065,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "24ffbc24e5cbb4b7d5bf964953d9d0bf94d8d4dd521979668916e2bebb893ec32760a5216350ba4a02009ca09b3aac2194cd9df0de13e8d071787661ac765a087e3fd2ebca21ec633490f82d9ef3785c9f80495f6e20a783f5221a39cc25a8a3448211cac1e6d868ddc7e2066b2bda3c47aa0268ca75353b4d75315ef264b816"
+ }, {
+ "name": "8E5B6CH35PJJ38GMGEU31B3LFCCUQ4BD.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "55faa70081372403f5b1dea4d7a70bcfe91eed3c",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "8E5B6CH35PJJ38GMGEU31B3LFCCUQ4BD.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1638277242,
+ "sig_inception": 1635682401,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "4de96b2e5c59767a4bdd217e7a63686ebead70313495878dba79d2df9e59ffcbbf9745355de42895a44ff79e1c2afce89b152d1f4fe1e74e475798022f9ed72a9f65ec5ba0ae3d9962c69845d453a0875be9dc12a61cbba714dfe0bc86613926ffae233712096d35431cfe42cb15ea248ff3c94b4dee7a270d8d961ca3c8f31c"
+ }, {
+ "name": "ns.zjhzptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.96.68"
+ }, {
+ "name": "ns.zjnbptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.104.18"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_203"
}, {
"Tuple4": "2001:da8:2018::43.34280>2001:503:a83e::2:30.53",
"dns_qname": "ins-e9hlhzhp.ias.tencent-cloud.net",
@@ -19610,7 +23670,323 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_176"
+ "name": "DNS_RESULT_204"
+ }, {
+ "Tuple4": "202.114.200.252.57333>195.219.8.90.53",
+ "dns_qname": "zone2.hb.cnc.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "cnc.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 13,
+ "ns": "ns.bta.net.cn"
+ }, {
+ "name": "cnc.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 6,
+ "ns": "ns2.bta.net.cn"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "1eac123f4313c2c9bfb9434732ad9dbe4ab93ab8",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3QDAQA092EE5BELP64A74EBNB8J53D7E.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636930523,
+ "sig_inception": 1634338246,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4a377a2d6125c82d569a3784cfc2cb7852961631cf57ad4d6ad8e3a06c108c69570e09cc924d50e1b02e6fba26013b29f852721e52e6fe748a3779870d4e2b514f9354b59278b957afaa9720fd8bbebecae9a6b11c4f4aa423459936857b8953a0559939918b0e623ed219209cb4044bbe387c193646e9367ce936a11c191c95"
+ }, {
+ "name": "6C3E5TNMD2PU7FJCOI1INAS5P5G2C671.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "3357fe5411354ad4a3b20a532534705c2bb60f67",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "6C3E5TNMD2PU7FJCOI1INAS5P5G2C671.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 150,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 21600,
+ "sig_expiration": 1636931643,
+ "sig_inception": 1634337918,
+ "key_tag": 38388,
+ "signer_name": "cn",
+ "signature_len": 128,
+ "signature": "4bea4db730c8d47421e667ad9938fd7359c45a3c78188f99af6ff6bff87c9c0bd6e13b2f28b6f18894561dc05a72f1b3a45792db181acbe64374709463deae448baadbfd20d2e8439736e1d48218e9d1cdae72b40ee7d6d4837fda8e46a5117fda2fca2b9fc5da40d9c6786f3264c042a486bb68c1ec928bd8dc73db8dcd8f8f"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_205"
+ }, {
+ "Tuple4": "202.114.200.252.63706>195.219.8.90.53",
+ "dns_qname": "ns.zjnbptt.net.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "zjnbptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 2,
+ "ns": "ns.zjnbptt.net.cn"
+ }, {
+ "name": "zjnbptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 13,
+ "ns": "ns.zjhzptt.net.cn"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "2558b9ad0285e72d248482101eb9decfae96d180",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636593513,
+ "sig_inception": 1634000065,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "24ffbc24e5cbb4b7d5bf964953d9d0bf94d8d4dd521979668916e2bebb893ec32760a5216350ba4a02009ca09b3aac2194cd9df0de13e8d071787661ac765a087e3fd2ebca21ec633490f82d9ef3785c9f80495f6e20a783f5221a39cc25a8a3448211cac1e6d868ddc7e2066b2bda3c47aa0268ca75353b4d75315ef264b816"
+ }, {
+ "name": "Q0OPTLIKU1TFCK35IK9K9E7H7H3PMFF5.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "d74c17a9816b36678115508e5ba81abcaf92983f",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "Q0OPTLIKU1TFCK35IK9K9E7H7H3PMFF5.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637475610,
+ "sig_inception": 1634882756,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "2c4561b47edfb31236ecada3470cb704002ef9fc2bd517ba331431fcbd903445e91ab31f3da47df8da367933eed41d7d846a5012aa204870b43de857bc2a157e20839c34df0da335281b9f7630953a1b7077ac6279655da6f459d4ac24b69770565a17248b888a2485f90d01afd5273c4bf5a34fdcb4d9b7baf99a1a0427ed72"
+ }, {
+ "name": "ns.zjhzptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.96.68"
+ }, {
+ "name": "ns.zjnbptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.104.18"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_206"
+ }, {
+ "Tuple4": "202.114.200.252.32785>195.219.8.90.53",
+ "dns_qname": "ns.zjnbptt.net.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "zjnbptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 13,
+ "ns": "ns.zjhzptt.net.cn"
+ }, {
+ "name": "zjnbptt.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 2,
+ "ns": "ns.zjnbptt.net.cn"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "2558b9ad0285e72d248482101eb9decfae96d180",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636593513,
+ "sig_inception": 1634000065,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "24ffbc24e5cbb4b7d5bf964953d9d0bf94d8d4dd521979668916e2bebb893ec32760a5216350ba4a02009ca09b3aac2194cd9df0de13e8d071787661ac765a087e3fd2ebca21ec633490f82d9ef3785c9f80495f6e20a783f5221a39cc25a8a3448211cac1e6d868ddc7e2066b2bda3c47aa0268ca75353b4d75315ef264b816"
+ }, {
+ "name": "Q0OPTLIKU1TFCK35IK9K9E7H7H3PMFF5.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "d74c17a9816b36678115508e5ba81abcaf92983f",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "Q0OPTLIKU1TFCK35IK9K9E7H7H3PMFF5.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637475610,
+ "sig_inception": 1634882756,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "2c4561b47edfb31236ecada3470cb704002ef9fc2bd517ba331431fcbd903445e91ab31f3da47df8da367933eed41d7d846a5012aa204870b43de857bc2a157e20839c34df0da335281b9f7630953a1b7077ac6279655da6f459d4ac24b69770565a17248b888a2485f90d01afd5273c4bf5a34fdcb4d9b7baf99a1a0427ed72"
+ }, {
+ "name": "ns.zjnbptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.104.18"
+ }, {
+ "name": "ns.zjhzptt.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.96.68"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_207"
}, {
"Tuple4": "2620:171:f9:f0::239.37063>2001:dd9::44.53",
"dns_qname": "jetway-com.cn",
@@ -19752,7 +24128,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_177"
+ "name": "DNS_RESULT_208"
}, {
"Tuple4": "210.35.128.1.51360>192.42.93.30.53",
"dns_qname": "tlc288.com",
@@ -19861,7 +24237,283 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_178"
+ "name": "DNS_RESULT_209"
+ }, {
+ "Tuple4": "202.114.200.252.40349>195.219.8.90.53",
+ "dns_qname": "ns.bta.net.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 8,
+ "ns": "ddns2.bta.net.cn"
+ }, {
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 7,
+ "ns": "ddns.bta.net.cn"
+ }, {
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 6,
+ "ns": "ns2.bta.net.cn"
+ }, {
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 2,
+ "ns": "ns.bta.net.cn"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "2558b9ad0285e72d248482101eb9decfae96d180",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636593513,
+ "sig_inception": 1634000065,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "24ffbc24e5cbb4b7d5bf964953d9d0bf94d8d4dd521979668916e2bebb893ec32760a5216350ba4a02009ca09b3aac2194cd9df0de13e8d071787661ac765a087e3fd2ebca21ec633490f82d9ef3785c9f80495f6e20a783f5221a39cc25a8a3448211cac1e6d868ddc7e2066b2bda3c47aa0268ca75353b4d75315ef264b816"
+ }, {
+ "name": "HRL63F6UF0LKRNFD2RP6OSPHOEOCOBCD.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "a1e052693befdd69ede289f269e92c416fbdb4ad",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "HRL63F6UF0LKRNFD2RP6OSPHOEOCOBCD.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636469837,
+ "sig_inception": 1633876011,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "4d6678fc4fcf5854899970398bf205d3b1b29ab5a4f424ed65188bf8f6d387b8edcf7355f14829a8421702e990ab6555d0ba3c272dcfffebff2ae6c4ba45851e2ea6804d98390ba43cff0c35c7d024e803886cbc80f1916ff5b2a7eb4dc5683e99f17a4ba00976cffd82899e1ef87ddd63d0f1eab715e6e5413e6744c075e623"
+ }, {
+ "name": "ns.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.0.133"
+ }, {
+ "name": "ns2.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.106.196.28"
+ }, {
+ "name": "ddns.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.106.196.233"
+ }, {
+ "name": "ddns2.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.106.196.234"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_210"
+ }, {
+ "Tuple4": "202.114.200.252.63791>195.219.8.90.53",
+ "dns_qname": "ns2.bta.net.cn",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 2,
+ "ns": "ns2.bta.net.cn"
+ }, {
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 5,
+ "ns": "ns.bta.net.cn"
+ }, {
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 8,
+ "ns": "ddns2.bta.net.cn"
+ }, {
+ "name": "bta.net.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 7,
+ "ns": "ddns.bta.net.cn"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "2558b9ad0285e72d248482101eb9decfae96d180",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "3J576JKI7RT89LMI97LSA16MTPKHUCUJ.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636593513,
+ "sig_inception": 1634000065,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "24ffbc24e5cbb4b7d5bf964953d9d0bf94d8d4dd521979668916e2bebb893ec32760a5216350ba4a02009ca09b3aac2194cd9df0de13e8d071787661ac765a087e3fd2ebca21ec633490f82d9ef3785c9f80495f6e20a783f5221a39cc25a8a3448211cac1e6d868ddc7e2066b2bda3c47aa0268ca75353b4d75315ef264b816"
+ }, {
+ "name": "HRL63F6UF0LKRNFD2RP6OSPHOEOCOBCD.net.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "a1e052693befdd69ede289f269e92c416fbdb4ad",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "HRL63F6UF0LKRNFD2RP6OSPHOEOCOBCD.net.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1636469837,
+ "sig_inception": 1633876011,
+ "key_tag": 54306,
+ "signer_name": "net.cn",
+ "signature_len": 128,
+ "signature": "4d6678fc4fcf5854899970398bf205d3b1b29ab5a4f424ed65188bf8f6d387b8edcf7355f14829a8421702e990ab6555d0ba3c272dcfffebff2ae6c4ba45851e2ea6804d98390ba43cff0c35c7d024e803886cbc80f1916ff5b2a7eb4dc5683e99f17a4ba00976cffd82899e1ef87ddd63d0f1eab715e6e5413e6744c075e623"
+ }, {
+ "name": "ns2.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.106.196.28"
+ }, {
+ "name": "ns.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.96.0.133"
+ }, {
+ "name": "ddns.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.106.196.233"
+ }, {
+ "name": "ddns2.bta.net.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 4,
+ "a": "202.106.196.234"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_211"
}, {
"Tuple4": "2001:da8:2018::43.11602>2001:503:a83e::2:30.53",
"dns_qname": "meeting.mid.tdnsv6.com",
@@ -19960,7 +24612,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_179"
+ "name": "DNS_RESULT_212"
}, {
"Tuple4": "139.59.107.152.53571>202.112.0.44.53",
"dns_qname": "www.tcqcfw.cn",
@@ -20056,7 +24708,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_180"
+ "name": "DNS_RESULT_213"
}, {
"Tuple4": "2001:da8:2000:2193::43.64172>2001:503:231d::2:30.53",
"dns_qname": "pornhub.com",
@@ -20165,7 +24817,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_181"
+ "name": "DNS_RESULT_214"
}, {
"Tuple4": "2001:da8:2018::43.32435>2001:503:a83e::2:30.53",
"dns_qname": "teams.events.data.microsoft.com",
@@ -20250,7 +24902,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_182"
+ "name": "DNS_RESULT_215"
}, {
"Tuple4": "210.36.64.33.50686>192.5.6.30.53",
"dns_qname": "u3.huatu.com",
@@ -20470,7 +25122,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_183"
+ "name": "DNS_RESULT_216"
}, {
"Tuple4": "166.111.8.25.39567>194.0.25.24.53",
"dns_qname": "imap.ziggo.nl",
@@ -20573,7 +25225,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_184"
+ "name": "DNS_RESULT_217"
}, {
"Tuple4": "2620:0:cca::70.39664>2001:dd9::44.53",
"dns_qname": "big1.f5.lenovo.com.cn",
@@ -20697,7 +25349,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_185"
+ "name": "DNS_RESULT_218"
}, {
"Tuple4": "210.36.64.33.30880>192.5.6.30.53",
"dns_qname": "tt.huatu.com",
@@ -20917,7 +25569,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_186"
+ "name": "DNS_RESULT_219"
}, {
"Tuple4": "2001:da8:2000:2193::43.57990>2001:503:d2d::30.53",
"dns_qname": "pornhub.com",
@@ -21026,7 +25678,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_187"
+ "name": "DNS_RESULT_220"
}, {
"Tuple4": "2620:0:cca::72.44351>2001:dd9::44.53",
"dns_qname": "big2.f5.lenovo.com.cn",
@@ -21150,7 +25802,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_188"
+ "name": "DNS_RESULT_221"
}, {
"Tuple4": "139.59.107.152.18444>202.112.0.44.53",
"dns_qname": "113x6d.cn",
@@ -21246,7 +25898,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_189"
+ "name": "DNS_RESULT_222"
}, {
"Tuple4": "139.59.107.152.51867>202.112.0.44.53",
"dns_qname": "113x6d.cn",
@@ -21342,7 +25994,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_190"
+ "name": "DNS_RESULT_223"
}, {
"Tuple4": "2620:171:f9:f0::239.49774>2001:dd9::44.53",
"dns_qname": "fzw.cn",
@@ -21466,7 +26118,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_191"
+ "name": "DNS_RESULT_224"
}, {
"Tuple4": "166.111.8.25.60312>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -21590,7 +26242,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_192"
+ "name": "DNS_RESULT_225"
}, {
"Tuple4": "166.111.8.25.25578>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -21714,7 +26366,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_193"
+ "name": "DNS_RESULT_226"
}, {
"Tuple4": "166.111.8.25.39712>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -21838,7 +26490,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_194"
+ "name": "DNS_RESULT_227"
}, {
"Tuple4": "195.25.5.33.34708>202.112.0.13.53",
"dns_qname": "NS.FUDAN.EDU.CN",
@@ -21938,7 +26590,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_195"
+ "name": "DNS_RESULT_228"
}, {
"Tuple4": "166.111.8.25.55754>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -22062,7 +26714,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_196"
+ "name": "DNS_RESULT_229"
}, {
"Tuple4": "166.111.8.25.39154>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -22186,7 +26838,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_197"
+ "name": "DNS_RESULT_230"
}, {
"Tuple4": "2620:171:f9:f0::239.10811>2001:dd9::44.53",
"dns_qname": "legaldaily.cn",
@@ -22310,7 +26962,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_198"
+ "name": "DNS_RESULT_231"
}, {
"Tuple4": "166.111.8.25.30053>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -22434,7 +27086,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_199"
+ "name": "DNS_RESULT_232"
}, {
"Tuple4": "166.111.8.25.27610>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -22558,7 +27210,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_200"
+ "name": "DNS_RESULT_233"
}, {
"Tuple4": "166.111.8.25.53385>193.232.142.17.53",
"dns_qname": "izmozaiki.ru",
@@ -22682,7 +27334,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_201"
+ "name": "DNS_RESULT_234"
}, {
"Tuple4": "2620:0:cca::70.34592>2001:dd9::44.53",
"dns_qname": "big2.f5.lenovo.com.cn",
@@ -22806,7 +27458,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_202"
+ "name": "DNS_RESULT_235"
}, {
"Tuple4": "2001:da8:2018::43.44397>2001:503:a83e::2:30.53",
"dns_qname": "beacon.tingyun.com",
@@ -22891,7 +27543,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_203"
+ "name": "DNS_RESULT_236"
}, {
"Tuple4": "180.251.22.20.29839>202.112.26.43.53",
"dns_qname": "ntp.sjtu.edu.cn",
@@ -22993,7 +27645,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_204"
+ "name": "DNS_RESULT_237"
}, {
"Tuple4": "2001:da8:2018::43.10205>2001:503:a83e::2:30.53",
"dns_qname": "open.taou.com",
@@ -23078,7 +27730,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_205"
+ "name": "DNS_RESULT_238"
}, {
"Tuple4": "211.81.20.201.50962>192.33.14.30.53",
"dns_qname": "dns1.dreye.com",
@@ -23186,7 +27838,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_206"
+ "name": "DNS_RESULT_239"
}, {
"Tuple4": "211.81.20.201.33684>192.33.14.30.53",
"dns_qname": "dns2.dreye.com",
@@ -23294,7 +27946,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_207"
+ "name": "DNS_RESULT_240"
}, {
"Tuple4": "211.81.20.201.36460>192.33.14.30.53",
"dns_qname": "dns1.dreye.com",
@@ -23402,7 +28054,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_208"
+ "name": "DNS_RESULT_241"
}, {
"Tuple4": "2804:858:bac1::bac1:54.39384>2001:dd9::44.53",
"dns_qname": "tenda.com.cn",
@@ -23498,7 +28150,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_209"
+ "name": "DNS_RESULT_242"
}, {
"Tuple4": "2001:da8:2008::10.19202>2001:503:231d::2:30.53",
"dns_qname": "kangaroo.alicdn.com",
@@ -23662,7 +28314,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_210"
+ "name": "DNS_RESULT_243"
}, {
"Tuple4": "2001:da8:2018::43.14543>2001:503:a83e::2:30.53",
"dns_qname": "static.nfapp.southcn.com",
@@ -23747,7 +28399,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_211"
+ "name": "DNS_RESULT_244"
}, {
"Tuple4": "2001:da8:2018::43.9454>2001:503:a83e::2:30.53",
"dns_qname": "gateway.fe.apple-dns.net",
@@ -23839,7 +28491,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_212"
+ "name": "DNS_RESULT_245"
}, {
"Tuple4": "2001:da8:2018::43.34163>2001:503:a83e::2:30.53",
"dns_qname": "translate.googleapis.com",
@@ -23931,7 +28583,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_213"
+ "name": "DNS_RESULT_246"
}, {
"Tuple4": "68.114.47.105.25833>103.137.60.44.53",
"dns_qname": "ns-px.online.sh.cn",
@@ -24041,7 +28693,149 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_214"
+ "name": "DNS_RESULT_247"
+ }, {
+ "Tuple4": "101.4.126.219.58827>156.154.127.65.53",
+ "dns_qname": "m25.apgapmz.biz",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "biz",
+ "type": 6,
+ "class": 1,
+ "ttl": 900,
+ "rdlength": 50,
+ "mname": "a.gtld.biz",
+ "rname": "admin.tldns.godaddy",
+ "serial": 1635749528,
+ "refresh": 1800,
+ "retry": 300,
+ "cname": 604800,
+ "minimum": 1800
+ }, {
+ "name": "biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 900,
+ "rdlength": 183,
+ "type_covered": 6,
+ "algo": 8,
+ "labels": 1,
+ "original_ttl": 900,
+ "sig_expiration": 1638341618,
+ "sig_inception": 1635746018,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "dd0cdd4bb69faf939c1745509b2b4769f1aff4d7d2ee3a27b3dd88ec0cbdf9a724de8260cf74dab59c0fe2057ff41429972d840d7ec9884becc63296f77e2f4abf55d53960d40785610cb6506a3f2433f9da9c27af2c5cf9cca8dcac1fea65bb7afcdeb968193549082f0a3f95387d8cbe0c9f5292ae9aeb0ad57382f8c51115c67721960e346fe5169e92d3af56045912248681a10de4eaa6b1ed4b7e5abff7"
+ }, {
+ "name": "9ivsa0gimv18nm4si1tkf2r78navcdut.biz",
+ "type": 50,
+ "class": 1,
+ "ttl": 1800,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 4,
+ "salt_value": "e3c15f5f",
+ "hash_len": 20,
+ "next_hash_owner": "4cc0fe2cb10889586f958c61b06dacc837d73c37",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "9ivsa0gimv18nm4si1tkf2r78navcdut.biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 1800,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 1800,
+ "sig_expiration": 1637803195,
+ "sig_inception": 1635210901,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "1f5b69f935dbd978fbc124e867460f957e3862926a827c4a9a307ec7dbe058f50aaab0a322eb4f231a2fd7c1986f55133b49a9e9d89d296e95913429fa21c3e87e3191a1cd715db898a08b6e40a2ef31e283e74ba706998514d28e6a9fe042c9c9e931f24507a41dba7d4f05e1280b07075585f228b2940e4ee0652ec823b2455e29a2299274a6e045ef6f2b9299608a65d94a9d8565c1ef092acb9f4968357f"
+ }, {
+ "name": "m6455g4be6va70k56v4tfu081e30bs3h.biz",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 4,
+ "salt_value": "e3c15f5f",
+ "hash_len": 20,
+ "next_hash_owner": "b1888afcb6f65b9f082b48bdfe17700ee4ad68a4",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "m6455g4be6va70k56v4tfu081e30bs3h.biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1638203827,
+ "sig_inception": 1635608751,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "1edd0d1cca972ddd44c9eb559a8522833da4169da7d4f77ece946fdc2a486089581ea65d2c5e058d916c65f9d5e3c8943d1478d053fd82ad55c7a1bc3466f4318c920db1c9811d6de1d0c2e50de09b600ae5b596d172f4432c2176bd955f7dd4c581a6830f978a244247759201b39229540f607093b5633085296f83233be9ad8906fdf21e8decb0518b15a4296f8f12780a2781a5cd990e03f85ebc9b067dc7"
+ }, {
+ "name": "59t50n8fq02hkljabjgs271g6q7j00ll.biz",
+ "type": 50,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 4,
+ "salt_value": "e3c15f5f",
+ "hash_len": 20,
+ "next_hash_owner": "2a7e032b51226b1cc4cd6d02daf24baa7a111f3d",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "59t50n8fq02hkljabjgs271g6q7j00ll.biz",
+ "type": 46,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 183,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 86400,
+ "sig_expiration": 1637930769,
+ "sig_inception": 1635338028,
+ "key_tag": 7680,
+ "signer_name": "biz",
+ "signature_len": 160,
+ "signature": "76525c6d442b2fe73b5adb7ca6b43b3cc8e19ec1fea1d89f9ac52d442682debdb94e95e0823a3cf737dc8829d55510d952166d09e23205daba888db26566b2041fbb5a29230f2e33785e7d209db7a38bbdf66c1ab149beb7049e5dc3ea2cc7a4be8f9055b425ac48522a39687920acd376189d05d60572f472a9561050e76bb7ccb373601a9666ded84cad5d040bd1b17f61504087b18ab48dc8cbabba926a25"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 28
+ }]
+ },
+ "name": "DNS_RESULT_248"
}, {
"Tuple4": "2001:da8:2018::43.22120>2001:503:a83e::2:30.53",
"dns_qname": "na61-na62.wagbridge.alibaba.taobao.com.gds.alibabadns.com",
@@ -24126,7 +28920,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_215"
+ "name": "DNS_RESULT_249"
}, {
"Tuple4": "2001:da8:2018::43.56847>2001:503:a83e::2:30.53",
"dns_qname": "post.ksosoft.com",
@@ -24225,7 +29019,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_216"
+ "name": "DNS_RESULT_250"
}, {
"Tuple4": "2001:da8:2018::43.18613>2001:503:a83e::2:30.53",
"dns_qname": "amdc.m.taobao.com",
@@ -24324,7 +29118,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_217"
+ "name": "DNS_RESULT_251"
}, {
"Tuple4": "2001:da8:2018::43.8060>2001:503:a83e::2:30.53",
"dns_qname": "amdc.m.taobao.com",
@@ -24423,7 +29217,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_218"
+ "name": "DNS_RESULT_252"
}, {
"Tuple4": "2001:240:bb41:8022::1:92.26930>2001:da8:1:100::44.53",
"dns_qname": "jrj.com.cn",
@@ -24533,7 +29327,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_219"
+ "name": "DNS_RESULT_253"
}, {
"Tuple4": "166.111.8.24.22844>194.0.25.24.53",
"dns_qname": "sixon.nl",
@@ -24629,7 +29423,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_220"
+ "name": "DNS_RESULT_254"
}, {
"Tuple4": "202.120.2.169.17922>192.43.172.30.53",
"dns_qname": "dictall.com",
@@ -24738,7 +29532,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_221"
+ "name": "DNS_RESULT_255"
}, {
"Tuple4": "191.243.199.72.19793>103.137.60.44.53",
"dns_qname": "gov.cn",
@@ -24818,7 +29612,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_222"
+ "name": "DNS_RESULT_256"
}, {
"Tuple4": "203.80.81.132.6780>103.137.60.203.53",
"dns_qname": "hnucm.edu.cn",
@@ -24911,7 +29705,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_223"
+ "name": "DNS_RESULT_257"
}, {
"Tuple4": "139.59.107.152.3567>202.112.0.44.53",
"dns_qname": "www.h4wiit.cn",
@@ -25007,7 +29801,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_224"
+ "name": "DNS_RESULT_258"
}, {
"Tuple4": "139.59.107.152.17578>202.112.0.44.53",
"dns_qname": "www.h4wiit.cn",
@@ -25103,7 +29897,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_225"
+ "name": "DNS_RESULT_259"
}, {
"Tuple4": "118.98.111.152.20879>103.137.60.44.53",
"dns_qname": "images.7723.cn",
@@ -25199,7 +29993,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_226"
+ "name": "DNS_RESULT_260"
}, {
"Tuple4": "2001:250:c06:30::6.15493>2001:503:231d::2:30.53",
"dns_qname": "www.yhdm58.com",
@@ -25384,7 +30178,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_227"
+ "name": "DNS_RESULT_261"
}, {
"Tuple4": "2001:250:c06:30::6.61486>2001:503:231d::2:30.53",
"dns_qname": "www.kakadongman.com",
@@ -25569,7 +30363,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_228"
+ "name": "DNS_RESULT_262"
}, {
"Tuple4": "2001:da8:2018::43.61412>2001:503:a83e::2:30.53",
"dns_qname": "webcast5-core-c-lq.amemv.com.c.dsa.cdnbuild.net",
@@ -25654,7 +30448,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_229"
+ "name": "DNS_RESULT_263"
}, {
"Tuple4": "2620:0:cca::72.15014>2001:dd9::44.53",
"dns_qname": "big1.f5.lenovo.com.cn",
@@ -25778,7 +30572,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_230"
+ "name": "DNS_RESULT_264"
}, {
"Tuple4": "2402:f000:1:801::8:29.54106>2001:67c:e0::9.53",
"dns_qname": "1.206.195.221.in-addr.arpa",
@@ -25843,7 +30637,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_231"
+ "name": "DNS_RESULT_265"
}, {
"Tuple4": "2001:da8:2008::10.13914>2001:503:231d::2:30.53",
"dns_qname": "crash.xiaohongshu.com",
@@ -26070,7 +30864,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_232"
+ "name": "DNS_RESULT_266"
}, {
"Tuple4": "2001:da8:2018::43.39354>2001:503:a83e::2:30.53",
"dns_qname": "upush.qidian.com",
@@ -26155,7 +30949,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_233"
+ "name": "DNS_RESULT_267"
}, {
"Tuple4": "2001:da8:2018::43.54104>2001:503:a83e::2:30.53",
"dns_qname": "ns1.huaweicloud-dns.com",
@@ -26240,7 +31034,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_234"
+ "name": "DNS_RESULT_268"
}, {
"Tuple4": "2001:da8:2018::43.3231>2001:503:a83e::2:30.53",
"dns_qname": "tsfe.trafficmanager.net",
@@ -26332,7 +31126,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_235"
+ "name": "DNS_RESULT_269"
}, {
"Tuple4": "2001:da8:2018::43.41378>2001:503:a83e::2:30.53",
"dns_qname": "ns1.huaweicloud-dns.net",
@@ -26417,7 +31211,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_236"
+ "name": "DNS_RESULT_270"
}, {
"Tuple4": "2001:da8:2018::43.14281>2001:503:a83e::2:30.53",
"dns_qname": "ns1.huaweicloud-dns.net",
@@ -26502,7 +31296,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_237"
+ "name": "DNS_RESULT_271"
}, {
"Tuple4": "2001:da8:2018::43.29923>2001:503:a83e::2:30.53",
"dns_qname": "ns4.dnsv2.net",
@@ -26587,7 +31381,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_238"
+ "name": "DNS_RESULT_272"
}, {
"Tuple4": "139.59.107.152.23579>202.112.0.44.53",
"dns_qname": "uponxl.cn",
@@ -26683,7 +31477,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_239"
+ "name": "DNS_RESULT_273"
}, {
"Tuple4": "2001:da8:2018::43.46625>2001:503:a83e::2:30.53",
"dns_qname": "ns4.dnsv2.net",
@@ -26768,7 +31562,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_240"
+ "name": "DNS_RESULT_274"
}, {
"Tuple4": "2001:da8:2018::43.16771>2001:503:a83e::2:30.53",
"dns_qname": "aliimg.a.yximgs.com.w.kunlunhuf.com",
@@ -26860,7 +31654,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_241"
+ "name": "DNS_RESULT_275"
}, {
"Tuple4": "2001:da8:2018::43.46199>2001:503:a83e::2:30.53",
"dns_qname": "ns4.edgecastdns.net",
@@ -26959,7 +31753,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_242"
+ "name": "DNS_RESULT_276"
}, {
"Tuple4": "2001:da8:2018::43.32328>2001:503:a83e::2:30.53",
"dns_qname": "ns1.edgecastdns.net",
@@ -27058,7 +31852,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_243"
+ "name": "DNS_RESULT_277"
}, {
"Tuple4": "139.59.107.152.32290>202.112.0.44.53",
"dns_qname": "samexm.cn",
@@ -27154,7 +31948,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_244"
+ "name": "DNS_RESULT_278"
}, {
"Tuple4": "166.111.8.25.37853>194.0.25.24.53",
"dns_qname": "sixon.nl",
@@ -27250,7 +32044,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_245"
+ "name": "DNS_RESULT_279"
}, {
"Tuple4": "2001:da8:2018::43.22791>2001:503:a83e::2:30.53",
"dns_qname": "ns4.edgecastdns.net",
@@ -27349,7 +32143,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_246"
+ "name": "DNS_RESULT_280"
}, {
"Tuple4": "2001:da8:2018::43.8403>2001:503:a83e::2:30.53",
"dns_qname": "ns3.edgecastdns.net",
@@ -27448,7 +32242,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_247"
+ "name": "DNS_RESULT_281"
}, {
"Tuple4": "2804:250c:0:bac1::ccdd:3.56749>2001:250:c006::35.53",
"dns_qname": "spring.nic.edu.cn",
@@ -27528,7 +32322,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_248"
+ "name": "DNS_RESULT_282"
}, {
"Tuple4": "2001:da8:2018::43.7564>2001:503:a83e::2:30.53",
"dns_qname": "ns1.edgecastdns.net",
@@ -27627,7 +32421,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_249"
+ "name": "DNS_RESULT_283"
}, {
"Tuple4": "2001:da8:2018::43.49719>2001:503:a83e::2:30.53",
"dns_qname": "ns3.edgecastdns.net",
@@ -27726,7 +32520,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_250"
+ "name": "DNS_RESULT_284"
}, {
"Tuple4": "2001:da8:2018::43.8938>2001:503:a83e::2:30.53",
"dns_qname": "ns2.edgecastdns.net",
@@ -27825,7 +32619,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_251"
+ "name": "DNS_RESULT_285"
}, {
"Tuple4": "2001:da8:2018::43.42937>2001:503:a83e::2:30.53",
"dns_qname": "activity.hdslb.com.w.kunlungr.com",
@@ -27917,7 +32711,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_252"
+ "name": "DNS_RESULT_286"
}, {
"Tuple4": "223.239.14.36.36837>103.137.60.44.53",
"dns_qname": "load.batcloud.cn",
@@ -28013,7 +32807,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_253"
+ "name": "DNS_RESULT_287"
}, {
"Tuple4": "2001:da8:2018::43.28917>2001:503:a83e::2:30.53",
"dns_qname": "www.biztorrents.com",
@@ -28098,7 +32892,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_254"
+ "name": "DNS_RESULT_288"
}, {
"Tuple4": "2001:da8:2018::43.18044>2001:503:a83e::2:30.53",
"dns_qname": "www.biztorrents.com",
@@ -28183,7 +32977,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_255"
+ "name": "DNS_RESULT_289"
}, {
"Tuple4": "2001:da8:2018::43.27627>2001:503:a83e::2:30.53",
"dns_qname": "push-rtmp-l11.douyincdn.com.livepush.myqcloud.com",
@@ -28268,7 +33062,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_256"
+ "name": "DNS_RESULT_290"
}, {
"Tuple4": "2001:da8:2008::10.40361>2001:503:231d::2:30.53",
"dns_qname": "px.effirst.com",
@@ -28432,7 +33226,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_257"
+ "name": "DNS_RESULT_291"
}, {
"Tuple4": "2001:da8:2018::43.55700>2001:503:a83e::2:30.53",
"dns_qname": "ra01.sycdn.kuwo.cn.scc.topgslb.com",
@@ -28531,7 +33325,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_258"
+ "name": "DNS_RESULT_292"
}, {
"Tuple4": "2001:da8:2018::43.57115>2001:503:a83e::2:30.53",
"dns_qname": "a.dns.ripn.net",
@@ -28637,7 +33431,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_259"
+ "name": "DNS_RESULT_293"
}, {
"Tuple4": "2001:da8:2018::43.6097>2001:503:a83e::2:30.53",
"dns_qname": "e.dns.ripn.net",
@@ -28743,7 +33537,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_260"
+ "name": "DNS_RESULT_294"
}, {
"Tuple4": "2001:da8:2018::43.14546>2001:503:a83e::2:30.53",
"dns_qname": "b.dns.ripn.net",
@@ -28849,7 +33643,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_261"
+ "name": "DNS_RESULT_295"
}, {
"Tuple4": "2001:da8:2018::43.15207>2001:503:a83e::2:30.53",
"dns_qname": "b.dns.ripn.net",
@@ -28955,7 +33749,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_262"
+ "name": "DNS_RESULT_296"
}, {
"Tuple4": "2001:da8:2018::43.31483>2001:503:a83e::2:30.53",
"dns_qname": "f.dns.ripn.net",
@@ -29061,7 +33855,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_263"
+ "name": "DNS_RESULT_297"
}, {
"Tuple4": "2001:da8:2018::43.39013>2001:503:a83e::2:30.53",
"dns_qname": "d.dns.ripn.net",
@@ -29167,7 +33961,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_264"
+ "name": "DNS_RESULT_298"
}, {
"Tuple4": "2001:da8:2018::43.17446>2001:503:a83e::2:30.53",
"dns_qname": "e.dns.ripn.net",
@@ -29273,7 +34067,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_265"
+ "name": "DNS_RESULT_299"
}, {
"Tuple4": "2001:da8:2018::43.8455>2001:503:a83e::2:30.53",
"dns_qname": "f.dns.ripn.net",
@@ -29379,7 +34173,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_266"
+ "name": "DNS_RESULT_300"
}, {
"Tuple4": "2001:da8:2018::43.56421>2001:503:a83e::2:30.53",
"dns_qname": "photoshare-drcn-cloud-dbankcloud-cn-drcn.appacc.dbankedge.net",
@@ -29450,7 +34244,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_267"
+ "name": "DNS_RESULT_301"
}, {
"Tuple4": "2001:da8:2018::43.60757>2001:503:a83e::2:30.53",
"dns_qname": "a.dns.ripn.net",
@@ -29556,7 +34350,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_268"
+ "name": "DNS_RESULT_302"
}, {
"Tuple4": "2001:da8:2018::43.44163>2001:503:a83e::2:30.53",
"dns_qname": "pub.idqqimg.com",
@@ -29655,7 +34449,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_269"
+ "name": "DNS_RESULT_303"
}, {
"Tuple4": "2001:da8:2018::43.44168>2001:503:a83e::2:30.53",
"dns_qname": "pub.idqqimg.com",
@@ -29754,7 +34548,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_270"
+ "name": "DNS_RESULT_304"
}, {
"Tuple4": "2001:da8:2008::10.23360>2001:503:231d::2:30.53",
"dns_qname": "testflight.apple.com.edgekey.net",
@@ -30037,7 +34831,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_271"
+ "name": "DNS_RESULT_305"
}, {
"Tuple4": "69.252.41.229.56857>202.112.0.44.53",
"dns_qname": "l2m1.liqwid.cn",
@@ -30133,7 +34927,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_272"
+ "name": "DNS_RESULT_306"
}, {
"Tuple4": "2001:da8:2018::43.43745>2001:503:a83e::2:30.53",
"dns_qname": "nvkfkpsp2pyh1bj9bwcv79lsm66x0l1t.aliyundunwaf.com",
@@ -30218,7 +35012,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_273"
+ "name": "DNS_RESULT_307"
}, {
"Tuple4": "2001:da8:2018::43.49604>2001:503:a83e::2:30.53",
"dns_qname": "titan.cdnsuehprom.com",
@@ -30303,7 +35097,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_274"
+ "name": "DNS_RESULT_308"
}, {
"Tuple4": "2001:da8:2018::43.39992>2001:503:a83e::2:30.53",
"dns_qname": "ns-1629.awsdns-cn-37.net",
@@ -30402,7 +35196,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_275"
+ "name": "DNS_RESULT_309"
}, {
"Tuple4": "2001:da8:2008::10.12020>2001:503:231d::2:30.53",
"dns_qname": "40-courier.push.apple.com",
@@ -30566,7 +35360,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_276"
+ "name": "DNS_RESULT_310"
}, {
"Tuple4": "2001:da8:2018::43.32993>2001:503:a83e::2:30.53",
"dns_qname": "ns-160.awsdns-cn-10.com",
@@ -30665,7 +35459,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_277"
+ "name": "DNS_RESULT_311"
}, {
"Tuple4": "2001:da8:2018::43.19145>2001:503:a83e::2:30.53",
"dns_qname": "tongji.flash.cn.dsa.dnsv1.com",
@@ -30750,7 +35544,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_278"
+ "name": "DNS_RESULT_312"
}, {
"Tuple4": "2001:da8:2018::43.34392>2001:503:a83e::2:30.53",
"dns_qname": "ns4.gdnsdef.com",
@@ -30835,7 +35629,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_279"
+ "name": "DNS_RESULT_313"
}, {
"Tuple4": "2001:da8:2018::43.60135>2001:503:a83e::2:30.53",
"dns_qname": "ns4.gdnsdef.com",
@@ -30920,7 +35714,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_280"
+ "name": "DNS_RESULT_314"
}, {
"Tuple4": "2001:da8:2018::43.58761>2001:503:a83e::2:30.53",
"dns_qname": "ns4.gdnsec.com",
@@ -31005,7 +35799,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_281"
+ "name": "DNS_RESULT_315"
}, {
"Tuple4": "139.59.107.152.6977>202.112.0.44.53",
"dns_qname": "yapimi.cn",
@@ -31101,7 +35895,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_282"
+ "name": "DNS_RESULT_316"
}, {
"Tuple4": "139.59.107.152.53686>202.112.0.44.53",
"dns_qname": "www.opw0a0k.cn",
@@ -31197,7 +35991,223 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_283"
+ "name": "DNS_RESULT_317"
+ }, {
+ "Tuple4": "202.120.127.220.6648>185.24.64.64.53",
+ "dns_qname": "ns1.cepc.coop",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "cepc.coop",
+ "type": 2,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 2,
+ "ns": "ns1.cepc.coop"
+ }, {
+ "name": "cepc.coop",
+ "type": 2,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 6,
+ "ns": "ns2.cepc.coop"
+ }, {
+ "name": "vio232ps9sj167jocrd1i08deq3sabej.coop",
+ "type": 50,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "fce4ba4b67b5df342c628491d59ac52ebe7b95bf",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "vjibkir7mnfj8b32gi8tb6m55qv7n5dv.coop",
+ "type": 50,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "07d9245e4f7a0b13c1cb59ae393e43a5c4b5c322",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "vio232ps9sj167jocrd1i08deq3sabej.coop",
+ "type": 46,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 152,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 3600,
+ "sig_expiration": 1638107804,
+ "sig_inception": 1635545893,
+ "key_tag": 36955,
+ "signer_name": "coop",
+ "signature_len": 128,
+ "signature": "177a4b8d4e0c34ef139c3ee5cd91e848a8144ea8ea53c1c30d753f6bea967d1c11d42f9ccb9c0d184841501fc7f313056ad97ad3d35731f79cc9daca0bb16fc72aab67984d9556eeabe47f1221477d8661fe8e66c5990bb3e6c55fd36ca0f6e7c7d65d56f8b1dd679e8c721183105240a6693e629c88cbaf607725d975b9f7fc"
+ }, {
+ "name": "vjibkir7mnfj8b32gi8tb6m55qv7n5dv.coop",
+ "type": 46,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 152,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 3600,
+ "sig_expiration": 1638159508,
+ "sig_inception": 1635545893,
+ "key_tag": 36955,
+ "signer_name": "coop",
+ "signature_len": 128,
+ "signature": "73772dd1fa247c19c6d9b3d7aa19f283256652b65dad3cffe2560805c7e72c4bf873b79562bcb44be28f87f56321436994b7ced46d934c725dec2006da85f0a2bdffd99d044b6c6419044812bc6642e9002ce80eeebb5b7dbdadcc10551cb522e5eb22c125359e7823b0dd06325eca46a60047bed66befcb95c3ac598ce6fce3"
+ }, {
+ "name": "ns1.cepc.coop",
+ "type": 1,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 4,
+ "a": "74.114.159.10"
+ }, {
+ "name": "ns2.cepc.coop",
+ "type": 1,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 4,
+ "a": "74.114.159.140"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_318"
+ }, {
+ "Tuple4": "202.120.127.220.15739>185.24.64.64.53",
+ "dns_qname": "ns2.cepc.coop",
+ "dns_qtype": 1,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "cepc.coop",
+ "type": 2,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 6,
+ "ns": "ns1.cepc.coop"
+ }, {
+ "name": "cepc.coop",
+ "type": 2,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 6,
+ "ns": "ns2.cepc.coop"
+ }, {
+ "name": "vio232ps9sj167jocrd1i08deq3sabej.coop",
+ "type": 50,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 35,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "fce4ba4b67b5df342c628491d59ac52ebe7b95bf",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "vjibkir7mnfj8b32gi8tb6m55qv7n5dv.coop",
+ "type": 50,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 34,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 1,
+ "salt_len": 0,
+ "hash_len": 20,
+ "next_hash_owner": "07d9245e4f7a0b13c1cb59ae393e43a5c4b5c322",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "vio232ps9sj167jocrd1i08deq3sabej.coop",
+ "type": 46,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 152,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 3600,
+ "sig_expiration": 1638107804,
+ "sig_inception": 1635545893,
+ "key_tag": 36955,
+ "signer_name": "coop",
+ "signature_len": 128,
+ "signature": "177a4b8d4e0c34ef139c3ee5cd91e848a8144ea8ea53c1c30d753f6bea967d1c11d42f9ccb9c0d184841501fc7f313056ad97ad3d35731f79cc9daca0bb16fc72aab67984d9556eeabe47f1221477d8661fe8e66c5990bb3e6c55fd36ca0f6e7c7d65d56f8b1dd679e8c721183105240a6693e629c88cbaf607725d975b9f7fc"
+ }, {
+ "name": "vjibkir7mnfj8b32gi8tb6m55qv7n5dv.coop",
+ "type": 46,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 152,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 2,
+ "original_ttl": 3600,
+ "sig_expiration": 1638159508,
+ "sig_inception": 1635545893,
+ "key_tag": 36955,
+ "signer_name": "coop",
+ "signature_len": 128,
+ "signature": "73772dd1fa247c19c6d9b3d7aa19f283256652b65dad3cffe2560805c7e72c4bf873b79562bcb44be28f87f56321436994b7ced46d934c725dec2006da85f0a2bdffd99d044b6c6419044812bc6642e9002ce80eeebb5b7dbdadcc10551cb522e5eb22c125359e7823b0dd06325eca46a60047bed66befcb95c3ac598ce6fce3"
+ }, {
+ "name": "ns1.cepc.coop",
+ "type": 1,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 4,
+ "a": "74.114.159.10"
+ }, {
+ "name": "ns2.cepc.coop",
+ "type": 1,
+ "class": 1,
+ "ttl": 3600,
+ "rdlength": 4,
+ "a": "74.114.159.140"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_319"
}, {
"Tuple4": "139.59.107.152.49408>202.112.0.44.53",
"dns_qname": "www.opw0a0k.cn",
@@ -31293,7 +36303,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_284"
+ "name": "DNS_RESULT_320"
}, {
"Tuple4": "2620:0:cca::72.49719>2001:dd9::44.53",
"dns_qname": "big2.f5.lenovo.com.cn",
@@ -31417,7 +36427,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_285"
+ "name": "DNS_RESULT_321"
}, {
"Tuple4": "139.59.107.152.34697>202.112.0.44.53",
"dns_qname": "dsqylmy.cn",
@@ -31513,7 +36523,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_286"
+ "name": "DNS_RESULT_322"
}, {
"Tuple4": "139.59.107.152.45693>202.112.0.44.53",
"dns_qname": "ghha.cn",
@@ -31609,7 +36619,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_287"
+ "name": "DNS_RESULT_323"
}, {
"Tuple4": "139.59.107.152.16710>202.112.0.44.53",
"dns_qname": "ghha.cn",
@@ -31705,7 +36715,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_288"
+ "name": "DNS_RESULT_324"
}, {
"Tuple4": "2001:da8:2018::43.35822>2001:503:a83e::2:30.53",
"dns_qname": "error.taobao.com.danuoyi.tbcache.com",
@@ -31797,7 +36807,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_289"
+ "name": "DNS_RESULT_325"
}, {
"Tuple4": "2001:da8:2018::43.10371>2001:503:a83e::2:30.53",
"dns_qname": "ctldl.windowsupdate.com",
@@ -31882,7 +36892,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_290"
+ "name": "DNS_RESULT_326"
}, {
"Tuple4": "2001:da8:2018::43.46174>2001:503:a83e::2:30.53",
"dns_qname": "ns2.p23.dynect.net",
@@ -31988,7 +36998,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_291"
+ "name": "DNS_RESULT_327"
}, {
"Tuple4": "2001:da8:2018::43.50050>2001:503:a83e::2:30.53",
"dns_qname": "ns3.p23.dynect.net",
@@ -32094,7 +37104,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_292"
+ "name": "DNS_RESULT_328"
}, {
"Tuple4": "2001:da8:2018::43.27503>2001:503:a83e::2:30.53",
"dns_qname": "ns2.p23.dynect.net",
@@ -32200,7 +37210,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_293"
+ "name": "DNS_RESULT_329"
}, {
"Tuple4": "139.59.107.152.14397>202.112.0.44.53",
"dns_qname": "v0wmnlu.cn",
@@ -32296,7 +37306,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_294"
+ "name": "DNS_RESULT_330"
}, {
"Tuple4": "139.59.107.152.54441>202.112.0.44.53",
"dns_qname": "v0wmnlu.cn",
@@ -32392,7 +37402,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_295"
+ "name": "DNS_RESULT_331"
}, {
"Tuple4": "216.244.66.198.26947>103.137.60.44.53",
"dns_qname": "www.cicpa.org.cn",
@@ -32488,7 +37498,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_296"
+ "name": "DNS_RESULT_332"
}, {
"Tuple4": "2001:da8:2018::43.60088>2001:503:a83e::2:30.53",
"dns_qname": "ns4.p23.dynect.net",
@@ -32594,7 +37604,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_297"
+ "name": "DNS_RESULT_333"
}, {
"Tuple4": "2001:da8:2018::43.5183>2001:503:a83e::2:30.53",
"dns_qname": "ns3.p23.dynect.net",
@@ -32700,7 +37710,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_298"
+ "name": "DNS_RESULT_334"
}, {
"Tuple4": "2001:da8:2018::43.57420>2001:503:a83e::2:30.53",
"dns_qname": "ns4.p23.dynect.net",
@@ -32806,7 +37816,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_299"
+ "name": "DNS_RESULT_335"
}, {
"Tuple4": "139.59.107.152.51326>202.112.0.44.53",
"dns_qname": "tnz7amy.cn",
@@ -32902,7 +37912,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_300"
+ "name": "DNS_RESULT_336"
}, {
"Tuple4": "210.35.128.2.49785>192.42.93.30.53",
"dns_qname": "facebook.com",
@@ -33011,7 +38021,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_301"
+ "name": "DNS_RESULT_337"
}, {
"Tuple4": "202.120.2.170.8158>192.43.172.30.53",
"dns_qname": "youtube-nocookie.com",
@@ -33120,7 +38130,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_302"
+ "name": "DNS_RESULT_338"
}, {
"Tuple4": "139.59.107.152.63371>202.112.0.44.53",
"dns_qname": "www.aymfrw2.cn",
@@ -33216,7 +38226,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_303"
+ "name": "DNS_RESULT_339"
}, {
"Tuple4": "210.35.128.2.60784>192.42.93.30.53",
"dns_qname": "tlc288.com",
@@ -33325,7 +38335,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_304"
+ "name": "DNS_RESULT_340"
}, {
"Tuple4": "162.158.253.45.44281>202.112.0.44.53",
"dns_qname": "nsone.net.cn",
@@ -33477,7 +38487,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_305"
+ "name": "DNS_RESULT_341"
}, {
"Tuple4": "2001:da8:2000:2193::43.38488>2001:503:231d::2:30.53",
"dns_qname": "tiktokv.com",
@@ -33586,7 +38596,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_306"
+ "name": "DNS_RESULT_342"
}, {
"Tuple4": "2001:da8:2008::10.13887>2001:503:231d::2:30.53",
"dns_qname": "isure6.stream.qqmusic.qq.com.spdydns.com",
@@ -33778,7 +38788,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_307"
+ "name": "DNS_RESULT_343"
}, {
"Tuple4": "2001:da8:2000:2193::43.42439>2001:503:231d::2:30.53",
"dns_qname": "instagram.com",
@@ -33887,7 +38897,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_308"
+ "name": "DNS_RESULT_344"
}, {
"Tuple4": "2001:da8:2008::10.23856>2001:503:231d::2:30.53",
"dns_qname": "data.bilicdn2.com",
@@ -34114,7 +39124,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_309"
+ "name": "DNS_RESULT_345"
}, {
"Tuple4": "139.59.107.152.2012>202.112.0.44.53",
"dns_qname": "10qqdnk.cn",
@@ -34210,7 +39220,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_310"
+ "name": "DNS_RESULT_346"
}, {
"Tuple4": "139.59.107.152.39033>202.112.0.44.53",
"dns_qname": "www.07m0fy.cn",
@@ -34306,7 +39316,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_311"
+ "name": "DNS_RESULT_347"
}, {
"Tuple4": "139.59.107.152.52692>202.112.0.44.53",
"dns_qname": "www.07m0fy.cn",
@@ -34402,7 +39412,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_312"
+ "name": "DNS_RESULT_348"
}, {
"Tuple4": "2001:da8:9000::26.33755>2001:503:eea3::30.53",
"dns_qname": "facebook.com",
@@ -34511,7 +39521,7 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_313"
+ "name": "DNS_RESULT_349"
}, {
"Tuple4": "2001:da8:2008::10.35581>2001:503:231d::2:30.53",
"dns_qname": "gspe1-ssl.ls.apple.com",
@@ -34675,5 +39685,101 @@
"rdlength": 0
}]
},
- "name": "DNS_RESULT_314"
+ "name": "DNS_RESULT_350"
+ }, {
+ "Tuple4": "2600:3000:2710:200::18.41414>2001:da8:1:100::44.53",
+ "dns_qname": "MeLIa.Com.cn",
+ "dns_qtype": 257,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "melia.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 13,
+ "ns": "ns2.dan.com"
+ }, {
+ "name": "melia.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 86400,
+ "rdlength": 6,
+ "ns": "ns1.dan.com"
+ }, {
+ "name": "GICE14DNTMDN31G43AUGVRKTKALVB8QC.com.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 39,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "852c1a47efe5f95f767e5bcf38c7304bc275edfa",
+ "maps_len": 9,
+ "type_bit_maps": "000722000000000290"
+ }, {
+ "name": "GICE14DNTMDN31G43AUGVRKTKALVB8QC.com.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637094292,
+ "sig_inception": 1634502015,
+ "key_tag": 43326,
+ "signer_name": "com.cn",
+ "signature_len": 128,
+ "signature": "a9faa990193dc37bfa742aa7eb55aca2180e0fbd66015fd88505d0d1ee52e79adfe00d036b416c02b56a5f5ff84b1d7f789f4176c3aaa3ee5fce1a6099e8a8fe092f9436d808aa26764757c231651a70607ba5c6b7831f1c56adc3eb38db5e4a1529aa148fa258f49747b773f05643f17c3fa92d224764fe8d390714a1ab96be"
+ }, {
+ "name": "8F3GNS489CPB5OBL181VP6F205TG4HTM.com.cn",
+ "type": 50,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 38,
+ "hash_algo": 1,
+ "flags": 1,
+ "iteration": 10,
+ "salt_len": 4,
+ "salt_value": "aef123ab",
+ "hash_len": 20,
+ "next_hash_owner": "4576523c4be2b66bb82095c5809a238be3677418",
+ "maps_len": 8,
+ "type_bit_maps": "0006200000000012"
+ }, {
+ "name": "8F3GNS489CPB5OBL181VP6F205TG4HTM.com.cn",
+ "type": 46,
+ "class": 1,
+ "ttl": 21600,
+ "rdlength": 154,
+ "type_covered": 50,
+ "algo": 8,
+ "labels": 3,
+ "original_ttl": 21600,
+ "sig_expiration": 1637620521,
+ "sig_inception": 1635027499,
+ "key_tag": 43326,
+ "signer_name": "com.cn",
+ "signature_len": 128,
+ "signature": "31356b510332cc54837c4593476b9a1948bf49cb9aaf41706aef7ffbcd70f68154b2bc23810b9eda152a1ab23a4e16288053c4c942a7800da078e93c51f328458b727b9ec7ae4ebf12f0468762acf3e31ed547c95c7cd43a48e5f72a5c791e2933930b48118c9343b5a65d3e483b5046534717ac908490a8e7ff8486746dd5e7"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 1232,
+ "rcode": 0,
+ "version": 0,
+ "Z": 1,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_351"
}]
diff --git a/test/pcap/tcp_lost_pkt/1-dns.tcp.multi.lost.pkt.218.229.123.91.32294.45.80.170.1.53.pcap b/test/pcap/tcp_lost_pkt/1-dns.tcp.multi.lost.pkt.218.229.123.91.32294.45.80.170.1.53.pcap
new file mode 100644
index 0000000..efb1b04
--- /dev/null
+++ b/test/pcap/tcp_lost_pkt/1-dns.tcp.multi.lost.pkt.218.229.123.91.32294.45.80.170.1.53.pcap
Binary files differ
diff --git a/test/pcap/tcp_lost_pkt/lost_pkt_result.json b/test/pcap/tcp_lost_pkt/lost_pkt_result.json
new file mode 100644
index 0000000..2d27f37
--- /dev/null
+++ b/test/pcap/tcp_lost_pkt/lost_pkt_result.json
@@ -0,0 +1,5529 @@
+[{
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_1"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_2"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_3"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_4"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_5"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_6"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_7"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_8"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_9"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_10"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_11"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_12"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_13"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_14"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_15"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_16"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_17"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_18"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_19"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_20"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_21"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_22"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_23"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_24"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_25"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_26"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_27"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_28"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_29"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_30"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_31"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_32"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_33"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_34"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_35"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_36"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_37"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_38"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_39"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_40"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_41"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_42"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_43"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_44"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_45"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_46"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_47"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_48"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_49"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_50"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_51"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_52"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_53"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_54"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_55"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_56"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_57"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_58"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_59"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_60"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_61"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_62"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_63"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_64"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_65"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_66"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_67"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_68"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_69"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_70"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_71"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_72"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_73"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_74"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_75"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_76"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_77"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_78"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_79"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_80"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_81"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_82"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_83"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_84"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_85"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_86"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_87"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_88"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_89"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_90"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_91"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_92"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_93"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_94"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_95"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_96"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_97"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_98"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_99"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_100"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_101"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_102"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_103"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_104"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_105"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_106"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_107"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_108"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_109"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_110"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_111"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_112"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 0,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "",
+ "type": 41,
+ "udp_payload": 1452,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_113"
+ }, {
+ "Tuple4": "218.229.123.91.32294>45.80.170.1.53",
+ "dns_qname": "dns.990.com.cn",
+ "dns_qtype": 28,
+ "dns_qclass": 1,
+ "dns_qr": 1,
+ "dns_opcode": 0,
+ "dns_rd": 0,
+ "rr": {
+ "rr": [{
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 7,
+ "ns": "dns2.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 9,
+ "ns": "dnsv62.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 8,
+ "ns": "dnsv6.990.com.cn"
+ }, {
+ "name": "990.com.cn",
+ "type": 2,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 2,
+ "ns": "dns.990.com.cn"
+ }, {
+ "name": "dns.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "44.238.200.213"
+ }, {
+ "name": "dns2.990.com.cn",
+ "type": 1,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 4,
+ "a": "140.244.182.193"
+ }, {
+ "name": "dnsv6.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "dnsv62.990.com.cn",
+ "type": 28,
+ "class": 1,
+ "ttl": 172800,
+ "rdlength": 16,
+ "aaaa": "2644:f57d:6716:fc71:3bef:23ad:4bad:5565"
+ }, {
+ "name": "",
+ "type": 41,
+ "udp_payload": 4096,
+ "rcode": 0,
+ "version": 0,
+ "Z": 0,
+ "rdlength": 0
+ }]
+ },
+ "name": "DNS_RESULT_114"
+}]