diff --git a/internal/experiment/webconnectivityqa/idna.go b/internal/experiment/webconnectivityqa/idna.go new file mode 100644 index 0000000000..28f72ba305 --- /dev/null +++ b/internal/experiment/webconnectivityqa/idna.go @@ -0,0 +1,58 @@ +package webconnectivityqa + +import ( + "github.com/ooni/probe-cli/v3/internal/netemx" +) + +// idnaWithoutCensorshipLowercase verifies that we can handle IDNA with lowercase. +func idnaWithoutCensorshipLowercase() *TestCase { + return &TestCase{ + Name: "idnaWithoutCensorshipLowercase", + Flags: TestCaseFlagNoV04, + Input: "http://яндекс.рф/", + Configure: func(env *netemx.QAEnv) { + // nothing + }, + ExpectErr: false, + ExpectTestKeys: &testKeys{ + DNSExperimentFailure: nil, + DNSConsistency: "consistent", + HTTPExperimentFailure: nil, + BodyLengthMatch: true, + BodyProportion: 1, + StatusCodeMatch: true, + HeadersMatch: true, + TitleMatch: true, + XBlockingFlags: 32, // AnalysisBlockingFlagSuccess + Accessible: true, + Blocking: false, + }, + } +} + +// idnaWithoutCensorshipWithFirstLetterUppercase verifies that we can handle IDNA +// with the first letter being uppercase. +func idnaWithoutCensorshipWithFirstLetterUppercase() *TestCase { + return &TestCase{ + Name: "idnaWithoutCensorshipWithFirstLetterUppercase", + Flags: TestCaseFlagNoV04, + Input: "http://Яндекс.рф/", + Configure: func(env *netemx.QAEnv) { + // nothing + }, + ExpectErr: false, + ExpectTestKeys: &testKeys{ + DNSExperimentFailure: nil, + DNSConsistency: "consistent", + HTTPExperimentFailure: nil, + BodyLengthMatch: true, + BodyProportion: 1, + StatusCodeMatch: true, + HeadersMatch: true, + TitleMatch: true, + XBlockingFlags: 32, // AnalysisBlockingFlagSuccess + Accessible: true, + Blocking: false, + }, + } +} diff --git a/internal/experiment/webconnectivityqa/testcase.go b/internal/experiment/webconnectivityqa/testcase.go index ebb312715f..4d6b13ffd2 100644 --- a/internal/experiment/webconnectivityqa/testcase.go +++ b/internal/experiment/webconnectivityqa/testcase.go @@ -60,6 +60,9 @@ func AllTestCases() []*TestCase { httpDiffWithConsistentDNS(), httpDiffWithInconsistentDNS(), + idnaWithoutCensorshipLowercase(), + idnaWithoutCensorshipWithFirstLetterUppercase(), + redirectWithConsistentDNSAndThenConnectionRefusedForHTTP(), redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS(), redirectWithConsistentDNSAndThenConnectionResetForHTTP(), diff --git a/internal/idnax/idnax.go b/internal/idnax/idnax.go new file mode 100644 index 0000000000..7029b2cf58 --- /dev/null +++ b/internal/idnax/idnax.go @@ -0,0 +1,9 @@ +// Package idnax contains IDNA extensions. +package idnax + +import "golang.org/x/net/idna" + +// ToASCII converts an IDNA to ASCII using the [idna.Lookup] profile. +func ToASCII(domain string) (string, error) { + return idna.Lookup.ToASCII(domain) +} diff --git a/internal/idnax/idnax_test.go b/internal/idnax/idnax_test.go new file mode 100644 index 0000000000..afbc46dde9 --- /dev/null +++ b/internal/idnax/idnax_test.go @@ -0,0 +1,65 @@ +package idnax + +import ( + "errors" + "testing" + + "github.com/google/go-cmp/cmp" +) + +func TestToASCII(t *testing.T) { + // testcase is a test case implemented by this function. + type testcase struct { + // input is the input domain + input string + + // expectErr is the expected error + expectErr error + + // expectDomain is the expected domain + expectDomain string + } + + testcases := []testcase{{ + input: "ουτοπία.δπθ.gr", + expectErr: nil, + expectDomain: "xn--kxae4bafwg.xn--pxaix.gr", + }, { + input: "example.com", + expectErr: nil, + expectDomain: "example.com", + }, { + input: "Яндекс.рф", + expectErr: nil, + expectDomain: "xn--d1acpjx3f.xn--p1ai", + }, { + // See https://www.farsightsecurity.com/blog/txt-record/punycode-20180711/ + input: "http://xn--0000h/", + expectErr: errors.New("idna: disallowed rune U+003A"), + expectDomain: "", + }} + + for _, tc := range testcases { + t.Run(tc.input, func(t *testing.T) { + output, err := ToASCII(tc.input) + + switch { + case err == nil && tc.expectErr == nil: + if diff := cmp.Diff(tc.expectDomain, output); diff != "" { + t.Fatal(diff) + } + + case err == nil && tc.expectErr != nil: + t.Fatal("expected", tc.expectErr, "got", err) + + case err != nil && tc.expectErr == nil: + t.Fatal("expected", tc.expectErr, "got", err) + + case err != nil && tc.expectErr != nil: + if err.Error() != tc.expectErr.Error() { + t.Fatal("expected", tc.expectErr, "got", err) + } + } + }) + } +} diff --git a/internal/inputparser/inputparser.go b/internal/inputparser/inputparser.go index 40307b2d6e..bd9da6d7a0 100644 --- a/internal/inputparser/inputparser.go +++ b/internal/inputparser/inputparser.go @@ -8,9 +8,9 @@ import ( "net/url" "reflect" + "github.com/ooni/probe-cli/v3/internal/idnax" "github.com/ooni/probe-cli/v3/internal/model" "github.com/ooni/probe-cli/v3/internal/runtimex" - "golang.org/x/net/idna" ) // Config contains config for parsing experiments input. You MUST set @@ -127,7 +127,7 @@ func maybeConvertHostnameToASCII(URL *url.URL) (*url.URL, error) { hostname := URL.Hostname() // Obtain an ASCII representation of the URL.Hostname(). - asciiHostname, err := idna.ToASCII(hostname) + asciiHostname, err := idnax.ToASCII(hostname) if err != nil { return nil, fmt.Errorf("%w: %s", ErrIDNAToASCII, err.Error()) } diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/analysis.json new file mode 100644 index 0000000000..94481193dd --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/analysis.json @@ -0,0 +1,2525 @@ +{ + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + }, + "DNSLookupSuccess": [ + 1, + 2 + ], + "DNSLookupSuccessWithInvalidAddresses": [], + "DNSLookupSuccessWithValidAddress": [ + 1, + 2 + ], + "DNSLookupSuccessWithBogonAddresses": [], + "DNSLookupSuccessWithInvalidAddressesClassic": [], + "DNSLookupSuccessWithValidAddressClassic": [ + 1, + 2 + ], + "DNSLookupUnexpectedFailure": [], + "DNSLookupUnexplainedFailure": [], + "DNSExperimentFailure": null, + "DNSLookupExpectedFailure": [], + "DNSLookupExpectedSuccess": [], + "TCPConnectExpectedFailure": [], + "TCPConnectUnexpectedFailure": [], + "TCPConnectUnexpectedFailureDuringWebFetch": [], + "TCPConnectUnexpectedFailureDuringConnectivityCheck": [], + "TCPConnectUnexplainedFailure": [], + "TCPConnectUnexplainedFailureDuringWebFetch": [], + "TCPConnectUnexplainedFailureDuringConnectivityCheck": [], + "TLSHandshakeExpectedFailure": [], + "TLSHandshakeUnexpectedFailure": [], + "TLSHandshakeUnexpectedFailureDuringWebFetch": [], + "TLSHandshakeUnexpectedFailureDuringConnectivityCheck": [], + "TLSHandshakeUnexplainedFailure": [], + "TLSHandshakeUnexplainedFailureDuringWebFetch": [], + "TLSHandshakeUnexplainedFailureDuringConnectivityCheck": [], + "HTTPRoundTripUnexpectedFailure": [], + "HTTPRoundTripUnexplainedFailure": [], + "HTTPFinalResponseSuccessTLSWithoutControl": null, + "HTTPFinalResponseSuccessTLSWithControl": 20, + "HTTPFinalResponseSuccessTCPWithoutControl": null, + "HTTPFinalResponseSuccessTCPWithControl": null, + "HTTPFinalResponseDiffBodyProportionFactor": 1, + "HTTPFinalResponseDiffStatusCodeMatch": true, + "HTTPFinalResponseDiffTitleDifferentLongWords": {}, + "HTTPFinalResponseDiffUncommonHeadersIntersection": { + "alt-svc": true, + "content-length": true + }, + "Linear": [ + { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 23, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 23, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 17, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 11, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 10, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 10, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 9, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 9, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 8, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 8, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 7, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 7, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_nxdomain_error", + "TransactionID": 3, + "TagFetchBody": null, + "DNSTransactionID": 3, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_nxdomain_error", + "DNSQueryType": "A", + "DNSEngine": "doh", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_nxdomain_error", + "TransactionID": 3, + "TagFetchBody": null, + "DNSTransactionID": 3, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_nxdomain_error", + "DNSQueryType": "AAAA", + "DNSEngine": "doh", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ] +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/analysis_classic.json new file mode 100644 index 0000000000..cf22746122 --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/analysis_classic.json @@ -0,0 +1,1400 @@ +{ + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + }, + "DNSLookupSuccess": [ + 1 + ], + "DNSLookupSuccessWithInvalidAddresses": [], + "DNSLookupSuccessWithValidAddress": [ + 1 + ], + "DNSLookupSuccessWithBogonAddresses": [], + "DNSLookupSuccessWithInvalidAddressesClassic": [], + "DNSLookupSuccessWithValidAddressClassic": [ + 1 + ], + "DNSLookupUnexpectedFailure": [], + "DNSLookupUnexplainedFailure": [], + "DNSExperimentFailure": null, + "DNSLookupExpectedFailure": [], + "DNSLookupExpectedSuccess": [], + "TCPConnectExpectedFailure": [], + "TCPConnectUnexpectedFailure": [], + "TCPConnectUnexpectedFailureDuringWebFetch": [], + "TCPConnectUnexpectedFailureDuringConnectivityCheck": [], + "TCPConnectUnexplainedFailure": [], + "TCPConnectUnexplainedFailureDuringWebFetch": [], + "TCPConnectUnexplainedFailureDuringConnectivityCheck": [], + "TLSHandshakeExpectedFailure": [], + "TLSHandshakeUnexpectedFailure": [], + "TLSHandshakeUnexpectedFailureDuringWebFetch": [], + "TLSHandshakeUnexpectedFailureDuringConnectivityCheck": [], + "TLSHandshakeUnexplainedFailure": [], + "TLSHandshakeUnexplainedFailureDuringWebFetch": [], + "TLSHandshakeUnexplainedFailureDuringConnectivityCheck": [], + "HTTPRoundTripUnexpectedFailure": [], + "HTTPRoundTripUnexplainedFailure": [], + "HTTPFinalResponseSuccessTLSWithoutControl": null, + "HTTPFinalResponseSuccessTLSWithControl": 20, + "HTTPFinalResponseSuccessTCPWithoutControl": null, + "HTTPFinalResponseSuccessTCPWithControl": null, + "HTTPFinalResponseDiffBodyProportionFactor": 1, + "HTTPFinalResponseDiffStatusCodeMatch": true, + "HTTPFinalResponseDiffTitleDifferentLongWords": {}, + "HTTPFinalResponseDiffUncommonHeadersIntersection": { + "alt-svc": true, + "content-length": true + }, + "Linear": [ + { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 23, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 23, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 17, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 7, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 7, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ] +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/measurement.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/measurement.json new file mode 100644 index 0000000000..dcc61fd46a --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/measurement.json @@ -0,0 +1,2191 @@ +{ + "data_format_version": "0.2.0", + "extensions": { + "dnst": 0, + "httpt": 0, + "netevents": 0, + "tcpconnect": 0, + "tlshandshake": 0, + "tunnel": 0 + }, + "input": "http://яндекс.рф/", + "measurement_start_time": "2024-01-23 11:37:10", + "probe_asn": "AS137", + "probe_cc": "IT", + "probe_ip": "127.0.0.1", + "probe_network_name": "Consortium GARR", + "report_id": "", + "resolver_asn": "AS137", + "resolver_ip": "130.192.3.21", + "resolver_network_name": "Consortium GARR", + "software_name": "ooniprobe", + "software_version": "3.21.0-alpha", + "test_helpers": { + "backend": { + "address": "https://0.th.ooni.org/", + "type": "https" + } + }, + "test_keys": { + "agent": "redirect", + "client_resolver": "", + "retries": null, + "socksproxy": null, + "network_events": [ + { + "address": "77.88.55.80:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.0135, + "t": 0.01829, + "transaction_id": 4, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_start", + "t0": 0.018363, + "t": 0.018363, + "transaction_id": 4, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013572, + "t": 0.018867, + "transaction_id": 5, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013477, + "t": 0.019012, + "transaction_id": 9, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013519, + "t": 0.019109, + "transaction_id": 8, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.77:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013574, + "t": 0.019224, + "transaction_id": 7, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013415, + "t": 0.01935, + "transaction_id": 6, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013599, + "t": 0.019713, + "transaction_id": 10, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.013596, + "t": 0.019811, + "transaction_id": 11, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "failure": null, + "operation": "http_transaction_done", + "t0": 0.02483, + "t": 0.02483, + "transaction_id": 4, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:80", + "failure": null, + "num_bytes": 142, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.024863, + "t": 0.024863, + "transaction_id": 4, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.028617, + "t": 0.028617, + "transaction_id": 9, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.028746, + "t": 0.028746, + "transaction_id": 8, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.029016, + "t": 0.029016, + "transaction_id": 11, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.029585, + "t": 0.029585, + "transaction_id": 10, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.03753, + "t": 0.042381, + "transaction_id": 17, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.037541, + "t": 0.042977, + "transaction_id": 15, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.037535, + "t": 0.043574, + "transaction_id": 14, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.037609, + "t": 0.043699, + "transaction_id": 16, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_start", + "t0": 0.051652, + "t": 0.051652, + "transaction_id": 15, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_done", + "t0": 0.057279, + "t": 0.057279, + "transaction_id": 15, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "num_bytes": 2447, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.057318, + "t": 0.057318, + "transaction_id": 15, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.062119, + "t": 0.062119, + "transaction_id": 16, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.062279, + "t": 0.062279, + "transaction_id": 17, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.06258, + "t": 0.06258, + "transaction_id": 14, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.063464, + "t": 0.063464, + "transaction_id": 14, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.06905, + "t": 0.07453, + "transaction_id": 23, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.069064, + "t": 0.074655, + "transaction_id": 20, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.069099, + "t": 0.074771, + "transaction_id": 21, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.069078, + "t": 0.074874, + "transaction_id": 22, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_start", + "t0": 0.083636, + "t": 0.083636, + "transaction_id": 20, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_done", + "t0": 0.090873, + "t": 0.090873, + "transaction_id": 20, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "num_bytes": 4003, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.090926, + "t": 0.090926, + "transaction_id": 20, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.093756, + "t": 0.093756, + "transaction_id": 23, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.093978, + "t": 0.093978, + "transaction_id": 21, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.094109, + "t": 0.094109, + "transaction_id": 22, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.095139, + "t": 0.095139, + "transaction_id": 22, + "tags": [ + "depth=2", + "fetch_body=true" + ] + } + ], + "x_dns_whoami": { + "system_v4": null, + "udp_v4": { + "8.8.4.4:53": null + } + }, + "x_doh": { + "network_events": [ + { + "failure": null, + "operation": "resolve_start", + "t0": 0.000473, + "t": 0.000473, + "transaction_id": 3, + "tags": [ + "depth=0" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.013106, + "t": 0.013106, + "transaction_id": 3, + "tags": [ + "depth=0" + ] + } + ], + "queries": [ + { + "answers": null, + "engine": "getaddrinfo", + "failure": "dns_nxdomain_error", + "hostname": "dns.nextdns.io", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.001936, + "t": 0.00806, + "tags": [ + "depth=0" + ], + "transaction_id": 3 + }, + { + "answers": null, + "engine": "getaddrinfo", + "failure": "dns_nxdomain_error", + "hostname": "dns.nextdns.io", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.008087, + "t": 0.013092, + "tags": [ + "depth=0" + ], + "transaction_id": 3 + } + ], + "requests": [], + "tcp_connect": [], + "tls_handshakes": [] + }, + "x_do53": { + "network_events": [ + { + "failure": null, + "operation": "resolve_start", + "t0": 0.00051, + "t": 0.00051, + "transaction_id": 2, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 40, + "operation": "write", + "proto": "udp", + "t0": 0.00127, + "t": 0.001283, + "transaction_id": 2, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 40, + "operation": "write", + "proto": "udp", + "t0": 0.001348, + "t": 0.001374, + "transaction_id": 2, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 40, + "operation": "read", + "proto": "udp", + "t0": 0.002443, + "t": 0.007202, + "transaction_id": 2, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 192, + "operation": "read", + "proto": "udp", + "t0": 0.00237, + "t": 0.007698, + "transaction_id": 2, + "tags": [ + "depth=0" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.007768, + "t": 0.007768, + "transaction_id": 2, + "tags": [ + "depth=0" + ] + }, + { + "failure": null, + "operation": "resolve_start", + "t0": 0.024948, + "t": 0.024948, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 28, + "operation": "write", + "proto": "udp", + "t0": 0.024989, + "t": 0.025004, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 28, + "operation": "write", + "proto": "udp", + "t0": 0.025033, + "t": 0.025052, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 132, + "operation": "read", + "proto": "udp", + "t0": 0.025059, + "t": 0.029887, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 28, + "operation": "read", + "proto": "udp", + "t0": 0.025013, + "t": 0.031321, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.031338, + "t": 0.031338, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "failure": null, + "operation": "resolve_start", + "t0": 0.057345, + "t": 0.057345, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 23, + "operation": "write", + "proto": "udp", + "t0": 0.057377, + "t": 0.057381, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 23, + "operation": "write", + "proto": "udp", + "t0": 0.057442, + "t": 0.057459, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 107, + "operation": "read", + "proto": "udp", + "t0": 0.057468, + "t": 0.062887, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 23, + "operation": "read", + "proto": "udp", + "t0": 0.057389, + "t": 0.063596, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.063623, + "t": 0.063623, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + } + ], + "queries": [] + }, + "x_dns_duplicate_responses": [], + "queries": [ + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "getaddrinfo", + "failure": null, + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.000703, + "t": 0.007125, + "tags": [ + "depth=0" + ], + "transaction_id": 1 + }, + { + "answers": null, + "engine": "udp", + "failure": "dns_no_answer", + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "AAAA", + "raw_response": "/QmBAAABAAAAAAAADXhuLS1kMWFjcGp4M2YIeG4tLXAxYWkAABwAAQ==", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.000697, + "t": 0.007209, + "tags": [ + "depth=0" + ], + "transaction_id": 2 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "udp", + "failure": null, + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "A", + "raw_response": "k6WBAAABAAQAAAAADXhuLS1kMWFjcGp4M2YIeG4tLXAxYWkAAAEAAQ14bi0tZDFhY3BqeDNmCHhuLS1wMWFpAAABAAEAAA4QAAQF//9QDXhuLS1kMWFjcGp4M2YIeG4tLXAxYWkAAAEAAQAADhAABAX//1gNeG4tLWQxYWNwangzZgh4bi0tcDFhaQAAAQABAAAOEAAETVg3TQ14bi0tZDFhY3BqeDNmCHhuLS1wMWFpAAABAAEAAA4QAARNWDdQ", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.000797, + "t": 0.007705, + "tags": [ + "depth=0" + ], + "transaction_id": 2 + }, + { + "answers": null, + "engine": "doh", + "failure": "dns_nxdomain_error", + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "A", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "https://dns.nextdns.io/dns-query", + "t0": 0.000737, + "t": 0.008106, + "tags": [ + "depth=0" + ], + "transaction_id": 3 + }, + { + "answers": null, + "engine": "doh", + "failure": "dns_nxdomain_error", + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "AAAA", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "https://dns.nextdns.io/dns-query", + "t0": 0.000696, + "t": 0.013103, + "tags": [ + "depth=0" + ], + "transaction_id": 3 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "getaddrinfo", + "failure": null, + "hostname": "yandex.com", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.024956, + "t": 0.031091, + "tags": [ + "depth=1" + ], + "transaction_id": 13 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "udp", + "failure": null, + "hostname": "yandex.com", + "query_type": "A", + "raw_response": "696BAAABAAQAAAAABnlhbmRleANjb20AAAEAAQZ5YW5kZXgDY29tAAABAAEAAA4QAAQF//9QBnlhbmRleANjb20AAAEAAQAADhAABAX//1gGeWFuZGV4A2NvbQAAAQABAAAOEAAETVg3TQZ5YW5kZXgDY29tAAABAAEAAA4QAARNWDdQ", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.024971, + "t": 0.029894, + "tags": [ + "depth=1" + ], + "transaction_id": 12 + }, + { + "answers": null, + "engine": "udp", + "failure": "dns_no_answer", + "hostname": "yandex.com", + "query_type": "AAAA", + "raw_response": "9P6BAAABAAAAAAAABnlhbmRleANjb20AABwAAQ==", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.024958, + "t": 0.031325, + "tags": [ + "depth=1" + ], + "transaction_id": 12 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "udp", + "failure": null, + "hostname": "ya.ru", + "query_type": "A", + "raw_response": "zhuBAAABAAQAAAAAAnlhAnJ1AAABAAECeWECcnUAAAEAAQAADhAABAX//1ACeWECcnUAAAEAAQAADhAABAX//1gCeWECcnUAAAEAAQAADhAABE1YN00CeWECcnUAAAEAAQAADhAABE1YN1A=", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.057393, + "t": 0.062893, + "tags": [ + "depth=2" + ], + "transaction_id": 18 + }, + { + "answers": null, + "engine": "udp", + "failure": "dns_no_answer", + "hostname": "ya.ru", + "query_type": "AAAA", + "raw_response": "PySBAAABAAAAAAAAAnlhAnJ1AAAcAAE=", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.057354, + "t": 0.063599, + "tags": [ + "depth=2" + ], + "transaction_id": 18 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "getaddrinfo", + "failure": null, + "hostname": "ya.ru", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.057357, + "t": 0.063719, + "tags": [ + "depth=2" + ], + "transaction_id": 19 + } + ], + "requests": [ + { + "network": "tcp", + "address": "5.255.255.88:443", + "alpn": "http/1.1", + "failure": null, + "request": { + "body": "", + "body_is_truncated": false, + "headers_list": [ + [ + "Accept", + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + [ + "Accept-Language", + "en-US,en;q=0.9" + ], + [ + "Host", + "ya.ru" + ], + [ + "Referer", + "https://yandex.com/" + ], + [ + "User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + ] + ], + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.9", + "Host": "ya.ru", + "Referer": "https://yandex.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + }, + "method": "GET", + "tor": { + "exit_ip": null, + "exit_name": null, + "is_tor": false + }, + "x_transport": "tcp", + "url": "https://ya.ru/" + }, + "response": { + "body": "\u003c!doctype html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n\t\u003ctitle\u003eDefault Web Page\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003cdiv\u003e\n\t\u003ch1\u003eDefault Web Page\u003c/h1\u003e\n\n\t\u003cp\u003eThis is the default web page of the default domain.\u003c/p\u003e\n\n\t\u003cp\u003eWe detect webpage blocking by checking for the status code first. If the status\n\tcode is different, we consider the measurement http-diff. On the contrary when\n\tthe status code matches, we say it's all good if one of the following check succeeds:\u003c/p\u003e\n\n\t\u003cp\u003e\u003col\u003e\n\t\t\u003cli\u003ethe body length does not match (we say they match is the smaller of the two\n\t\twebpages is 70% or more of the size of the larger webpage);\u003c/li\u003e\n\n\t\t\u003cli\u003ethe uncommon headers match;\u003c/li\u003e\n\n\t\t\u003cli\u003ethe webpage title contains mostly the same words.\u003c/li\u003e\n\t\u003c/ol\u003e\u003c/p\u003e\n\n\t\u003cp\u003eIf the three above checks fail, then we also say that there is http-diff. Because\n\twe need QA checks to work as intended, the size of THIS webpage you are reading\n\thas been increased, by adding this description, such that the body length check fails. The\n\toriginal webpage size was too close to the blockpage in size, and therefore we did see\n\tthat there was no http-diff, as it ought to be.\u003c/p\u003e\n\n\t\u003cp\u003eTo make sure we're not going to have this issue in the future, there is now a runtime\n\tcheck that causes our code to crash if this web page size is too similar to the one of\n\tthe default blockpage. We chose to add this text for additional clarity.\u003c/p\u003e\n\n\t\u003cp\u003eAlso, note that the blockpage MUST be very small, because in some cases we need\n\tto spoof it into a single TCP segment using ooni/netem's DPI.\u003c/p\u003e\n\u003c/div\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n", + "body_is_truncated": false, + "code": 200, + "headers_list": [ + [ + "Alt-Svc", + "h3=\":443\"" + ], + [ + "Content-Length", + "1533" + ], + [ + "Content-Type", + "text/html; charset=utf-8" + ], + [ + "Date", + "Thu, 24 Aug 2023 14:35:29 GMT" + ] + ], + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "1533", + "Content-Type": "text/html; charset=utf-8", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT" + } + }, + "t0": 0.083636, + "t": 0.090873, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 20 + }, + { + "network": "tcp", + "address": "5.255.255.80:443", + "alpn": "http/1.1", + "failure": null, + "request": { + "body": "", + "body_is_truncated": false, + "headers_list": [ + [ + "Accept", + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + [ + "Accept-Language", + "en-US,en;q=0.9" + ], + [ + "Host", + "yandex.com" + ], + [ + "Referer", + "http://xn--d1acpjx3f.xn--p1ai/" + ], + [ + "User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + ] + ], + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.9", + "Host": "yandex.com", + "Referer": "http://xn--d1acpjx3f.xn--p1ai/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + }, + "method": "GET", + "tor": { + "exit_ip": null, + "exit_name": null, + "is_tor": false + }, + "x_transport": "tcp", + "url": "https://yandex.com/" + }, + "response": { + "body": "", + "body_is_truncated": false, + "code": 308, + "headers_list": [ + [ + "Alt-Svc", + "h3=\":443\"" + ], + [ + "Content-Length", + "0" + ], + [ + "Date", + "Thu, 24 Aug 2023 14:35:29 GMT" + ], + [ + "Location", + "https://ya.ru/" + ] + ], + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "0", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT", + "Location": "https://ya.ru/" + } + }, + "t0": 0.051652, + "t": 0.057279, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 15 + }, + { + "network": "tcp", + "address": "77.88.55.80:80", + "failure": null, + "request": { + "body": "", + "body_is_truncated": false, + "headers_list": [ + [ + "Accept", + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + [ + "Accept-Language", + "en-US,en;q=0.9" + ], + [ + "Host", + "xn--d1acpjx3f.xn--p1ai" + ], + [ + "Referer", + "" + ], + [ + "User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + ] + ], + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.9", + "Host": "xn--d1acpjx3f.xn--p1ai", + "Referer": "", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + }, + "method": "GET", + "tor": { + "exit_ip": null, + "exit_name": null, + "is_tor": false + }, + "x_transport": "tcp", + "url": "http://xn--d1acpjx3f.xn--p1ai/" + }, + "response": { + "body": "", + "body_is_truncated": false, + "code": 308, + "headers_list": [ + [ + "Alt-Svc", + "h3=\":443\"" + ], + [ + "Content-Length", + "0" + ], + [ + "Date", + "Thu, 24 Aug 2023 14:35:29 GMT" + ], + [ + "Location", + "https://yandex.com/" + ] + ], + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "0", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT", + "Location": "https://yandex.com/" + } + }, + "t0": 0.018363, + "t": 0.02483, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 4 + } + ], + "tcp_connect": [ + { + "ip": "77.88.55.80", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.0135, + "t": 0.01829, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 4 + }, + { + "ip": "5.255.255.80", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013572, + "t": 0.018867, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 5 + }, + { + "ip": "5.255.255.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013477, + "t": 0.019012, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 9 + }, + { + "ip": "77.88.55.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013519, + "t": 0.019109, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 8 + }, + { + "ip": "77.88.55.77", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013574, + "t": 0.019224, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 7 + }, + { + "ip": "5.255.255.88", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013415, + "t": 0.01935, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 6 + }, + { + "ip": "5.255.255.88", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013599, + "t": 0.019713, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 10 + }, + { + "ip": "77.88.55.77", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.013596, + "t": 0.019811, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 11 + }, + { + "ip": "77.88.55.77", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.03753, + "t": 0.042381, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 17 + }, + { + "ip": "5.255.255.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.037541, + "t": 0.042977, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 15 + }, + { + "ip": "77.88.55.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.037535, + "t": 0.043574, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 14 + }, + { + "ip": "5.255.255.88", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.037609, + "t": 0.043699, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 16 + }, + { + "ip": "5.255.255.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.06905, + "t": 0.07453, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 23 + }, + { + "ip": "5.255.255.88", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.069064, + "t": 0.074655, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 20 + }, + { + "ip": "77.88.55.77", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.069099, + "t": 0.074771, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 21 + }, + { + "ip": "77.88.55.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.069078, + "t": 0.074874, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 22 + } + ], + "tls_handshakes": [ + { + "network": "tcp", + "address": "5.255.255.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVALeMYYqsHLy9UP0XNZ8YWVx/7gQZMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCMag7vA9AhRrqzQNNgyUuFUUR8b+WsHseqhTwAlzxJkWJDqLYCOkdWPx2YdM3AKHV+jKEkC1NtVr9MNFWuEpEZW3bbPs1asx8OAql113NxeZPNZkRameiZR1eCA7kfT7KHNisGA2LHZTWnOERiBQjeHy6NT3iWFH6frFHUQ04ibjnc0pRazP8PLL9hWFhah1bIpWl55R0YStCEnLbt6PldNYvWMItn6SigQwHvBW9ziQ7CQYVAaRg6yqDvYkEYA+ft+S4i+eFSfWQjOzotLn5zSVdxJNwHep029liBAloELjbWc10sKrDsrpGqg8U9UYoUVMxVF0RJew6dnshcsgpc", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.019027, + "t": 0.02858, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 9 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAMgbwG927Qc3Krq0/aUUznvboNBKMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCiQ306HOCbPhONrJMHKqVsScanetJOrZEYokJYkfBidrK0aCMIliLAdijul7BNNRh+4uEldUx8266zQTS/k2ZqeDuXsEyjfQkIpVyEtzc4EdDARCNGab/935EpZwlh4kTtlovjCdNdLnXvt/Malpou3CbARCpAr5yr4pV4/xQHM6CjA0Sh5LIX/SX9BASbcz5ytCM36M89DJQYCv4gR2kPkXGa1ZdVEIMuP4kjbOA9FxgHvXWPp66vHB2EEEvXpypBGhF00lnBNR1KOX7ZiEljY6UfjFK8uiOhVdWEivo0MP7f8xvPXPpjXnMudD/YWK9QGI66wvlZWWfwR2GOak2J", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.019124, + "t": 0.028714, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 8 + }, + { + "network": "tcp", + "address": "77.88.55.77:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAI2b/Ks18DaunE3SLQUrGZcDIWrBMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQAvirdA+CHtujd9/+8NPv107gr5BWavEgwGWAwy36b55wPlt1t++4rCiOOecBKaymOh5JRwJ6/O7J06xgKCHl3nHaE3P0o+C03uw86lNZQVdixKxNqAiaBvmqR/v7445p5nDKNwBJbAaKfxvJNQmsWufUoBeap5ru0AVhHNGqZU15RuDQUWfckPufL+byHlBFxakulmTmTa+UnBempcFGAicbqqetJ72HeUoi6Sp1+wq+yZ0wJZr9qfLughTmIcA0LcsAyh6jHlDIoDEC+p+4vQJGMaE1TC3TuuHl1MWpbqggKzF9Ff7tKQL+gSB1DsiIxO+Gwlu4aSxkoO/0/buv2K", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.019825, + "t": 0.028973, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 11 + }, + { + "network": "tcp", + "address": "5.255.255.88:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAKReOwAaQ4nZ7O1g29v74HM3HM8zMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCCBuEYlaRUar4d8BN1fs5k3evsglXoT1gl5Q/NXleNDgXBKxYit3whUrwEoMpRxM+b8kbIU8x+V0hRxs6dgShPLoOdLmyQNvqSSx6DiwVJhhPhszNVuDMHaUW9BBJoJ8mAjUAQhz6Nmx+zmX1Qn7d0OoN7xq6HvbdZnyPNWeUlCBgtIHc5WhRJfTwN6s6dZX8ke0dCddAcfq2tQz1aARblRHwypRqB/K4PMkTLS4CPSHJllCspaUu8JjgeIaANpXe1ahSm3KhzStHAkQ6J2Z4FJl/TKnxtUF0P4NYplUjja6ze7rN4wevegprgxw6bDpCGNk7WeyjyZnmSGy2UV+bO", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.019725, + "t": 0.029556, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 10 + }, + { + "network": "tcp", + "address": "5.255.255.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVALeMYYqsHLy9UP0XNZ8YWVx/7gQZMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCMag7vA9AhRrqzQNNgyUuFUUR8b+WsHseqhTwAlzxJkWJDqLYCOkdWPx2YdM3AKHV+jKEkC1NtVr9MNFWuEpEZW3bbPs1asx8OAql113NxeZPNZkRameiZR1eCA7kfT7KHNisGA2LHZTWnOERiBQjeHy6NT3iWFH6frFHUQ04ibjnc0pRazP8PLL9hWFhah1bIpWl55R0YStCEnLbt6PldNYvWMItn6SigQwHvBW9ziQ7CQYVAaRg6yqDvYkEYA+ft+S4i+eFSfWQjOzotLn5zSVdxJNwHep029liBAloELjbWc10sKrDsrpGqg8U9UYoUVMxVF0RJew6dnshcsgpc", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.042993, + "t": 0.051597, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 15 + }, + { + "network": "tcp", + "address": "5.255.255.88:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAKReOwAaQ4nZ7O1g29v74HM3HM8zMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCCBuEYlaRUar4d8BN1fs5k3evsglXoT1gl5Q/NXleNDgXBKxYit3whUrwEoMpRxM+b8kbIU8x+V0hRxs6dgShPLoOdLmyQNvqSSx6DiwVJhhPhszNVuDMHaUW9BBJoJ8mAjUAQhz6Nmx+zmX1Qn7d0OoN7xq6HvbdZnyPNWeUlCBgtIHc5WhRJfTwN6s6dZX8ke0dCddAcfq2tQz1aARblRHwypRqB/K4PMkTLS4CPSHJllCspaUu8JjgeIaANpXe1ahSm3KhzStHAkQ6J2Z4FJl/TKnxtUF0P4NYplUjja6ze7rN4wevegprgxw6bDpCGNk7WeyjyZnmSGy2UV+bO", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.04371, + "t": 0.052076, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 16 + }, + { + "network": "tcp", + "address": "77.88.55.77:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAI2b/Ks18DaunE3SLQUrGZcDIWrBMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQAvirdA+CHtujd9/+8NPv107gr5BWavEgwGWAwy36b55wPlt1t++4rCiOOecBKaymOh5JRwJ6/O7J06xgKCHl3nHaE3P0o+C03uw86lNZQVdixKxNqAiaBvmqR/v7445p5nDKNwBJbAaKfxvJNQmsWufUoBeap5ru0AVhHNGqZU15RuDQUWfckPufL+byHlBFxakulmTmTa+UnBempcFGAicbqqetJ72HeUoi6Sp1+wq+yZ0wJZr9qfLughTmIcA0LcsAyh6jHlDIoDEC+p+4vQJGMaE1TC3TuuHl1MWpbqggKzF9Ff7tKQL+gSB1DsiIxO+Gwlu4aSxkoO/0/buv2K", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.042404, + "t": 0.052225, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 17 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAMgbwG927Qc3Krq0/aUUznvboNBKMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCiQ306HOCbPhONrJMHKqVsScanetJOrZEYokJYkfBidrK0aCMIliLAdijul7BNNRh+4uEldUx8266zQTS/k2ZqeDuXsEyjfQkIpVyEtzc4EdDARCNGab/935EpZwlh4kTtlovjCdNdLnXvt/Malpou3CbARCpAr5yr4pV4/xQHM6CjA0Sh5LIX/SX9BASbcz5ytCM36M89DJQYCv4gR2kPkXGa1ZdVEIMuP4kjbOA9FxgHvXWPp66vHB2EEEvXpypBGhF00lnBNR1KOX7ZiEljY6UfjFK8uiOhVdWEivo0MP7f8xvPXPpjXnMudD/YWK9QGI66wvlZWWfwR2GOak2J", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.043586, + "t": 0.053416, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 14 + }, + { + "network": "tcp", + "address": "5.255.255.88:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAKReOwAaQ4nZ7O1g29v74HM3HM8zMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCCBuEYlaRUar4d8BN1fs5k3evsglXoT1gl5Q/NXleNDgXBKxYit3whUrwEoMpRxM+b8kbIU8x+V0hRxs6dgShPLoOdLmyQNvqSSx6DiwVJhhPhszNVuDMHaUW9BBJoJ8mAjUAQhz6Nmx+zmX1Qn7d0OoN7xq6HvbdZnyPNWeUlCBgtIHc5WhRJfTwN6s6dZX8ke0dCddAcfq2tQz1aARblRHwypRqB/K4PMkTLS4CPSHJllCspaUu8JjgeIaANpXe1ahSm3KhzStHAkQ6J2Z4FJl/TKnxtUF0P4NYplUjja6ze7rN4wevegprgxw6bDpCGNk7WeyjyZnmSGy2UV+bO", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.074666, + "t": 0.083551, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 20 + }, + { + "network": "tcp", + "address": "5.255.255.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVALeMYYqsHLy9UP0XNZ8YWVx/7gQZMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCMag7vA9AhRrqzQNNgyUuFUUR8b+WsHseqhTwAlzxJkWJDqLYCOkdWPx2YdM3AKHV+jKEkC1NtVr9MNFWuEpEZW3bbPs1asx8OAql113NxeZPNZkRameiZR1eCA7kfT7KHNisGA2LHZTWnOERiBQjeHy6NT3iWFH6frFHUQ04ibjnc0pRazP8PLL9hWFhah1bIpWl55R0YStCEnLbt6PldNYvWMItn6SigQwHvBW9ziQ7CQYVAaRg6yqDvYkEYA+ft+S4i+eFSfWQjOzotLn5zSVdxJNwHep029liBAloELjbWc10sKrDsrpGqg8U9UYoUVMxVF0RJew6dnshcsgpc", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.074544, + "t": 0.083694, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 23 + }, + { + "network": "tcp", + "address": "77.88.55.77:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAI2b/Ks18DaunE3SLQUrGZcDIWrBMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQAvirdA+CHtujd9/+8NPv107gr5BWavEgwGWAwy36b55wPlt1t++4rCiOOecBKaymOh5JRwJ6/O7J06xgKCHl3nHaE3P0o+C03uw86lNZQVdixKxNqAiaBvmqR/v7445p5nDKNwBJbAaKfxvJNQmsWufUoBeap5ru0AVhHNGqZU15RuDQUWfckPufL+byHlBFxakulmTmTa+UnBempcFGAicbqqetJ72HeUoi6Sp1+wq+yZ0wJZr9qfLughTmIcA0LcsAyh6jHlDIoDEC+p+4vQJGMaE1TC3TuuHl1MWpbqggKzF9Ff7tKQL+gSB1DsiIxO+Gwlu4aSxkoO/0/buv2K", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.07478, + "t": 0.083929, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 21 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAMgbwG927Qc3Krq0/aUUznvboNBKMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMFoXDTI0MDEyMzEyMzcxMFowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDirdiksjB4NX60x67B1vwqCrjPDSkcQjMgp8ypaFHmS7vYvI+EbIOYNyYiyU1Tojvcp+0sUxgtw0Vlrt7mj82zbyoKwjnc4G7Lsd9gAR2EEuZ3yIi53Ag27KIJVABvwQsb3WHB8M6vdSAftOOallkaEA2sggHZuUB8OrsmYUkIeDqZsFafoPCb2crByHMjSQ6uyXUb6yFvCEclHFG7Xg1y6FiKB3UaO7Rj2Adamrgsrib+T/2tceGkrCIxrMMbQgd16/El5JxZQ6TGmIIbRGQ03TfmTZOlWbRdyg7s2ize/+9cYg5sQCe8KlH17dQIbKMkIbJ+b7Ipgpa33z+H48N7AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFLIEtAHeqEgJnK5PPfPxVgO9wDXHMB8GA1UdIwQYMBaAFBhdzRbKTlxZUGI7xUsJuMWEYaahMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCiQ306HOCbPhONrJMHKqVsScanetJOrZEYokJYkfBidrK0aCMIliLAdijul7BNNRh+4uEldUx8266zQTS/k2ZqeDuXsEyjfQkIpVyEtzc4EdDARCNGab/935EpZwlh4kTtlovjCdNdLnXvt/Malpou3CbARCpAr5yr4pV4/xQHM6CjA0Sh5LIX/SX9BASbcz5ytCM36M89DJQYCv4gR2kPkXGa1ZdVEIMuP4kjbOA9FxgHvXWPp66vHB2EEEvXpypBGhF00lnBNR1KOX7ZiEljY6UfjFK8uiOhVdWEivo0MP7f8xvPXPpjXnMudD/YWK9QGI66wvlZWWfwR2GOak2J", + "format": "base64" + }, + { + "data": "MIIDNTCCAh2gAwIBAgIUTQcDumQo3LOCbBIRTYT8AvFQgyMwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIyMTEzNzEwWhcNMjQwMTI0MTEzNzEwWjAfMQ0wCwYDVQQKEwRPT05JMQ4wDAYDVQQDEwVqYWZhcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2eaoRO3ZRMR570Q+9neacGzDstNp7Hm40zCfGmWoYz7SaCdbtW0D8A90LoadBgbp3Etehi61oakhg7zHujYFhiwKlbf7xdS2YHtbEvgmUpBImyHlGPKFVdkEbm+12sHNeS/MR8l7aD3Z3MpyqBnCEBUMni+Y4AT6Chlw/L0T+dt/hqLEusZVY3U7Pd58CCkYSeFBXSG5hpCDLareFIKiBrMdbcUjm8+a9Uv7+ZRu3iABTlNERsmUXEGPQujatuJL/TxIo+MdRBdbrVkDnqG7655xvqBnchtiVeb95PwaDFVGYbrR51M2hRcnCo/8njoCnJBqh9pkncxzGQlbEaygcCAwEAAaNpMGcwDgYDVR0PAQH/BAQDAgKkMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFBhdzRbKTlxZUGI7xUsJuMWEYaahMBAGA1UdEQQJMAeCBWphZmFyMA0GCSqGSIb3DQEBCwUAA4IBAQByS9gxI3E2yM4veLbPc2DvSjp12hYfk8oU12AV39dD3NPGuZ3rlZSCB36vXd6+Y1bQ/hbA5iiTc1ArzvguYyuKQelz0xXQsKuuq5a/y5X8EWEA1Du5Y+hGsKcyVpDF1wIVzcOYbdOJbA191OC4AheU+6n1O6FLA1dsHlSpdtxs5vFhKmelxLMOitbHwhPeYE3isl4PuOepUbt/AQB8rxm7BPGaLMtDb3ruAsl5uyQ6qtydSYv9aU3rRjbIA0YvZqWvsIaKQGc/YjBlJ5uYZiC8jvtY+kaWgXbpcW8P6xahP2o4p45zz/+U8vLiLThKwHRAJ/YYa3G2fEU79p0S9D1Q", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.074881, + "t": 0.085097, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 22 + } + ], + "x_control_request": { + "http_request": "http://xn--d1acpjx3f.xn--p1ai/", + "http_request_headers": { + "Accept": [ + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "User-Agent": [ + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.3" + ] + }, + "tcp_connect": [ + "77.88.55.80:443", + "77.88.55.80:80", + "5.255.255.80:443", + "5.255.255.80:80", + "5.255.255.88:443", + "5.255.255.88:80", + "77.88.55.77:443", + "77.88.55.77:80" + ], + "x_quic_enabled": false + }, + "control": { + "tcp_connect": { + "5.255.255.80:443": { + "status": true, + "failure": null + }, + "5.255.255.80:80": { + "status": true, + "failure": null + }, + "5.255.255.88:443": { + "status": true, + "failure": null + }, + "5.255.255.88:80": { + "status": true, + "failure": null + }, + "77.88.55.77:443": { + "status": true, + "failure": null + }, + "77.88.55.77:80": { + "status": true, + "failure": null + }, + "77.88.55.80:443": { + "status": true, + "failure": null + }, + "77.88.55.80:80": { + "status": true, + "failure": null + } + }, + "tls_handshake": { + "5.255.255.80:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + }, + "5.255.255.88:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + }, + "77.88.55.77:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + }, + "77.88.55.80:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + } + }, + "quic_handshake": {}, + "http_request": { + "body_length": 1533, + "discovered_h3_endpoint": "xn--d1acpjx3f.xn--p1ai:443", + "failure": null, + "title": "Default Web Page", + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "1533", + "Content-Type": "text/html; charset=utf-8", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT" + }, + "status_code": 200 + }, + "http3_request": null, + "dns": { + "failure": null, + "addrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ] + }, + "ip_info": { + "5.255.255.80": { + "asn": 208398, + "flags": 11 + }, + "5.255.255.88": { + "asn": 208398, + "flags": 11 + }, + "77.88.55.77": { + "asn": 208398, + "flags": 11 + }, + "77.88.55.80": { + "asn": 208398, + "flags": 11 + } + } + }, + "x_conn_priority_log": [ + { + "msg": "create with [{Addr:77.88.55.80 Flags:3} {Addr:5.255.255.80 Flags:3} {Addr:5.255.255.88 Flags:3} {Addr:77.88.55.77 Flags:3}]", + "t": 0.013362 + }, + { + "msg": "conn 77.88.55.80:80: granted permission: true", + "t": 0.018298 + }, + { + "msg": "conn 5.255.255.80:80: denied permission: timed out sending", + "t": 0.028897 + }, + { + "msg": "conn 77.88.55.77:80: denied permission: timed out sending", + "t": 0.029233 + }, + { + "msg": "conn 5.255.255.88:80: denied permission: timed out sending", + "t": 0.029364 + }, + { + "msg": "create with [{Addr:77.88.55.80 Flags:3} {Addr:5.255.255.80 Flags:3} {Addr:5.255.255.88 Flags:3} {Addr:77.88.55.77 Flags:3}]", + "t": 0.037496 + }, + { + "msg": "conn 5.255.255.80:443: granted permission: true", + "t": 0.051605 + }, + { + "msg": "conn 5.255.255.88:443: denied permission: timed out sending", + "t": 0.062089 + }, + { + "msg": "conn 77.88.55.77:443: denied permission: timed out sending", + "t": 0.06225 + }, + { + "msg": "conn 77.88.55.80:443: denied permission: timed out sending", + "t": 0.063437 + }, + { + "msg": "create with [{Addr:5.255.255.88 Flags:3} {Addr:77.88.55.77 Flags:3} {Addr:77.88.55.80 Flags:3} {Addr:5.255.255.80 Flags:3}]", + "t": 0.069026 + }, + { + "msg": "conn 5.255.255.88:443: granted permission: true", + "t": 0.083583 + }, + { + "msg": "conn 5.255.255.80:443: denied permission: timed out sending", + "t": 0.093714 + }, + { + "msg": "conn 77.88.55.77:443: denied permission: timed out sending", + "t": 0.093939 + }, + { + "msg": "conn 77.88.55.80:443: denied permission: timed out sending", + "t": 0.09511 + } + ], + "control_failure": null, + "x_dns_flags": 0, + "dns_experiment_failure": null, + "dns_consistency": "consistent", + "http_experiment_failure": null, + "x_blocking_flags": 32, + "x_null_null_flags": 0, + "body_proportion": 1, + "body_length_match": true, + "headers_match": true, + "status_code_match": true, + "title_match": true, + "blocking": false, + "accessible": true + }, + "test_name": "web_connectivity", + "test_runtime": 0.564119, + "test_start_time": "2024-01-23 11:37:10", + "test_version": "0.5.28" +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/observations.json new file mode 100644 index 0000000000..db1eac9858 --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/observations.json @@ -0,0 +1,2482 @@ +{ + "DNSLookupFailures": [ + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_nxdomain_error", + "TransactionID": 3, + "TagFetchBody": null, + "DNSTransactionID": 3, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_nxdomain_error", + "DNSQueryType": "A", + "DNSEngine": "doh", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_nxdomain_error", + "TransactionID": 3, + "TagFetchBody": null, + "DNSTransactionID": 3, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_nxdomain_error", + "DNSQueryType": "AAAA", + "DNSEngine": "doh", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ], + "DNSLookupSuccesses": [ + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ], + "KnownTCPEndpoints": { + "10": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 10, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 10, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "11": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 11, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "14": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "15": { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "16": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "17": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 17, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "20": { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "21": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "22": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "23": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 23, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 23, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "4": { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "5": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "6": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "7": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 7, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 7, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "8": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 8, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 8, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "9": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 9, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 9, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + }, + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + } +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/observations_classic.json new file mode 100644 index 0000000000..b247ee4119 --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipLowercase/observations_classic.json @@ -0,0 +1,1359 @@ +{ + "DNSLookupFailures": [], + "DNSLookupSuccesses": [ + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": null, + "DNSTransactionID": 13, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": null, + "DNSTransactionID": 19, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ], + "KnownTCPEndpoints": { + "14": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "15": { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "16": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "17": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 17, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "20": { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "21": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "22": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "23": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 23, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 23, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "4": { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "5": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "6": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "7": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 7, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 7, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + }, + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + } +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/analysis.json new file mode 100644 index 0000000000..2c1c44f2e5 --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/analysis.json @@ -0,0 +1,2421 @@ +{ + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + }, + "DNSLookupSuccess": [ + 1, + 2 + ], + "DNSLookupSuccessWithInvalidAddresses": [], + "DNSLookupSuccessWithValidAddress": [ + 1, + 2 + ], + "DNSLookupSuccessWithBogonAddresses": [], + "DNSLookupSuccessWithInvalidAddressesClassic": [], + "DNSLookupSuccessWithValidAddressClassic": [ + 1, + 2 + ], + "DNSLookupUnexpectedFailure": [], + "DNSLookupUnexplainedFailure": [], + "DNSExperimentFailure": null, + "DNSLookupExpectedFailure": [], + "DNSLookupExpectedSuccess": [], + "TCPConnectExpectedFailure": [], + "TCPConnectUnexpectedFailure": [], + "TCPConnectUnexpectedFailureDuringWebFetch": [], + "TCPConnectUnexpectedFailureDuringConnectivityCheck": [], + "TCPConnectUnexplainedFailure": [], + "TCPConnectUnexplainedFailureDuringWebFetch": [], + "TCPConnectUnexplainedFailureDuringConnectivityCheck": [], + "TLSHandshakeExpectedFailure": [], + "TLSHandshakeUnexpectedFailure": [], + "TLSHandshakeUnexpectedFailureDuringWebFetch": [], + "TLSHandshakeUnexpectedFailureDuringConnectivityCheck": [], + "TLSHandshakeUnexplainedFailure": [], + "TLSHandshakeUnexplainedFailureDuringWebFetch": [], + "TLSHandshakeUnexplainedFailureDuringConnectivityCheck": [], + "HTTPRoundTripUnexpectedFailure": [], + "HTTPRoundTripUnexplainedFailure": [], + "HTTPFinalResponseSuccessTLSWithoutControl": null, + "HTTPFinalResponseSuccessTLSWithControl": 19, + "HTTPFinalResponseSuccessTCPWithoutControl": null, + "HTTPFinalResponseSuccessTCPWithControl": null, + "HTTPFinalResponseDiffBodyProportionFactor": 1, + "HTTPFinalResponseDiffStatusCodeMatch": true, + "HTTPFinalResponseDiffTitleDifferentLongWords": {}, + "HTTPFinalResponseDiffUncommonHeadersIntersection": { + "alt-svc": true, + "content-length": true + }, + "Linear": [ + { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 19, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 13, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 10, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 10, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 9, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 9, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 8, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 8, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 7, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 7, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 3, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 3, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ] +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/analysis_classic.json new file mode 100644 index 0000000000..a5e1bf00cc --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/analysis_classic.json @@ -0,0 +1,1401 @@ +{ + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + }, + "DNSLookupSuccess": [ + 2 + ], + "DNSLookupSuccessWithInvalidAddresses": [], + "DNSLookupSuccessWithValidAddress": [ + 1, + 2 + ], + "DNSLookupSuccessWithBogonAddresses": [], + "DNSLookupSuccessWithInvalidAddressesClassic": [], + "DNSLookupSuccessWithValidAddressClassic": [ + 2 + ], + "DNSLookupUnexpectedFailure": [], + "DNSLookupUnexplainedFailure": [], + "DNSExperimentFailure": null, + "DNSLookupExpectedFailure": [], + "DNSLookupExpectedSuccess": [], + "TCPConnectExpectedFailure": [], + "TCPConnectUnexpectedFailure": [], + "TCPConnectUnexpectedFailureDuringWebFetch": [], + "TCPConnectUnexpectedFailureDuringConnectivityCheck": [], + "TCPConnectUnexplainedFailure": [], + "TCPConnectUnexplainedFailureDuringWebFetch": [], + "TCPConnectUnexplainedFailureDuringConnectivityCheck": [], + "TLSHandshakeExpectedFailure": [], + "TLSHandshakeUnexpectedFailure": [], + "TLSHandshakeUnexpectedFailureDuringWebFetch": [], + "TLSHandshakeUnexpectedFailureDuringConnectivityCheck": [], + "TLSHandshakeUnexplainedFailure": [], + "TLSHandshakeUnexplainedFailureDuringWebFetch": [], + "TLSHandshakeUnexplainedFailureDuringConnectivityCheck": [], + "HTTPRoundTripUnexpectedFailure": [], + "HTTPRoundTripUnexplainedFailure": [], + "HTTPFinalResponseSuccessTLSWithoutControl": null, + "HTTPFinalResponseSuccessTLSWithControl": 19, + "HTTPFinalResponseSuccessTCPWithoutControl": null, + "HTTPFinalResponseSuccessTCPWithControl": null, + "HTTPFinalResponseDiffBodyProportionFactor": 1, + "HTTPFinalResponseDiffStatusCodeMatch": true, + "HTTPFinalResponseDiffTitleDifferentLongWords": {}, + "HTTPFinalResponseDiffUncommonHeadersIntersection": { + "alt-svc": true, + "content-length": true + }, + "Linear": [ + { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 19, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 13, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 3, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 3, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ] +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/measurement.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/measurement.json new file mode 100644 index 0000000000..42926017f6 --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/measurement.json @@ -0,0 +1,2077 @@ +{ + "data_format_version": "0.2.0", + "extensions": { + "dnst": 0, + "httpt": 0, + "netevents": 0, + "tcpconnect": 0, + "tlshandshake": 0, + "tunnel": 0 + }, + "input": "http://Яндекс.рф/", + "measurement_start_time": "2024-01-23 11:37:11", + "probe_asn": "AS137", + "probe_cc": "IT", + "probe_ip": "127.0.0.1", + "probe_network_name": "Consortium GARR", + "report_id": "", + "resolver_asn": "AS137", + "resolver_ip": "130.192.3.21", + "resolver_network_name": "Consortium GARR", + "software_name": "ooniprobe", + "software_version": "3.21.0-alpha", + "test_helpers": { + "backend": { + "address": "https://0.th.ooni.org/", + "type": "https" + } + }, + "test_keys": { + "agent": "redirect", + "client_resolver": "", + "retries": null, + "socksproxy": null, + "network_events": [ + { + "address": "77.88.55.80:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011505, + "t": 0.01678, + "transaction_id": 6, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_start", + "t0": 0.016804, + "t": 0.016804, + "transaction_id": 6, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011562, + "t": 0.016899, + "transaction_id": 3, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011474, + "t": 0.017014, + "transaction_id": 4, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:80", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011445, + "t": 0.017134, + "transaction_id": 5, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011502, + "t": 0.017964, + "transaction_id": 8, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011529, + "t": 0.018081, + "transaction_id": 7, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011563, + "t": 0.018209, + "transaction_id": 10, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.011565, + "t": 0.018329, + "transaction_id": 9, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "failure": null, + "operation": "http_transaction_done", + "t0": 0.022484, + "t": 0.022484, + "transaction_id": 6, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:80", + "failure": null, + "num_bytes": 142, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.022543, + "t": 0.022543, + "transaction_id": 6, + "tags": [ + "depth=0", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.026999, + "t": 0.026999, + "transaction_id": 7, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.02732, + "t": 0.02732, + "transaction_id": 10, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.027692, + "t": 0.027692, + "transaction_id": 8, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.028031, + "t": 0.028031, + "transaction_id": 9, + "tags": [ + "depth=0", + "fetch_body=false" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.035172, + "t": 0.040659, + "transaction_id": 13, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.035169, + "t": 0.040894, + "transaction_id": 16, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.035178, + "t": 0.041008, + "transaction_id": 14, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.03523, + "t": 0.041133, + "transaction_id": 15, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_start", + "t0": 0.050144, + "t": 0.050144, + "transaction_id": 16, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_done", + "t0": 0.055662, + "t": 0.055662, + "transaction_id": 16, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2448, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.055694, + "t": 0.055694, + "transaction_id": 16, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "num_bytes": 2288, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.060297, + "t": 0.060297, + "transaction_id": 13, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.060417, + "t": 0.060417, + "transaction_id": 15, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.060686, + "t": 0.060686, + "transaction_id": 14, + "tags": [ + "depth=1", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.068058, + "t": 0.07317, + "transaction_id": 19, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.068097, + "t": 0.073643, + "transaction_id": 20, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.068052, + "t": 0.074003, + "transaction_id": 22, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "operation": "connect", + "proto": "tcp", + "t0": 0.068152, + "t": 0.074365, + "transaction_id": 21, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_start", + "t0": 0.081605, + "t": 0.081605, + "transaction_id": 19, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "failure": null, + "operation": "http_transaction_done", + "t0": 0.087695, + "t": 0.087695, + "transaction_id": 19, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.80:443", + "failure": null, + "num_bytes": 4003, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.08773, + "t": 0.08773, + "transaction_id": 19, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "5.255.255.88:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.091865, + "t": 0.091865, + "transaction_id": 20, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.80:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.093412, + "t": 0.093412, + "transaction_id": 22, + "tags": [ + "depth=2", + "fetch_body=true" + ] + }, + { + "address": "77.88.55.77:443", + "failure": null, + "num_bytes": 2289, + "operation": "bytes_received_cumulative", + "proto": "tcp", + "t0": 0.093771, + "t": 0.093771, + "transaction_id": 21, + "tags": [ + "depth=2", + "fetch_body=true" + ] + } + ], + "x_dns_whoami": { + "system_v4": null, + "udp_v4": { + "8.8.4.4:53": null + } + }, + "x_doh": { + "network_events": [], + "queries": [], + "requests": [], + "tcp_connect": [], + "tls_handshakes": [] + }, + "x_do53": { + "network_events": [ + { + "failure": null, + "operation": "resolve_start", + "t0": 0.000101, + "t": 0.000101, + "transaction_id": 1, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 40, + "operation": "write", + "proto": "udp", + "t0": 0.000142, + "t": 0.000149, + "transaction_id": 1, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 40, + "operation": "write", + "proto": "udp", + "t0": 0.000212, + "t": 0.000235, + "transaction_id": 1, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 40, + "operation": "read", + "proto": "udp", + "t0": 0.000156, + "t": 0.005956, + "transaction_id": 1, + "tags": [ + "depth=0" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 192, + "operation": "read", + "proto": "udp", + "t0": 0.000253, + "t": 0.006075, + "transaction_id": 1, + "tags": [ + "depth=0" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.006129, + "t": 0.006129, + "transaction_id": 1, + "tags": [ + "depth=0" + ] + }, + { + "failure": null, + "operation": "resolve_start", + "t0": 0.022718, + "t": 0.022718, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 28, + "operation": "write", + "proto": "udp", + "t0": 0.022749, + "t": 0.022767, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 28, + "operation": "write", + "proto": "udp", + "t0": 0.022792, + "t": 0.022918, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 28, + "operation": "read", + "proto": "udp", + "t0": 0.022777, + "t": 0.028643, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 132, + "operation": "read", + "proto": "udp", + "t0": 0.022926, + "t": 0.028871, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.028923, + "t": 0.028923, + "transaction_id": 12, + "tags": [ + "depth=1" + ] + }, + { + "failure": null, + "operation": "resolve_start", + "t0": 0.055719, + "t": 0.055719, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 23, + "operation": "write", + "proto": "udp", + "t0": 0.055748, + "t": 0.055763, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 23, + "operation": "write", + "proto": "udp", + "t0": 0.055755, + "t": 0.055767, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 107, + "operation": "read", + "proto": "udp", + "t0": 0.055773, + "t": 0.061634, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "address": "8.8.4.4:53", + "failure": null, + "num_bytes": 23, + "operation": "read", + "proto": "udp", + "t0": 0.055781, + "t": 0.062356, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + }, + { + "failure": null, + "operation": "resolve_done", + "t0": 0.062372, + "t": 0.062372, + "transaction_id": 18, + "tags": [ + "depth=2" + ] + } + ], + "queries": [] + }, + "x_dns_duplicate_responses": [], + "queries": [ + { + "answers": null, + "engine": "udp", + "failure": "dns_no_answer", + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "AAAA", + "raw_response": "7xyBAAABAAAAAAAADXhuLS1kMWFjcGp4M2YIeG4tLXAxYWkAABwAAQ==", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.000117, + "t": 0.005959, + "tags": [ + "depth=0" + ], + "transaction_id": 1 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "udp", + "failure": null, + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "A", + "raw_response": "UQWBAAABAAQAAAAADXhuLS1kMWFjcGp4M2YIeG4tLXAxYWkAAAEAAQ14bi0tZDFhY3BqeDNmCHhuLS1wMWFpAAABAAEAAA4QAAQF//9QDXhuLS1kMWFjcGp4M2YIeG4tLXAxYWkAAAEAAQAADhAABAX//1gNeG4tLWQxYWNwangzZgh4bi0tcDFhaQAAAQABAAAOEAAETVg3TQ14bi0tZDFhY3BqeDNmCHhuLS1wMWFpAAABAAEAAA4QAARNWDdQ", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.000184, + "t": 0.006082, + "tags": [ + "depth=0" + ], + "transaction_id": 1 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "getaddrinfo", + "failure": null, + "hostname": "xn--d1acpjx3f.xn--p1ai", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.00012, + "t": 0.006323, + "tags": [ + "depth=0" + ], + "transaction_id": 2 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "getaddrinfo", + "failure": null, + "hostname": "yandex.com", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.02263, + "t": 0.027933, + "tags": [ + "depth=1" + ], + "transaction_id": 11 + }, + { + "answers": null, + "engine": "udp", + "failure": "dns_no_answer", + "hostname": "yandex.com", + "query_type": "AAAA", + "raw_response": "+iuBAAABAAAAAAAABnlhbmRleANjb20AABwAAQ==", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.022727, + "t": 0.028646, + "tags": [ + "depth=1" + ], + "transaction_id": 12 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "udp", + "failure": null, + "hostname": "yandex.com", + "query_type": "A", + "raw_response": "SDKBAAABAAQAAAAABnlhbmRleANjb20AAAEAAQZ5YW5kZXgDY29tAAABAAEAAA4QAAQF//9QBnlhbmRleANjb20AAAEAAQAADhAABAX//1gGeWFuZGV4A2NvbQAAAQABAAAOEAAETVg3TQZ5YW5kZXgDY29tAAABAAEAAA4QAARNWDdQ", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.022747, + "t": 0.028876, + "tags": [ + "depth=1" + ], + "transaction_id": 12 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "getaddrinfo", + "failure": null, + "hostname": "ya.ru", + "query_type": "ANY", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "", + "t0": 0.055706, + "t": 0.062125, + "tags": [ + "depth=2" + ], + "transaction_id": 17 + }, + { + "answers": [ + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.80", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "5.255.255.88", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.77", + "ttl": null + }, + { + "asn": 208398, + "as_org_name": "Teletech d.o.o. Beograd", + "answer_type": "A", + "ipv4": "77.88.55.80", + "ttl": null + } + ], + "engine": "udp", + "failure": null, + "hostname": "ya.ru", + "query_type": "A", + "raw_response": "FcCBAAABAAQAAAAAAnlhAnJ1AAABAAECeWECcnUAAAEAAQAADhAABAX//1ACeWECcnUAAAEAAQAADhAABAX//1gCeWECcnUAAAEAAQAADhAABE1YN00CeWECcnUAAAEAAQAADhAABE1YN1A=", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.055736, + "t": 0.061641, + "tags": [ + "depth=2" + ], + "transaction_id": 18 + }, + { + "answers": null, + "engine": "udp", + "failure": "dns_no_answer", + "hostname": "ya.ru", + "query_type": "AAAA", + "raw_response": "gQGBAAABAAAAAAAAAnlhAnJ1AAAcAAE=", + "resolver_hostname": null, + "resolver_port": null, + "resolver_address": "8.8.4.4:53", + "t0": 0.055727, + "t": 0.062359, + "tags": [ + "depth=2" + ], + "transaction_id": 18 + } + ], + "requests": [ + { + "network": "tcp", + "address": "5.255.255.80:443", + "alpn": "http/1.1", + "failure": null, + "request": { + "body": "", + "body_is_truncated": false, + "headers_list": [ + [ + "Accept", + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + [ + "Accept-Language", + "en-US,en;q=0.9" + ], + [ + "Host", + "ya.ru" + ], + [ + "Referer", + "https://yandex.com/" + ], + [ + "User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + ] + ], + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.9", + "Host": "ya.ru", + "Referer": "https://yandex.com/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + }, + "method": "GET", + "tor": { + "exit_ip": null, + "exit_name": null, + "is_tor": false + }, + "x_transport": "tcp", + "url": "https://ya.ru/" + }, + "response": { + "body": "\u003c!doctype html\u003e\n\u003chtml\u003e\n\u003chead\u003e\n\t\u003ctitle\u003eDefault Web Page\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003cdiv\u003e\n\t\u003ch1\u003eDefault Web Page\u003c/h1\u003e\n\n\t\u003cp\u003eThis is the default web page of the default domain.\u003c/p\u003e\n\n\t\u003cp\u003eWe detect webpage blocking by checking for the status code first. If the status\n\tcode is different, we consider the measurement http-diff. On the contrary when\n\tthe status code matches, we say it's all good if one of the following check succeeds:\u003c/p\u003e\n\n\t\u003cp\u003e\u003col\u003e\n\t\t\u003cli\u003ethe body length does not match (we say they match is the smaller of the two\n\t\twebpages is 70% or more of the size of the larger webpage);\u003c/li\u003e\n\n\t\t\u003cli\u003ethe uncommon headers match;\u003c/li\u003e\n\n\t\t\u003cli\u003ethe webpage title contains mostly the same words.\u003c/li\u003e\n\t\u003c/ol\u003e\u003c/p\u003e\n\n\t\u003cp\u003eIf the three above checks fail, then we also say that there is http-diff. Because\n\twe need QA checks to work as intended, the size of THIS webpage you are reading\n\thas been increased, by adding this description, such that the body length check fails. The\n\toriginal webpage size was too close to the blockpage in size, and therefore we did see\n\tthat there was no http-diff, as it ought to be.\u003c/p\u003e\n\n\t\u003cp\u003eTo make sure we're not going to have this issue in the future, there is now a runtime\n\tcheck that causes our code to crash if this web page size is too similar to the one of\n\tthe default blockpage. We chose to add this text for additional clarity.\u003c/p\u003e\n\n\t\u003cp\u003eAlso, note that the blockpage MUST be very small, because in some cases we need\n\tto spoof it into a single TCP segment using ooni/netem's DPI.\u003c/p\u003e\n\u003c/div\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n", + "body_is_truncated": false, + "code": 200, + "headers_list": [ + [ + "Alt-Svc", + "h3=\":443\"" + ], + [ + "Content-Length", + "1533" + ], + [ + "Content-Type", + "text/html; charset=utf-8" + ], + [ + "Date", + "Thu, 24 Aug 2023 14:35:29 GMT" + ] + ], + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "1533", + "Content-Type": "text/html; charset=utf-8", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT" + } + }, + "t0": 0.081605, + "t": 0.087695, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 19 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "alpn": "http/1.1", + "failure": null, + "request": { + "body": "", + "body_is_truncated": false, + "headers_list": [ + [ + "Accept", + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + [ + "Accept-Language", + "en-US,en;q=0.9" + ], + [ + "Host", + "yandex.com" + ], + [ + "Referer", + "http://xn--d1acpjx3f.xn--p1ai/" + ], + [ + "User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + ] + ], + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.9", + "Host": "yandex.com", + "Referer": "http://xn--d1acpjx3f.xn--p1ai/", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + }, + "method": "GET", + "tor": { + "exit_ip": null, + "exit_name": null, + "is_tor": false + }, + "x_transport": "tcp", + "url": "https://yandex.com/" + }, + "response": { + "body": "", + "body_is_truncated": false, + "code": 308, + "headers_list": [ + [ + "Alt-Svc", + "h3=\":443\"" + ], + [ + "Content-Length", + "0" + ], + [ + "Date", + "Thu, 24 Aug 2023 14:35:29 GMT" + ], + [ + "Location", + "https://ya.ru/" + ] + ], + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "0", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT", + "Location": "https://ya.ru/" + } + }, + "t0": 0.050144, + "t": 0.055662, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 16 + }, + { + "network": "tcp", + "address": "77.88.55.80:80", + "failure": null, + "request": { + "body": "", + "body_is_truncated": false, + "headers_list": [ + [ + "Accept", + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + [ + "Accept-Language", + "en-US,en;q=0.9" + ], + [ + "Host", + "xn--d1acpjx3f.xn--p1ai" + ], + [ + "Referer", + "" + ], + [ + "User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + ] + ], + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.9", + "Host": "xn--d1acpjx3f.xn--p1ai", + "Referer": "", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/[scrubbed] Safari/537.3" + }, + "method": "GET", + "tor": { + "exit_ip": null, + "exit_name": null, + "is_tor": false + }, + "x_transport": "tcp", + "url": "http://xn--d1acpjx3f.xn--p1ai/" + }, + "response": { + "body": "", + "body_is_truncated": false, + "code": 308, + "headers_list": [ + [ + "Alt-Svc", + "h3=\":443\"" + ], + [ + "Content-Length", + "0" + ], + [ + "Date", + "Thu, 24 Aug 2023 14:35:29 GMT" + ], + [ + "Location", + "https://yandex.com/" + ] + ], + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "0", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT", + "Location": "https://yandex.com/" + } + }, + "t0": 0.016804, + "t": 0.022484, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 6 + } + ], + "tcp_connect": [ + { + "ip": "77.88.55.80", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011505, + "t": 0.01678, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 6 + }, + { + "ip": "5.255.255.80", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011562, + "t": 0.016899, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 3 + }, + { + "ip": "5.255.255.88", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011474, + "t": 0.017014, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 4 + }, + { + "ip": "77.88.55.77", + "port": 80, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011445, + "t": 0.017134, + "tags": [ + "depth=0", + "fetch_body=true" + ], + "transaction_id": 5 + }, + { + "ip": "5.255.255.88", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011502, + "t": 0.017964, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 8 + }, + { + "ip": "5.255.255.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011529, + "t": 0.018081, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 7 + }, + { + "ip": "77.88.55.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011563, + "t": 0.018209, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 10 + }, + { + "ip": "77.88.55.77", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.011565, + "t": 0.018329, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "transaction_id": 9 + }, + { + "ip": "5.255.255.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.035172, + "t": 0.040659, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 13 + }, + { + "ip": "77.88.55.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.035169, + "t": 0.040894, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 16 + }, + { + "ip": "5.255.255.88", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.035178, + "t": 0.041008, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 14 + }, + { + "ip": "77.88.55.77", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.03523, + "t": 0.041133, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "transaction_id": 15 + }, + { + "ip": "5.255.255.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.068058, + "t": 0.07317, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 19 + }, + { + "ip": "5.255.255.88", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.068097, + "t": 0.073643, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 20 + }, + { + "ip": "77.88.55.80", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.068052, + "t": 0.074003, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 22 + }, + { + "ip": "77.88.55.77", + "port": 443, + "status": { + "failure": null, + "success": true + }, + "t0": 0.068152, + "t": 0.074365, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "transaction_id": 21 + } + ], + "tls_handshakes": [ + { + "network": "tcp", + "address": "5.255.255.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgjCCAmqgAwIBAgIUaMD6liZMrCdOxHdl8ptD1KAfgxUwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIzMTAzNzExWhcNMjQwMTIzMTIzNzExWjAoMRYwFAYDVQQKEw1PT05JIE5ldGVtIENBMQ4wDAYDVQQDEwV5YS5ydTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANne/a7sq/SCyO+3cpTvYOP63XNt9DxSHqwJkCuaifu7TKgeoR/hKWzMX+dnQRyj5TaxTC7YkbRsPmJHeD9Vjk9kilI6JK1VfzBaEB/2VPPOuh3V8ui/DTr0jNIxcE3/aUKdAAWFQF2eQRL0z8QK2OavopW+OE5XPaD9ozkYQuiYY+lwapjLA7CJz6nqJ8xt7fZ0fkJoU3/R8XMg7yRQ+Qa+rUoFbrGCJ+oFAdOnjel2qmWWZ6WtSoYhKFBwKeUUh7TYNgfayJfkzRwAW7QEZ27VrAR+mRcT3UbQAV6adfV3OIsAtmYNtzZI9Ztfe4Wbj3peF9vwHBwnhY7xsyTVkDkCAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUpzKMCIEGqIlRVsQ4SKw2/diBmKMwHwYDVR0jBBgwFoAUSEREVDzngf0UDq7LqVMswZ9lQ0UwNAYDVR0RBC0wK4IFeWEucnWCCnlhbmRleC5jb22CFnhuLS1kMWFjcGp4M2YueG4tLXAxYWkwDQYJKoZIhvcNAQELBQADggEBACTMyZ5ZZyF3TLhtuH24btqq3CtqZIhq5m7YXU5UP8WStoLlpKkT+yMW/zBxO4bWRbKI1YI4VE0+X2vh4dkRTTd3EqJZuMRpbIZahRVlr6Yq9aaAI2vbW5NsEs75HmB8pcl6XtMH4mn2Wrmx0jtl8RrL8R8+vxfVOTVKePlGIIe4ASxkq5IJtOQ6wDHGxKdaG7uFBccvE2F7XDC6fpfPF0qW1taOzhKsYhska/UCsWiiODNHxJKBRvpHII7gjYTEqcBbVWIGo0e7S8UYWWsbR5vuf21Gf9G57MPyfdy8fktedxalcpO16npCDnDDYveWaVBInE8fK1GNX04Ex62G5wM=", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.018094, + "t": 0.02697, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 7 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVANJYgi54v5/QfrU3nRpqe0NIgoAZMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQAntU0Vr+agjnaNHpBh/HM9KtDbt1KsP3fAkZ5I2ZNCLyLdinpE3hqQYpI0dPEeI2O17YrefzN5/C3L8bU7jamlyYe00G2AfWdFzoKjsfxaPkPH2PjOqP8tyYPfQfb0l49dbSP+jdmQ5WqFY7w99yE1uV86QREyyh/YsIh5ErVZWr2u9G5cRrwZiPSa55paY/iCJxNIq7pZKRGiPPqfkwFe4/CDhLLchXErkkh52HvyCnplGWzWWawVj/caP04Vx0O0F6FWLkNAaQLSSK7vZ46uf99S1L6uEMXX+UfRHkVWOE5TNcaywR5dbO9Uyxy8sregfmMqm16ixX6rk+2wRUkA", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.018223, + "t": 0.027294, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 10 + }, + { + "network": "tcp", + "address": "5.255.255.88:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAPwU83OD5+tl+NDZJh2y+KdSHyNNMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCs63RJ+BFBVoEvyDRndNoqosd2r0nbFZ2OIprkJAYnlPCB3wZGgJ8OtepqYMaK8QfY/oessDG8+a+6TUp5i27u77Gxw3xalvSpjwbRmU65C4W/LeKf10sXckHSk98m3gyh7v6bHtG33z6GK0m9KXjfmPYNPybVUonE/WcHvfEb42Z1j+AuiVtK74wCuWG4KzCfKxYcqefCIHEHhoPIhH29aVv73/RXlazsfC4GofDEBakdxUbscBvpUASr5WDDkDa1YBfPLYipQnvDqG2Bqb0ALkG4I44WhLiSPmljx9IZBqu97NIqlzGthur2Kn2EsX8kTjR3aj8EMkXBvnccom3j", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.017978, + "t": 0.027663, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 8 + }, + { + "network": "tcp", + "address": "77.88.55.77:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAMdj+f3yBlK57zYP2duUMCW2d6TnMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQBJpfNqawfh/bfFnb3UjA80WHXwLvPGOzA9Sbic7y4RJpEBqGAY8zDjsbgXSTSrWjGA3/IWwst8Mytg/qs9ubTLwktCeFgYH8nuP7gHxR5XuqgXvVAdX1Te0tZIjgWDF/x8WTDt9mHsAJxILI5nvvNU+t5E2kf1OWPyzgQgFqITsOYghyLzuKZhcuOEWd3pM3YK2ypBznt5YAFskE7IBHAAHuTz5ZXuGdcoWe+qpVGl59MAwWAgLVBLbz1bJLc08tPGxGEHRjyMQPTzLqpg8aU8fY3otWqzBL/P0mKDmIKgyhwv3rajjd7qE5gyRU3KhF+P51A2JhfRVHIbNIAflbup", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "xn--d1acpjx3f.xn--p1ai", + "t0": 0.018339, + "t": 0.028009, + "tags": [ + "depth=0", + "fetch_body=false" + ], + "tls_version": "TLSv1.3", + "transaction_id": 9 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVANJYgi54v5/QfrU3nRpqe0NIgoAZMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQAntU0Vr+agjnaNHpBh/HM9KtDbt1KsP3fAkZ5I2ZNCLyLdinpE3hqQYpI0dPEeI2O17YrefzN5/C3L8bU7jamlyYe00G2AfWdFzoKjsfxaPkPH2PjOqP8tyYPfQfb0l49dbSP+jdmQ5WqFY7w99yE1uV86QREyyh/YsIh5ErVZWr2u9G5cRrwZiPSa55paY/iCJxNIq7pZKRGiPPqfkwFe4/CDhLLchXErkkh52HvyCnplGWzWWawVj/caP04Vx0O0F6FWLkNAaQLSSK7vZ46uf99S1L6uEMXX+UfRHkVWOE5TNcaywR5dbO9Uyxy8sregfmMqm16ixX6rk+2wRUkA", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.040904, + "t": 0.05012, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 16 + }, + { + "network": "tcp", + "address": "5.255.255.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgjCCAmqgAwIBAgIUaMD6liZMrCdOxHdl8ptD1KAfgxUwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIzMTAzNzExWhcNMjQwMTIzMTIzNzExWjAoMRYwFAYDVQQKEw1PT05JIE5ldGVtIENBMQ4wDAYDVQQDEwV5YS5ydTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANne/a7sq/SCyO+3cpTvYOP63XNt9DxSHqwJkCuaifu7TKgeoR/hKWzMX+dnQRyj5TaxTC7YkbRsPmJHeD9Vjk9kilI6JK1VfzBaEB/2VPPOuh3V8ui/DTr0jNIxcE3/aUKdAAWFQF2eQRL0z8QK2OavopW+OE5XPaD9ozkYQuiYY+lwapjLA7CJz6nqJ8xt7fZ0fkJoU3/R8XMg7yRQ+Qa+rUoFbrGCJ+oFAdOnjel2qmWWZ6WtSoYhKFBwKeUUh7TYNgfayJfkzRwAW7QEZ27VrAR+mRcT3UbQAV6adfV3OIsAtmYNtzZI9Ztfe4Wbj3peF9vwHBwnhY7xsyTVkDkCAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUpzKMCIEGqIlRVsQ4SKw2/diBmKMwHwYDVR0jBBgwFoAUSEREVDzngf0UDq7LqVMswZ9lQ0UwNAYDVR0RBC0wK4IFeWEucnWCCnlhbmRleC5jb22CFnhuLS1kMWFjcGp4M2YueG4tLXAxYWkwDQYJKoZIhvcNAQELBQADggEBACTMyZ5ZZyF3TLhtuH24btqq3CtqZIhq5m7YXU5UP8WStoLlpKkT+yMW/zBxO4bWRbKI1YI4VE0+X2vh4dkRTTd3EqJZuMRpbIZahRVlr6Yq9aaAI2vbW5NsEs75HmB8pcl6XtMH4mn2Wrmx0jtl8RrL8R8+vxfVOTVKePlGIIe4ASxkq5IJtOQ6wDHGxKdaG7uFBccvE2F7XDC6fpfPF0qW1taOzhKsYhska/UCsWiiODNHxJKBRvpHII7gjYTEqcBbVWIGo0e7S8UYWWsbR5vuf21Gf9G57MPyfdy8fktedxalcpO16npCDnDDYveWaVBInE8fK1GNX04Ex62G5wM=", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.040678, + "t": 0.050239, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 13 + }, + { + "network": "tcp", + "address": "77.88.55.77:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAMdj+f3yBlK57zYP2duUMCW2d6TnMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQBJpfNqawfh/bfFnb3UjA80WHXwLvPGOzA9Sbic7y4RJpEBqGAY8zDjsbgXSTSrWjGA3/IWwst8Mytg/qs9ubTLwktCeFgYH8nuP7gHxR5XuqgXvVAdX1Te0tZIjgWDF/x8WTDt9mHsAJxILI5nvvNU+t5E2kf1OWPyzgQgFqITsOYghyLzuKZhcuOEWd3pM3YK2ypBznt5YAFskE7IBHAAHuTz5ZXuGdcoWe+qpVGl59MAwWAgLVBLbz1bJLc08tPGxGEHRjyMQPTzLqpg8aU8fY3otWqzBL/P0mKDmIKgyhwv3rajjd7qE5gyRU3KhF+P51A2JhfRVHIbNIAflbup", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.041143, + "t": 0.050362, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 15 + }, + { + "network": "tcp", + "address": "5.255.255.88:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAPwU83OD5+tl+NDZJh2y+KdSHyNNMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCs63RJ+BFBVoEvyDRndNoqosd2r0nbFZ2OIprkJAYnlPCB3wZGgJ8OtepqYMaK8QfY/oessDG8+a+6TUp5i27u77Gxw3xalvSpjwbRmU65C4W/LeKf10sXckHSk98m3gyh7v6bHtG33z6GK0m9KXjfmPYNPybVUonE/WcHvfEb42Z1j+AuiVtK74wCuWG4KzCfKxYcqefCIHEHhoPIhH29aVv73/RXlazsfC4GofDEBakdxUbscBvpUASr5WDDkDa1YBfPLYipQnvDqG2Bqb0ALkG4I44WhLiSPmljx9IZBqu97NIqlzGthur2Kn2EsX8kTjR3aj8EMkXBvnccom3j", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "yandex.com", + "t0": 0.04102, + "t": 0.050644, + "tags": [ + "depth=1", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 14 + }, + { + "network": "tcp", + "address": "5.255.255.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgjCCAmqgAwIBAgIUaMD6liZMrCdOxHdl8ptD1KAfgxUwDQYJKoZIhvcNAQELBQAwHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwHhcNMjQwMTIzMTAzNzExWhcNMjQwMTIzMTIzNzExWjAoMRYwFAYDVQQKEw1PT05JIE5ldGVtIENBMQ4wDAYDVQQDEwV5YS5ydTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANne/a7sq/SCyO+3cpTvYOP63XNt9DxSHqwJkCuaifu7TKgeoR/hKWzMX+dnQRyj5TaxTC7YkbRsPmJHeD9Vjk9kilI6JK1VfzBaEB/2VPPOuh3V8ui/DTr0jNIxcE3/aUKdAAWFQF2eQRL0z8QK2OavopW+OE5XPaD9ozkYQuiYY+lwapjLA7CJz6nqJ8xt7fZ0fkJoU3/R8XMg7yRQ+Qa+rUoFbrGCJ+oFAdOnjel2qmWWZ6WtSoYhKFBwKeUUh7TYNgfayJfkzRwAW7QEZ27VrAR+mRcT3UbQAV6adfV3OIsAtmYNtzZI9Ztfe4Wbj3peF9vwHBwnhY7xsyTVkDkCAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUpzKMCIEGqIlRVsQ4SKw2/diBmKMwHwYDVR0jBBgwFoAUSEREVDzngf0UDq7LqVMswZ9lQ0UwNAYDVR0RBC0wK4IFeWEucnWCCnlhbmRleC5jb22CFnhuLS1kMWFjcGp4M2YueG4tLXAxYWkwDQYJKoZIhvcNAQELBQADggEBACTMyZ5ZZyF3TLhtuH24btqq3CtqZIhq5m7YXU5UP8WStoLlpKkT+yMW/zBxO4bWRbKI1YI4VE0+X2vh4dkRTTd3EqJZuMRpbIZahRVlr6Yq9aaAI2vbW5NsEs75HmB8pcl6XtMH4mn2Wrmx0jtl8RrL8R8+vxfVOTVKePlGIIe4ASxkq5IJtOQ6wDHGxKdaG7uFBccvE2F7XDC6fpfPF0qW1taOzhKsYhska/UCsWiiODNHxJKBRvpHII7gjYTEqcBbVWIGo0e7S8UYWWsbR5vuf21Gf9G57MPyfdy8fktedxalcpO16npCDnDDYveWaVBInE8fK1GNX04Ex62G5wM=", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.073192, + "t": 0.081582, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 19 + }, + { + "network": "tcp", + "address": "5.255.255.88:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAPwU83OD5+tl+NDZJh2y+KdSHyNNMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQCs63RJ+BFBVoEvyDRndNoqosd2r0nbFZ2OIprkJAYnlPCB3wZGgJ8OtepqYMaK8QfY/oessDG8+a+6TUp5i27u77Gxw3xalvSpjwbRmU65C4W/LeKf10sXckHSk98m3gyh7v6bHtG33z6GK0m9KXjfmPYNPybVUonE/WcHvfEb42Z1j+AuiVtK74wCuWG4KzCfKxYcqefCIHEHhoPIhH29aVv73/RXlazsfC4GofDEBakdxUbscBvpUASr5WDDkDa1YBfPLYipQnvDqG2Bqb0ALkG4I44WhLiSPmljx9IZBqu97NIqlzGthur2Kn2EsX8kTjR3aj8EMkXBvnccom3j", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.073653, + "t": 0.081806, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 20 + }, + { + "network": "tcp", + "address": "77.88.55.80:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVANJYgi54v5/QfrU3nRpqe0NIgoAZMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQAntU0Vr+agjnaNHpBh/HM9KtDbt1KsP3fAkZ5I2ZNCLyLdinpE3hqQYpI0dPEeI2O17YrefzN5/C3L8bU7jamlyYe00G2AfWdFzoKjsfxaPkPH2PjOqP8tyYPfQfb0l49dbSP+jdmQ5WqFY7w99yE1uV86QREyyh/YsIh5ErVZWr2u9G5cRrwZiPSa55paY/iCJxNIq7pZKRGiPPqfkwFe4/CDhLLchXErkkh52HvyCnplGWzWWawVj/caP04Vx0O0F6FWLkNAaQLSSK7vZ46uf99S1L6uEMXX+UfRHkVWOE5TNcaywR5dbO9Uyxy8sregfmMqm16ixX6rk+2wRUkA", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.074014, + "t": 0.083355, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 22 + }, + { + "network": "tcp", + "address": "77.88.55.77:443", + "cipher_suite": "TLS_AES_128_GCM_SHA256", + "failure": null, + "negotiated_protocol": "http/1.1", + "no_tls_verify": false, + "peer_certificates": [ + { + "data": "MIIDgzCCAmugAwIBAgIVAMdj+f3yBlK57zYP2duUMCW2d6TnMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMzEwMzcxMVoXDTI0MDEyMzEyMzcxMVowKDEWMBQGA1UEChMNT09OSSBOZXRlbSBDQTEOMAwGA1UEAxMFeWEucnUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ3v2u7Kv0gsjvt3KU72Dj+t1zbfQ8Uh6sCZArmon7u0yoHqEf4SlszF/nZ0Eco+U2sUwu2JG0bD5iR3g/VY5PZIpSOiStVX8wWhAf9lTzzrod1fLovw069IzSMXBN/2lCnQAFhUBdnkES9M/ECtjmr6KVvjhOVz2g/aM5GELomGPpcGqYywOwic+p6ifMbe32dH5CaFN/0fFzIO8kUPkGvq1KBW6xgifqBQHTp43pdqpllmelrUqGIShQcCnlFIe02DYH2siX5M0cAFu0BGdu1awEfpkXE91G0AFemnX1dziLALZmDbc2SPWbX3uFm496Xhfb8BwcJ4WO8bMk1ZA5AgMBAAGjgawwgakwDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFKcyjAiBBqiJUVbEOEisNv3YgZijMB8GA1UdIwQYMBaAFEhERFQ854H9FA6uy6lTLMGfZUNFMDQGA1UdEQQtMCuCBXlhLnJ1ggp5YW5kZXguY29tghZ4bi0tZDFhY3BqeDNmLnhuLS1wMWFpMA0GCSqGSIb3DQEBCwUAA4IBAQBJpfNqawfh/bfFnb3UjA80WHXwLvPGOzA9Sbic7y4RJpEBqGAY8zDjsbgXSTSrWjGA3/IWwst8Mytg/qs9ubTLwktCeFgYH8nuP7gHxR5XuqgXvVAdX1Te0tZIjgWDF/x8WTDt9mHsAJxILI5nvvNU+t5E2kf1OWPyzgQgFqITsOYghyLzuKZhcuOEWd3pM3YK2ypBznt5YAFskE7IBHAAHuTz5ZXuGdcoWe+qpVGl59MAwWAgLVBLbz1bJLc08tPGxGEHRjyMQPTzLqpg8aU8fY3otWqzBL/P0mKDmIKgyhwv3rajjd7qE5gyRU3KhF+P51A2JhfRVHIbNIAflbup", + "format": "base64" + }, + { + "data": "MIIDNjCCAh6gAwIBAgIVAKAPj6PM5Ql3ZaJDhuTrkGmTFmYWMA0GCSqGSIb3DQEBCwUAMB8xDTALBgNVBAoTBE9PTkkxDjAMBgNVBAMTBWphZmFyMB4XDTI0MDEyMjExMzcxMVoXDTI0MDEyNDExMzcxMVowHzENMAsGA1UEChMET09OSTEOMAwGA1UEAxMFamFmYXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDFMdTx0CB9So9Wm9k05nxrzte8UfpTSzf0nNuRlJXXOUO+CpVMbMCNkOSbYpsZ4SOyiSoQmpgE9fj1C7CZDqyxFgObuVQBcswWZkKX/WjXKsXqKZJVHmy+GRW30SaDB+doinulxjoJWo3RXMp9eoobJwz0xU5wz+cfXUIzvgxUQCC4Vwj6zI826D/+IvzBfRygVNGTq5iQotnjFFQv0e7jTdVFxsoJ2UjPQgEVaHe2WTnBPOOe4l9KdQPyCLaz0Wli5Ty5TT+zaZjNcw1JDVXTtLZRaZKAegdgkaofj3KzLNxC2hkkwPiZmtUDwDCKLgpg/274gjNalSHUP144PFKXAgMBAAGjaTBnMA4GA1UdDwEB/wQEAwICpDATBgNVHSUEDDAKBggrBgEFBQcDATAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRIRERUPOeB/RQOrsupUyzBn2VDRTAQBgNVHREECTAHggVqYWZhcjANBgkqhkiG9w0BAQsFAAOCAQEAgC9F7+2DN6mMFTk6wAl0eXC5ma/q7cIg+7E0SiFRsTajFOkBX95Og4XU6uBg/G84JBHFg/PwdIkt9mYFWT5PIpVCxBFIck9JPVA1Io+squrUb4vLziDY42dDHX/Q6cHQBNx5WkDZDkjcOc98iVbsd0SwBsVF/p7Q0wTLP3WJN+XCJofeX3WDAelv9QdHYF5qZ9xiw/YM+qy7KRc8bER/jp13NsIfcLEkZ6Wb0oCQYFHFibAdUVh6KWtixFTS9Ze0/dMKBog5nwXP767XfJBJk3A8V0NuWbpUEVo3PfaQsNXVjinnLe00sb/ebjpLfvS9tQ386GxyoF0WBiFxSBWmeA==", + "format": "base64" + } + ], + "server_name": "ya.ru", + "t0": 0.074374, + "t": 0.08372, + "tags": [ + "depth=2", + "fetch_body=true" + ], + "tls_version": "TLSv1.3", + "transaction_id": 21 + } + ], + "x_control_request": { + "http_request": "http://xn--d1acpjx3f.xn--p1ai/", + "http_request_headers": { + "Accept": [ + "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" + ], + "Accept-Language": [ + "en-US,en;q=0.9" + ], + "User-Agent": [ + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.3" + ] + }, + "tcp_connect": [ + "5.255.255.80:443", + "5.255.255.80:80", + "5.255.255.88:443", + "5.255.255.88:80", + "77.88.55.77:443", + "77.88.55.77:80", + "77.88.55.80:443", + "77.88.55.80:80" + ], + "x_quic_enabled": false + }, + "control": { + "tcp_connect": { + "5.255.255.80:443": { + "status": true, + "failure": null + }, + "5.255.255.80:80": { + "status": true, + "failure": null + }, + "5.255.255.88:443": { + "status": true, + "failure": null + }, + "5.255.255.88:80": { + "status": true, + "failure": null + }, + "77.88.55.77:443": { + "status": true, + "failure": null + }, + "77.88.55.77:80": { + "status": true, + "failure": null + }, + "77.88.55.80:443": { + "status": true, + "failure": null + }, + "77.88.55.80:80": { + "status": true, + "failure": null + } + }, + "tls_handshake": { + "5.255.255.80:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + }, + "5.255.255.88:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + }, + "77.88.55.77:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + }, + "77.88.55.80:443": { + "server_name": "xn--d1acpjx3f.xn--p1ai", + "status": true, + "failure": null + } + }, + "quic_handshake": {}, + "http_request": { + "body_length": 1533, + "discovered_h3_endpoint": "xn--d1acpjx3f.xn--p1ai:443", + "failure": null, + "title": "Default Web Page", + "headers": { + "Alt-Svc": "h3=\":443\"", + "Content-Length": "1533", + "Content-Type": "text/html; charset=utf-8", + "Date": "Thu, 24 Aug 2023 14:35:29 GMT" + }, + "status_code": 200 + }, + "http3_request": null, + "dns": { + "failure": null, + "addrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ] + }, + "ip_info": { + "5.255.255.80": { + "asn": 208398, + "flags": 11 + }, + "5.255.255.88": { + "asn": 208398, + "flags": 11 + }, + "77.88.55.77": { + "asn": 208398, + "flags": 11 + }, + "77.88.55.80": { + "asn": 208398, + "flags": 11 + } + } + }, + "x_conn_priority_log": [ + { + "msg": "create with [{Addr:5.255.255.80 Flags:3} {Addr:5.255.255.88 Flags:3} {Addr:77.88.55.77 Flags:3} {Addr:77.88.55.80 Flags:3}]", + "t": 0.011406 + }, + { + "msg": "conn 77.88.55.80:80: granted permission: true", + "t": 0.016789 + }, + { + "msg": "conn 5.255.255.80:80: denied permission: timed out sending", + "t": 0.026925 + }, + { + "msg": "conn 5.255.255.88:80: denied permission: timed out sending", + "t": 0.027074 + }, + { + "msg": "conn 77.88.55.77:80: denied permission: timed out sending", + "t": 0.027146 + }, + { + "msg": "create with [{Addr:5.255.255.80 Flags:3} {Addr:5.255.255.88 Flags:3} {Addr:77.88.55.77 Flags:3} {Addr:77.88.55.80 Flags:3}]", + "t": 0.035145 + }, + { + "msg": "conn 77.88.55.80:443: granted permission: true", + "t": 0.050128 + }, + { + "msg": "conn 5.255.255.80:443: denied permission: timed out sending", + "t": 0.060266 + }, + { + "msg": "conn 77.88.55.77:443: denied permission: timed out sending", + "t": 0.060386 + }, + { + "msg": "conn 5.255.255.88:443: denied permission: timed out sending", + "t": 0.060662 + }, + { + "msg": "create with [{Addr:5.255.255.80 Flags:3} {Addr:5.255.255.88 Flags:3} {Addr:77.88.55.77 Flags:3} {Addr:77.88.55.80 Flags:3}]", + "t": 0.068028 + }, + { + "msg": "conn 5.255.255.80:443: granted permission: true", + "t": 0.08159 + }, + { + "msg": "conn 5.255.255.88:443: denied permission: timed out sending", + "t": 0.091826 + }, + { + "msg": "conn 77.88.55.80:443: denied permission: timed out sending", + "t": 0.093386 + }, + { + "msg": "conn 77.88.55.77:443: denied permission: timed out sending", + "t": 0.09374 + } + ], + "control_failure": null, + "x_dns_flags": 0, + "dns_experiment_failure": null, + "dns_consistency": "consistent", + "http_experiment_failure": null, + "x_blocking_flags": 32, + "x_null_null_flags": 0, + "body_proportion": 1, + "body_length_match": true, + "headers_match": true, + "status_code_match": true, + "title_match": true, + "blocking": false, + "accessible": true + }, + "test_name": "web_connectivity", + "test_runtime": 0.562683, + "test_start_time": "2024-01-23 11:37:11", + "test_version": "0.5.28" +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/observations.json new file mode 100644 index 0000000000..a8fb130bbb --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/observations.json @@ -0,0 +1,2378 @@ +{ + "DNSLookupFailures": [ + { + "TagDepth": 0, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "dns_no_answer", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "dns_no_answer", + "DNSQueryType": "AAAA", + "DNSEngine": "udp", + "DNSResolvedAddrs": null, + "IPAddress": null, + "IPAddressASN": null, + "IPAddressBogon": null, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ], + "DNSLookupSuccesses": [ + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 1, + "TagFetchBody": null, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 12, + "TagFetchBody": null, + "DNSTransactionID": 12, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 18, + "TagFetchBody": null, + "DNSTransactionID": 18, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "A", + "DNSEngine": "udp", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ], + "KnownTCPEndpoints": { + "10": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 10, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 10, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "13": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 13, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "14": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "15": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "16": { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "19": { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 19, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "20": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "21": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "22": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "3": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 3, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 3, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "4": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "5": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "6": { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "7": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 7, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 7, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "8": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 8, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 8, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "9": { + "TagDepth": 0, + "Type": 2, + "Failure": "", + "TransactionID": 9, + "TagFetchBody": false, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 9, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "xn--d1acpjx3f.xn--p1ai", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": "", + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + }, + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + } +} \ No newline at end of file diff --git a/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/observations_classic.json new file mode 100644 index 0000000000..8e888a5763 --- /dev/null +++ b/internal/minipipeline/testdata/webconnectivity/generated/idnaWithoutCensorshipWithFirstLetterUppercase/observations_classic.json @@ -0,0 +1,1359 @@ +{ + "DNSLookupFailures": [], + "DNSLookupSuccesses": [ + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 0, + "Type": 0, + "Failure": "", + "TransactionID": 2, + "TagFetchBody": null, + "DNSTransactionID": 2, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 1, + "Type": 0, + "Failure": "", + "TransactionID": 11, + "TagFetchBody": null, + "DNSTransactionID": 11, + "DNSDomain": "yandex.com", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + { + "TagDepth": 2, + "Type": 0, + "Failure": "", + "TransactionID": 17, + "TagFetchBody": null, + "DNSTransactionID": 17, + "DNSDomain": "ya.ru", + "DNSLookupFailure": "", + "DNSQueryType": "ANY", + "DNSEngine": "getaddrinfo", + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": null, + "EndpointProto": null, + "EndpointPort": null, + "EndpointAddress": null, + "TCPConnectFailure": null, + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": null, + "ControlDNSLookupFailure": null, + "ControlDNSResolvedAddrs": null, + "ControlTCPConnectFailure": null, + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + ], + "KnownTCPEndpoints": { + "13": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 13, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 13, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "14": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 14, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 14, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "15": { + "TagDepth": 1, + "Type": 2, + "Failure": "", + "TransactionID": 15, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 15, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "16": { + "TagDepth": 1, + "Type": 3, + "Failure": "", + "TransactionID": 16, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 16, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "yandex.com", + "HTTPRequestURL": "https://yandex.com/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://ya.ru/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "19": { + "TagDepth": 2, + "Type": 3, + "Failure": "", + "TransactionID": 19, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 19, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": "https://ya.ru/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 200, + "HTTPResponseBodyLength": 1533, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "HTTPResponseLocation": null, + "HTTPResponseTitle": "Default Web Page", + "HTTPResponseIsFinal": true, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "20": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 20, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 20, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "5.255.255.88:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "21": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 21, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 21, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.77:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "22": { + "TagDepth": 2, + "Type": 2, + "Failure": "", + "TransactionID": 22, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 22, + "EndpointProto": "tcp", + "EndpointPort": "443", + "EndpointAddress": "77.88.55.80:443", + "TCPConnectFailure": "", + "TLSHandshakeFailure": "", + "TLSServerName": "ya.ru", + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "3": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 3, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 3, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "4": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 4, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "5.255.255.88", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 4, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "5.255.255.88:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "5": { + "TagDepth": 0, + "Type": 1, + "Failure": "", + "TransactionID": 5, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.77", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 5, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.77:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": null, + "HTTPFailure": null, + "HTTPResponseStatusCode": null, + "HTTPResponseBodyLength": null, + "HTTPResponseBodyIsTruncated": null, + "HTTPResponseHeadersKeys": null, + "HTTPResponseLocation": null, + "HTTPResponseTitle": null, + "HTTPResponseIsFinal": null, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + }, + "6": { + "TagDepth": 0, + "Type": 3, + "Failure": "", + "TransactionID": 6, + "TagFetchBody": true, + "DNSTransactionID": 1, + "DNSDomain": "xn--d1acpjx3f.xn--p1ai", + "DNSLookupFailure": "", + "DNSQueryType": null, + "DNSEngine": null, + "DNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "IPAddress": "77.88.55.80", + "IPAddressASN": 208398, + "IPAddressBogon": false, + "EndpointTransactionID": 6, + "EndpointProto": "tcp", + "EndpointPort": "80", + "EndpointAddress": "77.88.55.80:80", + "TCPConnectFailure": "", + "TLSHandshakeFailure": null, + "TLSServerName": null, + "HTTPRequestURL": "http://xn--d1acpjx3f.xn--p1ai/", + "HTTPFailure": "", + "HTTPResponseStatusCode": 308, + "HTTPResponseBodyLength": 0, + "HTTPResponseBodyIsTruncated": false, + "HTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Date": true, + "Location": true + }, + "HTTPResponseLocation": "https://yandex.com/", + "HTTPResponseTitle": "", + "HTTPResponseIsFinal": false, + "ControlDNSDomain": "xn--d1acpjx3f.xn--p1ai", + "ControlDNSLookupFailure": "", + "ControlDNSResolvedAddrs": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "ControlTCPConnectFailure": "", + "ControlTLSHandshakeFailure": null, + "ControlHTTPFailure": "", + "ControlHTTPResponseStatusCode": 200, + "ControlHTTPResponseBodyLength": 1533, + "ControlHTTPResponseHeadersKeys": { + "Alt-Svc": true, + "Content-Length": true, + "Content-Type": true, + "Date": true + }, + "ControlHTTPResponseTitle": "Default Web Page" + } + }, + "ControlExpectations": { + "DNSAddresses": [ + "5.255.255.80", + "5.255.255.88", + "77.88.55.77", + "77.88.55.80" + ], + "FinalResponseFailure": "" + } +} \ No newline at end of file diff --git a/internal/model/ooapi.go b/internal/model/ooapi.go index dd2ca3f8c8..940bc4ce5a 100644 --- a/internal/model/ooapi.go +++ b/internal/model/ooapi.go @@ -212,8 +212,8 @@ type OOAPICollectorUpdateRequest struct { // OOAPICollectorUpdateResponse is the response from the collector update API. type OOAPICollectorUpdateResponse struct { - // MeasurementID is the measurement ID. - MeasurementID string `json:"measurement_id"` + // MeasurementUID is the measurement UID. + MeasurementUID string `json:"measurement_uid"` } // OOAPILoginCredentials contains the login credentials diff --git a/internal/netemx/address.go b/internal/netemx/address.go index a80f3a08f4..cca1cb7e58 100644 --- a/internal/netemx/address.go +++ b/internal/netemx/address.go @@ -58,3 +58,15 @@ const AddressBitly = "67.199.248.11" // AddressBadSSLCom is the IP address of badssl.com. const AddressBadSSLCom = "104.154.89.105" + +// AddressYandexCom1 is the first address associated with yandex.com. +const AddressYandexCom1 = "5.255.255.80" + +// AddressYandexCom2 is the second address associated with yandex.com. +const AddressYandexCom2 = "5.255.255.88" + +// AddressYandexCom3 is the third address associated with yandex.com. +const AddressYandexCom3 = "77.88.55.77" + +// AddressYandexCom4 is the fourth address associated with yandex.com. +const AddressYandexCom4 = "77.88.55.80" diff --git a/internal/netemx/scenario.go b/internal/netemx/scenario.go index b5b5a0f7cf..0df92b5db9 100644 --- a/internal/netemx/scenario.go +++ b/internal/netemx/scenario.go @@ -188,6 +188,25 @@ var InternetScenario = []*ScenarioDomainAddresses{{ Role: ScenarioRoleBadSSL, ServerNameMain: "badssl.com", ServerNameExtras: []string{}, +}, { + Addresses: []string{ + AddressYandexCom1, + AddressYandexCom2, + AddressYandexCom3, + AddressYandexCom4, + }, + Domains: []string{ + "yandex.com", + "ya.ru", + "xn--d1acpjx3f.xn--p1ai", + }, + Role: ScenarioRoleWebServer, + ServerNameMain: "ya.ru", + ServerNameExtras: []string{ + "yandex.com", + "xn--d1acpjx3f.xn--p1ai", + }, + WebServerFactory: YandexHandlerFactory(), }} // MustNewScenario constructs a complete testing scenario using the domains and IP diff --git a/internal/netemx/yandex.go b/internal/netemx/yandex.go new file mode 100644 index 0000000000..d521939b21 --- /dev/null +++ b/internal/netemx/yandex.go @@ -0,0 +1,49 @@ +package netemx + +import ( + "net" + "net/http" + + "github.com/ooni/netem" +) + +// YandexHandlerFactory implements yandex.com. +func YandexHandlerFactory() HTTPHandlerFactory { + return HTTPHandlerFactoryFunc(func(env NetStackServerFactoryEnv, stack *netem.UNetStack) http.Handler { + return YandexHandler() + }) +} + +// YandexHandler returns the [http.Handler] for yandex. +func YandexHandler() http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Alt-Svc", `h3=":443"`) + w.Header().Add("Date", "Thu, 24 Aug 2023 14:35:29 GMT") + + // According to Go documentation, the host header is removed from the + // header fields and included as (*Request).Host + // + // Empirically, this field could either contain an host name or it could + // be an endpoint, i.e., it could also contain an optional port + host := r.Host + if h, _, err := net.SplitHostPort(host); err == nil { + host = h + } + + switch host { + case "ya.ru": + w.Write([]byte(ExampleWebPage)) + + case "yandex.com": + w.Header().Add("Location", "https://ya.ru/") + w.WriteHeader(http.StatusPermanentRedirect) + + case "xn--d1acpjx3f.xn--p1ai": + w.Header().Add("Location", "https://yandex.com/") + w.WriteHeader(http.StatusPermanentRedirect) + + default: + w.WriteHeader(http.StatusBadRequest) + } + }) +} diff --git a/internal/netemx/yandex_test.go b/internal/netemx/yandex_test.go new file mode 100644 index 0000000000..b31daa7640 --- /dev/null +++ b/internal/netemx/yandex_test.go @@ -0,0 +1,99 @@ +package netemx + +import ( + "net/http" + "net/http/httptest" + "net/url" + "testing" +) + +func TestYandexHandlerFactory(t *testing.T) { + t.Run("we're redirected if the host is xn--d1acpjx3f.xn--p1ai", func(t *testing.T) { + req := &http.Request{ + URL: &url.URL{Path: "/"}, + Body: http.NoBody, + Close: false, + Host: "xn--d1acpjx3f.xn--p1ai", + } + rr := httptest.NewRecorder() + handler := YandexHandler() + handler.ServeHTTP(rr, req) + result := rr.Result() + if result.StatusCode != http.StatusPermanentRedirect { + t.Fatal("unexpected status code", result.StatusCode) + } + if loc := result.Header.Get("Location"); loc != "https://yandex.com/" { + t.Fatal("unexpected location", loc) + } + }) + + t.Run("we're redirected if the host is yandex.com", func(t *testing.T) { + req := &http.Request{ + URL: &url.URL{Path: "/"}, + Body: http.NoBody, + Close: false, + Host: "yandex.com", + } + rr := httptest.NewRecorder() + handler := YandexHandler() + handler.ServeHTTP(rr, req) + result := rr.Result() + if result.StatusCode != http.StatusPermanentRedirect { + t.Fatal("unexpected status code", result.StatusCode) + } + if loc := result.Header.Get("Location"); loc != "https://ya.ru/" { + t.Fatal("unexpected location", loc) + } + }) + + t.Run("we correctly handle the presence of a port", func(t *testing.T) { + req := &http.Request{ + URL: &url.URL{Path: "/"}, + Body: http.NoBody, + Close: false, + Host: "yandex.com:80", + } + rr := httptest.NewRecorder() + handler := YandexHandler() + handler.ServeHTTP(rr, req) + result := rr.Result() + if result.StatusCode != http.StatusPermanentRedirect { + t.Fatal("unexpected status code", result.StatusCode) + } + if loc := result.Header.Get("Location"); loc != "https://ya.ru/" { + t.Fatal("unexpected location", loc) + } + }) + + t.Run("we get 200 for ya.ru", func(t *testing.T) { + req := &http.Request{ + URL: &url.URL{Path: "/"}, + Body: http.NoBody, + Close: false, + Host: "ya.ru", + } + rr := httptest.NewRecorder() + handler := YandexHandler() + handler.ServeHTTP(rr, req) + result := rr.Result() + if result.StatusCode != http.StatusOK { + t.Fatal("unexpected status code", result.StatusCode) + } + }) + + t.Run("we get a 400 for an unknown host", func(t *testing.T) { + req := &http.Request{ + URL: &url.URL{Path: "/"}, + Body: http.NoBody, + Close: false, + Host: "antani.xyz", + } + rr := httptest.NewRecorder() + handler := YandexHandler() + handler.ServeHTTP(rr, req) + result := rr.Result() + if result.StatusCode != http.StatusBadRequest { + t.Fatal("unexpected status code", result.StatusCode) + } + }) +} diff --git a/internal/netxlite/resolvercore.go b/internal/netxlite/resolvercore.go index 93f3b93081..48119288ed 100644 --- a/internal/netxlite/resolvercore.go +++ b/internal/netxlite/resolvercore.go @@ -14,8 +14,8 @@ import ( "time" "github.com/miekg/dns" + "github.com/ooni/probe-cli/v3/internal/idnax" "github.com/ooni/probe-cli/v3/internal/model" - "golang.org/x/net/idna" ) // ErrNoDNSTransport is the error returned when you attempt to perform @@ -246,7 +246,7 @@ type resolverIDNA struct { var _ model.Resolver = &resolverIDNA{} func (r *resolverIDNA) LookupHost(ctx context.Context, hostname string) ([]string, error) { - host, err := idna.ToASCII(hostname) + host, err := idnax.ToASCII(hostname) if err != nil { return nil, err } @@ -255,7 +255,7 @@ func (r *resolverIDNA) LookupHost(ctx context.Context, hostname string) ([]strin func (r *resolverIDNA) LookupHTTPS( ctx context.Context, domain string) (*model.HTTPSSvc, error) { - host, err := idna.ToASCII(domain) + host, err := idnax.ToASCII(domain) if err != nil { return nil, err } @@ -276,7 +276,7 @@ func (r *resolverIDNA) CloseIdleConnections() { func (r *resolverIDNA) LookupNS( ctx context.Context, domain string) ([]*net.NS, error) { - host, err := idna.ToASCII(domain) + host, err := idnax.ToASCII(domain) if err != nil { return nil, err } diff --git a/internal/netxlite/resolvercore_test.go b/internal/netxlite/resolvercore_test.go index ef86d41fa8..57b58fad33 100644 --- a/internal/netxlite/resolvercore_test.go +++ b/internal/netxlite/resolvercore_test.go @@ -18,8 +18,8 @@ import ( ) func typeCheckForSystemResolver(t *testing.T, resolver model.Resolver, logger model.DebugLogger) { - idna := resolver.(*resolverIDNA) - loggerReso := idna.Resolver.(*resolverLogger) + idnaReso := resolver.(*resolverIDNA) + loggerReso := idnaReso.Resolver.(*resolverLogger) if loggerReso.Logger != logger { t.Fatal("invalid logger") } @@ -38,8 +38,8 @@ func TestNewResolverSystem(t *testing.T) { func TestNewSerialUDPResolver(t *testing.T) { d := NewDialerWithoutResolver(log.Log) resolver := NewSerialUDPResolver(log.Log, d, "1.1.1.1:53") - idna := resolver.(*resolverIDNA) - logger := idna.Resolver.(*resolverLogger) + idnaReso := resolver.(*resolverIDNA) + logger := idnaReso.Resolver.(*resolverLogger) if logger.Logger != log.Log { t.Fatal("invalid logger") } @@ -56,8 +56,8 @@ func TestNewSerialUDPResolver(t *testing.T) { func TestNewParallelUDPResolver(t *testing.T) { d := NewDialerWithoutResolver(log.Log) resolver := NewParallelUDPResolver(log.Log, d, "1.1.1.1:53") - idna := resolver.(*resolverIDNA) - logger := idna.Resolver.(*resolverLogger) + idnaReso := resolver.(*resolverIDNA) + logger := idnaReso.Resolver.(*resolverLogger) if logger.Logger != log.Log { t.Fatal("invalid logger") } @@ -73,8 +73,8 @@ func TestNewParallelUDPResolver(t *testing.T) { func TestNewParallelDNSOverHTTPSResolver(t *testing.T) { resolver := NewParallelDNSOverHTTPSResolver(log.Log, "https://1.1.1.1/dns-query") - idna := resolver.(*resolverIDNA) - logger := idna.Resolver.(*resolverLogger) + idnaReso := resolver.(*resolverIDNA) + logger := idnaReso.Resolver.(*resolverLogger) if logger.Logger != log.Log { t.Fatal("invalid logger") } diff --git a/internal/probeservices/collector.go b/internal/probeservices/collector.go index 54818f2749..df25570fec 100644 --- a/internal/probeservices/collector.go +++ b/internal/probeservices/collector.go @@ -4,6 +4,7 @@ import ( "context" "errors" "fmt" + "log" "reflect" "sync" @@ -13,10 +14,10 @@ import ( var ( // ErrUnsupportedDataFormatVersion indicates that the user provided // in input a data format version that we do not support. - ErrUnsupportedDataFormatVersion = errors.New("Unsupported data format version") + ErrUnsupportedDataFormatVersion = errors.New("unsupported data format version") // ErrUnsupportedFormat indicates that the format is not supported. - ErrUnsupportedFormat = errors.New("Unsupported format") + ErrUnsupportedFormat = errors.New("unsupported format") // ErrJSONFormatNotSupported indicates that the collector we're using // does not support the JSON report format. @@ -94,6 +95,9 @@ func (r reportChan) SubmitMeasurement(ctx context.Context, m *model.Measurement) m.ReportID = "" return err } + // TODO(bassosimone): we should use the session logger here but for now this stopgap + // solution will allow observing the measurement URL for CLI users. + log.Printf("Measurement URL: https://explorer.ooni.org/m/%s", updateResponse.MeasurementUID) return nil }