ruby-sslyze 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25b21046df9d3e4510c71640035f1767dbe0c3f9
4
- data.tar.gz: dc0dbc7fcb2630e9bb5e6c197fea5fb01c5a5c7e
3
+ metadata.gz: a401e719011f8dd22bf41cf0d9dc7889e567869d
4
+ data.tar.gz: 1891c35d2cc16ff5e3c33c39a3b769fd0190505b
5
5
  SHA512:
6
- metadata.gz: dfb62b940c461f7aec7174312d2ca590f85333fb946648929d1a5d15c925cb9ac89aae273a3f7b84d6f18b8e04fb09076aa3919e50060d8f1a01d742cb41341a
7
- data.tar.gz: 28240232b1e5051e050b7e1945b4753d13ea1425de6f875eff3591daade88b0d0136f377cd6ff058ca81a1ef4caf830d384ca27ed7af56e8c386411828ac44ae
6
+ metadata.gz: b2c9228222a5c610863772410ecb91e4a738e509f0c8af207f93f0830fcb0db0550c9b2c7ff871c666f58197a655a76e3a621bca0984cbd5fb0cc90907522fd6
7
+ data.tar.gz: 47a1edeae3a5dcdd424a06c472904016bf95ca1d779b3b867bbba2e9c052c048275da63f390681ef65990d9ddf3bb2ddd3f149bce3b3b79f6c191964d9e5e012
@@ -1,3 +1,8 @@
1
+ ### 1.2.0 / 2018-04-03
2
+
3
+ * Replaced `SSLyze::X509::PublicKey` with
4
+ {SSLyze::XML::Certinfo::Certificate::PublicKey}.
5
+
1
6
  ### 1.1.0 / 2018-03-12
2
7
 
3
8
  * Require [sslyze] >= 1.4.0
@@ -20,7 +25,7 @@
20
25
  * Added {SSLyze::X509::Extensions::KeyUsage}.
21
26
  * Added {SSLyze::X509::Extensions::SubjectAltName}.
22
27
  * Added {SSLyze::X509::Name}.
23
- * Added {SSLyze::X509::PublicKey}.
28
+ * Added `SSLyze::X509::PublicKey`.
24
29
  * Moved all XML related classes into {SSLyze::XML}.
25
30
  * Updated {SSLyze::XML} and classes to represent the current sslyze 1.3.4 XSD.
26
31
 
data/Rakefile CHANGED
@@ -19,5 +19,5 @@ YARD::Rake::YardocTask.new
19
19
  task :doc => :yard
20
20
 
21
21
  file 'spec/sslyze.xml' do
22
- sh 'sslyze --xml_out spec/sslyze.xml --regular --resum_rate --http_headers twitter.com github.com:443 www.yahoo.com:443 foo bar'
22
+ sh 'sslyze --xml_out spec/sslyze.xml --regular --resum_rate --http_headers twitter.com github.com:443 www.yahoo.com:443 google.com:443 foo bar'
23
23
  end
@@ -1,4 +1,4 @@
1
1
  module SSLyze
2
2
  # ruby-sslyze version
3
- VERSION = '1.1.0'
3
+ VERSION = '1.2.0'
4
4
  end
@@ -62,7 +62,7 @@ module SSLyze
62
62
  #
63
63
  # The default timeout used.
64
64
  #
65
- # @return [Integer]
65
+ # @return [Integer, nil]
66
66
  #
67
67
  # @since 1.0.0
68
68
  #
@@ -1,7 +1,7 @@
1
1
  require 'sslyze/xml/plugin'
2
+ require 'sslyze/xml/certinfo/certificate/public_key'
2
3
  require 'sslyze/x509/name'
3
4
  require 'sslyze/x509/extension_set'
4
- require 'sslyze/x509/public_key'
5
5
 
6
6
  require 'openssl'
7
7
 
@@ -86,12 +86,12 @@ module SSLyze
86
86
  end
87
87
 
88
88
  #
89
- # @return [X509::PublicKey]
89
+ # @return [PublicKey]
90
90
  #
91
91
  # @group OpenSSL Methods
92
92
  #
93
93
  def public_key
94
- @public_key ||= X509::PublicKey.new(x509.public_key)
94
+ @public_key ||= PublicKey.new(@node.at_xpath('publicKey'))
95
95
  end
96
96
 
97
97
  #
@@ -0,0 +1,84 @@
1
+ require 'sslyze/xml/plugin'
2
+
3
+ module SSLyze
4
+ class XML
5
+ class Certinfo < Plugin
6
+ class Certificate
7
+ #
8
+ # @since 1.2.0
9
+ #
10
+ class PublicKey
11
+
12
+ ALGORITHMS = {
13
+ 'RSA' => :RSA,
14
+ 'DSA' => :DSA,
15
+ 'EllipticCurve' => :EC
16
+ }
17
+
18
+ #
19
+ # Initializes the public-key information.
20
+ #
21
+ # @param [Nokogiri::XML::Node] node
22
+ #
23
+ def initialize(node)
24
+ @node = node
25
+ end
26
+
27
+ #
28
+ # The algorithm used to generate the public-key.
29
+ #
30
+ # @return [:RSA, :DSA, :EC]
31
+ #
32
+ # @raise [NotImplementedError]
33
+ # Unrecognized algorithm name.
34
+ #
35
+ def algorithm
36
+ unless @algorithm
37
+ name = @node['algorithm']
38
+
39
+ @algorithm = ALGORITHMS.fetch(name) do
40
+ raise(notimplementederror,"unknown public-key algorithm: #{name.inspect}")
41
+ end
42
+ end
43
+
44
+ return @algorithm
45
+ end
46
+
47
+ #
48
+ # The size of the public-key.
49
+ #
50
+ # @return [Integer]
51
+ # The size in bits.
52
+ #
53
+ def size
54
+ @size ||= @node['size'].to_i
55
+ end
56
+
57
+ #
58
+ # The Elliptical Curve that was used.
59
+ #
60
+ # @return [Symbol, nil]
61
+ # The Elliptical Curve, or `nil` if {#algorithm} was not `:EC`.
62
+ #
63
+ def curve
64
+ @curve ||= if (curve = @node['curve'])
65
+ curve.to_sym
66
+ end
67
+ end
68
+
69
+ #
70
+ # The exponent used to generate the public-key
71
+ #
72
+ # @return [Integer, nil]
73
+ #
74
+ def exponent
75
+ @exponent ||= if (exponent = @node['exponent'])
76
+ exponent.to_i
77
+ end
78
+ end
79
+
80
+ end
81
+ end
82
+ end
83
+ end
84
+ end
@@ -18,7 +18,7 @@ module SSLyze
18
18
  # @return [SessionResumptionWithSessionIDs, nil]
19
19
  #
20
20
  def session_resumption_with_session_ids
21
- @session_resumption_with_session_ids ||= if (element = @node.at('sessionResumptionWithSessionIDs'))
21
+ @session_resumption_with_session_ids ||= if (element = @node.at_xpath('sessionResumptionWithSessionIDs'))
22
22
  SessionResumptionWithSessionIDs.new(element)
23
23
  end
24
24
  end
@@ -1,7 +1,960 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <document SSLyzeVersion="1.4.0" SSLyzeWeb="https://github.com/nabla-c0d3/sslyze" title="SSLyze Scan Results">
3
- <results totalScanTime="8.4713280201">
4
- <target host="github.com" ip="192.30.255.112" port="443" tlsWrappedProtocol="https">
3
+ <results totalScanTime="8.58159303665">
4
+ <target host="google.com" ip="172.217.3.206" port="443" tlsWrappedProtocol="https">
5
+ <certinfo title="Certificate Information">
6
+ <receivedCertificateChain containsAnchorCertificate="False" hasMustStapleExtension="False" includedSctsCount="0" isChainOrderValid="True" suppliedServerNameIndication="google.com">
7
+ <certificate hpkpSha256Pin="9avU6PsUBa8+MMSvcDBQRshdN5R9DH6oVlm9vombuDM=" sha1Fingerprint="fd226574bec85e043ab2007917b9f636171d485c">
8
+ <asPEM>-----BEGIN CERTIFICATE-----
9
+ MIIHgzCCBmugAwIBAgIITFTRFRTledAwDQYJKoZIhvcNAQELBQAwSTELMAkGA1UE
10
+ BhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl
11
+ cm5ldCBBdXRob3JpdHkgRzIwHhcNMTgwMzEzMTgyNjQ4WhcNMTgwNjA1MTgxNjAw
12
+ WjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN
13
+ TW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n
14
+ b29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEru/eVovUgLP1NlFm
15
+ bbYlwWdDBmPJ8AKqSb9pO8vzmVG0QBfAlDuQK+6YpUf0exbo6DLv/cWVsWC50UAH
16
+ N+CoZ6OCBRswggUXMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA4GA1UdDwEB/wQEAwIH
17
+ gDCCA+EGA1UdEQSCA9gwggPUggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22C
18
+ FiouYXBwZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIUKi5k
19
+ YjgzMzk1My5nb29nbGUuY26CBiouZy5jb4IOKi5nY3AuZ3Z0Mi5jb22CFiouZ29v
20
+ Z2xlLWFuYWx5dGljcy5jb22CCyouZ29vZ2xlLmNhggsqLmdvb2dsZS5jbIIOKi5n
21
+ b29nbGUuY28uaW6CDiouZ29vZ2xlLmNvLmpwgg4qLmdvb2dsZS5jby51a4IPKi5n
22
+ b29nbGUuY29tLmFygg8qLmdvb2dsZS5jb20uYXWCDyouZ29vZ2xlLmNvbS5icoIP
23
+ Ki5nb29nbGUuY29tLmNvgg8qLmdvb2dsZS5jb20ubXiCDyouZ29vZ2xlLmNvbS50
24
+ coIPKi5nb29nbGUuY29tLnZuggsqLmdvb2dsZS5kZYILKi5nb29nbGUuZXOCCyou
25
+ Z29vZ2xlLmZyggsqLmdvb2dsZS5odYILKi5nb29nbGUuaXSCCyouZ29vZ2xlLm5s
26
+ ggsqLmdvb2dsZS5wbIILKi5nb29nbGUucHSCEiouZ29vZ2xlYWRhcGlzLmNvbYIP
27
+ Ki5nb29nbGVhcGlzLmNughQqLmdvb2dsZWNvbW1lcmNlLmNvbYIRKi5nb29nbGV2
28
+ aWRlby5jb22CDCouZ3N0YXRpYy5jboINKi5nc3RhdGljLmNvbYIKKi5ndnQxLmNv
29
+ bYIKKi5ndnQyLmNvbYIUKi5tZXRyaWMuZ3N0YXRpYy5jb22CDCoudXJjaGluLmNv
30
+ bYIQKi51cmwuZ29vZ2xlLmNvbYIWKi55b3V0dWJlLW5vY29va2llLmNvbYINKi55
31
+ b3V0dWJlLmNvbYIWKi55b3V0dWJlZWR1Y2F0aW9uLmNvbYIHKi55dC5iZYILKi55
32
+ dGltZy5jb22CGmFuZHJvaWQuY2xpZW50cy5nb29nbGUuY29tggthbmRyb2lkLmNv
33
+ bYIbZGV2ZWxvcGVyLmFuZHJvaWQuZ29vZ2xlLmNughxkZXZlbG9wZXJzLmFuZHJv
34
+ aWQuZ29vZ2xlLmNuggRnLmNvggZnb28uZ2yCFGdvb2dsZS1hbmFseXRpY3MuY29t
35
+ ggpnb29nbGUuY29tghJnb29nbGVjb21tZXJjZS5jb22CGHNvdXJjZS5hbmRyb2lk
36
+ Lmdvb2dsZS5jboIKdXJjaGluLmNvbYIKd3d3Lmdvby5nbIIIeW91dHUuYmWCC3lv
37
+ dXR1YmUuY29tghR5b3V0dWJlZWR1Y2F0aW9uLmNvbYIFeXQuYmUwaAYIKwYBBQUH
38
+ AQEEXDBaMCsGCCsGAQUFBzAChh9odHRwOi8vcGtpLmdvb2dsZS5jb20vR0lBRzIu
39
+ Y3J0MCsGCCsGAQUFBzABhh9odHRwOi8vY2xpZW50czEuZ29vZ2xlLmNvbS9vY3Nw
40
+ MB0GA1UdDgQWBBSNexT5WwoCs363v128Qhu+nquyfDAMBgNVHRMBAf8EAjAAMB8G
41
+ A1UdIwQYMBaAFErdBhYbvPZotXb1gba7Yhq6WoEvMCEGA1UdIAQaMBgwDAYKKwYB
42
+ BAHWeQIFATAIBgZngQwBAgIwMAYDVR0fBCkwJzAloCOgIYYfaHR0cDovL3BraS5n
43
+ b29nbGUuY29tL0dJQUcyLmNybDANBgkqhkiG9w0BAQsFAAOCAQEACtQLVtreEUdh
44
+ zHD0s9KQ7bZURv1TswAXU9GEJWZhg51KlHtP1EjTLvLra6j9sMPdK3w+NUE3eLEU
45
+ XsTYXxR8tuHFcD+GsMmMCk7bzOkbriusyS60fhzNxlmSjYaUejn+vQYd1XMtbI8f
46
+ +uuj9ujdHlcE5Btb4H9g80e5b/c1QZCF/7oL+h0srSuEPMOf154A3i60s3Nbh+Qd
47
+ Od8A/TUYTIEEximGlMoHZCrKDG4fCGokOVq9m6ka+9KSKizdsq3zf5r32UAZzgfm
48
+ J6VTqvp4igIByEAKf+6ejP51TE7F9hS8rcZQ7T0dpSYRdT9VQiyR4K0bVUkO98jW
49
+ MudM02NvQA==
50
+ -----END CERTIFICATE-----
51
+ </asPEM>
52
+ <subject>countryName=US, stateOrProvinceName=California, localityName=Mountain View, organizationName=Google Inc, commonName=*.google.com</subject>
53
+ <issuer>countryName=US, organizationName=Google Inc, commonName=Google Internet Authority G2</issuer>
54
+ <serialNumber>5500250933401319888</serialNumber>
55
+ <notBefore>2018-03-13 18:26:48</notBefore>
56
+ <notAfter>2018-06-05 18:16:00</notAfter>
57
+ <signatureAlgorithm>sha256</signatureAlgorithm>
58
+ <publicKey algorithm="EllipticCurve" curve="secp256r1" size="256"/>
59
+ <subjectAlternativeName>
60
+ <DNS>*.google.com</DNS>
61
+ <DNS>*.android.com</DNS>
62
+ <DNS>*.appengine.google.com</DNS>
63
+ <DNS>*.cloud.google.com</DNS>
64
+ <DNS>*.db833953.google.cn</DNS>
65
+ <DNS>*.g.co</DNS>
66
+ <DNS>*.gcp.gvt2.com</DNS>
67
+ <DNS>*.google-analytics.com</DNS>
68
+ <DNS>*.google.ca</DNS>
69
+ <DNS>*.google.cl</DNS>
70
+ <DNS>*.google.co.in</DNS>
71
+ <DNS>*.google.co.jp</DNS>
72
+ <DNS>*.google.co.uk</DNS>
73
+ <DNS>*.google.com.ar</DNS>
74
+ <DNS>*.google.com.au</DNS>
75
+ <DNS>*.google.com.br</DNS>
76
+ <DNS>*.google.com.co</DNS>
77
+ <DNS>*.google.com.mx</DNS>
78
+ <DNS>*.google.com.tr</DNS>
79
+ <DNS>*.google.com.vn</DNS>
80
+ <DNS>*.google.de</DNS>
81
+ <DNS>*.google.es</DNS>
82
+ <DNS>*.google.fr</DNS>
83
+ <DNS>*.google.hu</DNS>
84
+ <DNS>*.google.it</DNS>
85
+ <DNS>*.google.nl</DNS>
86
+ <DNS>*.google.pl</DNS>
87
+ <DNS>*.google.pt</DNS>
88
+ <DNS>*.googleadapis.com</DNS>
89
+ <DNS>*.googleapis.cn</DNS>
90
+ <DNS>*.googlecommerce.com</DNS>
91
+ <DNS>*.googlevideo.com</DNS>
92
+ <DNS>*.gstatic.cn</DNS>
93
+ <DNS>*.gstatic.com</DNS>
94
+ <DNS>*.gvt1.com</DNS>
95
+ <DNS>*.gvt2.com</DNS>
96
+ <DNS>*.metric.gstatic.com</DNS>
97
+ <DNS>*.urchin.com</DNS>
98
+ <DNS>*.url.google.com</DNS>
99
+ <DNS>*.youtube-nocookie.com</DNS>
100
+ <DNS>*.youtube.com</DNS>
101
+ <DNS>*.youtubeeducation.com</DNS>
102
+ <DNS>*.yt.be</DNS>
103
+ <DNS>*.ytimg.com</DNS>
104
+ <DNS>android.clients.google.com</DNS>
105
+ <DNS>android.com</DNS>
106
+ <DNS>developer.android.google.cn</DNS>
107
+ <DNS>developers.android.google.cn</DNS>
108
+ <DNS>g.co</DNS>
109
+ <DNS>goo.gl</DNS>
110
+ <DNS>google-analytics.com</DNS>
111
+ <DNS>google.com</DNS>
112
+ <DNS>googlecommerce.com</DNS>
113
+ <DNS>source.android.google.cn</DNS>
114
+ <DNS>urchin.com</DNS>
115
+ <DNS>www.goo.gl</DNS>
116
+ <DNS>youtu.be</DNS>
117
+ <DNS>youtube.com</DNS>
118
+ <DNS>youtubeeducation.com</DNS>
119
+ <DNS>yt.be</DNS>
120
+ </subjectAlternativeName>
121
+ </certificate>
122
+ <certificate hpkpSha256Pin="7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y=" sha1Fingerprint="a6120fc0b4664fad0b3b6ffd5f7a33e561ddb87d">
123
+ <asPEM>-----BEGIN CERTIFICATE-----
124
+ MIIEKDCCAxCgAwIBAgIQAQAhJYiw+lmnd+8Fe2Yn3zANBgkqhkiG9w0BAQsFADBC
125
+ MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMS
126
+ R2VvVHJ1c3QgR2xvYmFsIENBMB4XDTE3MDUyMjExMzIzN1oXDTE4MTIzMTIzNTk1
127
+ OVowSTELMAkGA1UEBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMT
128
+ HEdvb2dsZSBJbnRlcm5ldCBBdXRob3JpdHkgRzIwggEiMA0GCSqGSIb3DQEBAQUA
129
+ A4IBDwAwggEKAoIBAQCcKgR3XNhQkToGo4Lg2FBIvIk/8RlwGohGfuCPxfGJziHu
130
+ Wv5hDbcyRImgdAtTT1WkzoJile7rWV/G4QWAEsRelD+8W0g49FP3JOb7kekVxM/0
131
+ Uw30SvyfVN59vqBrb4fA0FAfKDADQNoIc1Fsf/86PKc3Bo69SxEE630k3ub5/DFx
132
+ +5TVYPMuSq9C0svqxGoassxT3RVLix/IGWEfzZ2oPmMrhDVpZYTIGcVGIvhTlb7j
133
+ gEoQxirsupcgEcc5mRAEoPBhepUljE5SdeK27QjKFPzOImqzTs9GA5eXA37Asd57
134
+ r0Uzz7o+cbfe9CUlwg01iZ2d+w4ReYkeN8WvjnJpAgMBAAGjggERMIIBDTAfBgNV
135
+ HSMEGDAWgBTAephojYn7qwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1
136
+ dvWBtrtiGrpagS8wDgYDVR0PAQH/BAQDAgEGMC4GCCsGAQUFBwEBBCIwIDAeBggr
137
+ BgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBIGA1UdEwEB/wQIMAYBAf8CAQAw
138
+ NQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9i
139
+ YWwuY3JsMCEGA1UdIAQaMBgwDAYKKwYBBAHWeQIFATAIBgZngQwBAgIwHQYDVR0l
140
+ BBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4IBAQDKSeWs
141
+ 12Rkd1u+cfrP9B4jx5ppY1Rf60zWGSgjZGaOHMeHgGRfBIsmr5jfCnC8vBk97nsz
142
+ qX+99AXUcLsFJnnqmseYuQcZZTTMPOk/xQH6bwx+23pwXEz+LQDwyr4tjrSogPsB
143
+ E4jLnD/lu3fKOmc2887VJwJyQ6C9bgLxRwVxPgFZ6RGeGvOED4Cmong1L7bHon8X
144
+ fOGLVq7uZ4hRJzBgpWJSwzfVO+qFKgE4h6LPcK2kesnE58rF2rwjMvL+GMJ74N87
145
+ L9TQEOaWTPtEtyFkDbkAlDASJodYmDkFOA/MgkgMCkdm7r+0X8T/cKjhf4t5K7hl
146
+ MqO5tzHpCvX2HzLc
147
+ -----END CERTIFICATE-----
148
+ </asPEM>
149
+ <subject>countryName=US, organizationName=Google Inc, commonName=Google Internet Authority G2</subject>
150
+ <issuer>countryName=US, organizationName=GeoTrust Inc., commonName=GeoTrust Global CA</issuer>
151
+ <serialNumber>1329900289047763931211708866857674719</serialNumber>
152
+ <notBefore>2017-05-22 11:32:37</notBefore>
153
+ <notAfter>2018-12-31 23:59:59</notAfter>
154
+ <signatureAlgorithm>sha256</signatureAlgorithm>
155
+ <publicKey algorithm="RSA" exponent="65537" size="2048"/>
156
+ </certificate>
157
+ <certificate hpkpSha256Pin="h6801m+z8v3zbgkRHpq6L29Esgfzhj89C1SyUCOQmqU=" sha1Fingerprint="7359755c6df9a0abc3060bce369564c8ec4542a3">
158
+ <asPEM>-----BEGIN CERTIFICATE-----
159
+ MIIDfTCCAuagAwIBAgIDErvmMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT
160
+ MRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0
161
+ aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDIwNTIxMDQwMDAwWhcNMTgwODIxMDQwMDAw
162
+ WjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UE
163
+ AxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
164
+ CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9m
165
+ OSm9BXiLnTjoBbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIu
166
+ T8rxh0PBFpVXLVDviS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6c
167
+ JmTM386DGXHKTubU1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmR
168
+ Cw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5asz
169
+ PeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo4HwMIHtMB8GA1UdIwQYMBaAFEjm
170
+ aPkr0rKV10fYIyAQTzOYkJ/UMB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrM
171
+ TjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjA6BgNVHR8EMzAxMC+g
172
+ LaArhilodHRwOi8vY3JsLmdlb3RydXN0LmNvbS9jcmxzL3NlY3VyZWNhLmNybDBO
173
+ BgNVHSAERzBFMEMGBFUdIAAwOzA5BggrBgEFBQcCARYtaHR0cHM6Ly93d3cuZ2Vv
174
+ dHJ1c3QuY29tL3Jlc291cmNlcy9yZXBvc2l0b3J5MA0GCSqGSIb3DQEBBQUAA4GB
175
+ AHbhEm5OSxYShjAGsoEIz/AIx8dxfmbuwu3UOx//8PDITtZDOLC5MH0Y0FWDomrL
176
+ NhGc6Ehmo21/uBPUR/6LWlxz/K7ZGzIZOKuXNBSqltLroxwUCEm2u+WR74M26x1W
177
+ b8ravHNjkOR/ez4iyz0H7V84dJzjA1BOoa+Y7mHyhD8S
178
+ -----END CERTIFICATE-----
179
+ </asPEM>
180
+ <subject>countryName=US, organizationName=GeoTrust Inc., commonName=GeoTrust Global CA</subject>
181
+ <issuer>countryName=US, organizationName=Equifax, organizationalUnitName=Equifax Secure Certificate Authority</issuer>
182
+ <serialNumber>1227750</serialNumber>
183
+ <notBefore>2002-05-21 04:00:00</notBefore>
184
+ <notAfter>2018-08-21 04:00:00</notAfter>
185
+ <signatureAlgorithm>sha1</signatureAlgorithm>
186
+ <publicKey algorithm="RSA" exponent="65537" size="2048"/>
187
+ </certificate>
188
+ </receivedCertificateChain>
189
+ <certificateValidation>
190
+ <hostnameValidation certificateMatchesServerHostname="True" serverHostname="google.com"/>
191
+ <pathValidation trustStoreVersion="8.1.0_r9" usingTrustStore="Android" validationResult="ok"/>
192
+ <pathValidation trustStoreVersion="11" usingTrustStore="iOS" validationResult="ok"/>
193
+ <pathValidation trustStoreVersion="High Sierra" usingTrustStore="macOS" validationResult="ok"/>
194
+ <pathValidation trustStoreVersion="2018-01-14" usingTrustStore="Mozilla" validationResult="ok"/>
195
+ <pathValidation trustStoreVersion="2018-02-09" usingTrustStore="Windows" validationResult="ok"/>
196
+ <verifiedCertificateChain hasMustStapleExtension="False" hasSha1SignedCertificate="False" includedSctsCount="0" successfulTrustStore="Windows" suppliedServerNameIndication="google.com">
197
+ <certificate hpkpSha256Pin="9avU6PsUBa8+MMSvcDBQRshdN5R9DH6oVlm9vombuDM=" sha1Fingerprint="fd226574bec85e043ab2007917b9f636171d485c">
198
+ <asPEM>-----BEGIN CERTIFICATE-----
199
+ MIIHgzCCBmugAwIBAgIITFTRFRTledAwDQYJKoZIhvcNAQELBQAwSTELMAkGA1UE
200
+ BhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl
201
+ cm5ldCBBdXRob3JpdHkgRzIwHhcNMTgwMzEzMTgyNjQ4WhcNMTgwNjA1MTgxNjAw
202
+ WjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN
203
+ TW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n
204
+ b29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEru/eVovUgLP1NlFm
205
+ bbYlwWdDBmPJ8AKqSb9pO8vzmVG0QBfAlDuQK+6YpUf0exbo6DLv/cWVsWC50UAH
206
+ N+CoZ6OCBRswggUXMBMGA1UdJQQMMAoGCCsGAQUFBwMBMA4GA1UdDwEB/wQEAwIH
207
+ gDCCA+EGA1UdEQSCA9gwggPUggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22C
208
+ FiouYXBwZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIUKi5k
209
+ YjgzMzk1My5nb29nbGUuY26CBiouZy5jb4IOKi5nY3AuZ3Z0Mi5jb22CFiouZ29v
210
+ Z2xlLWFuYWx5dGljcy5jb22CCyouZ29vZ2xlLmNhggsqLmdvb2dsZS5jbIIOKi5n
211
+ b29nbGUuY28uaW6CDiouZ29vZ2xlLmNvLmpwgg4qLmdvb2dsZS5jby51a4IPKi5n
212
+ b29nbGUuY29tLmFygg8qLmdvb2dsZS5jb20uYXWCDyouZ29vZ2xlLmNvbS5icoIP
213
+ Ki5nb29nbGUuY29tLmNvgg8qLmdvb2dsZS5jb20ubXiCDyouZ29vZ2xlLmNvbS50
214
+ coIPKi5nb29nbGUuY29tLnZuggsqLmdvb2dsZS5kZYILKi5nb29nbGUuZXOCCyou
215
+ Z29vZ2xlLmZyggsqLmdvb2dsZS5odYILKi5nb29nbGUuaXSCCyouZ29vZ2xlLm5s
216
+ ggsqLmdvb2dsZS5wbIILKi5nb29nbGUucHSCEiouZ29vZ2xlYWRhcGlzLmNvbYIP
217
+ Ki5nb29nbGVhcGlzLmNughQqLmdvb2dsZWNvbW1lcmNlLmNvbYIRKi5nb29nbGV2
218
+ aWRlby5jb22CDCouZ3N0YXRpYy5jboINKi5nc3RhdGljLmNvbYIKKi5ndnQxLmNv
219
+ bYIKKi5ndnQyLmNvbYIUKi5tZXRyaWMuZ3N0YXRpYy5jb22CDCoudXJjaGluLmNv
220
+ bYIQKi51cmwuZ29vZ2xlLmNvbYIWKi55b3V0dWJlLW5vY29va2llLmNvbYINKi55
221
+ b3V0dWJlLmNvbYIWKi55b3V0dWJlZWR1Y2F0aW9uLmNvbYIHKi55dC5iZYILKi55
222
+ dGltZy5jb22CGmFuZHJvaWQuY2xpZW50cy5nb29nbGUuY29tggthbmRyb2lkLmNv
223
+ bYIbZGV2ZWxvcGVyLmFuZHJvaWQuZ29vZ2xlLmNughxkZXZlbG9wZXJzLmFuZHJv
224
+ aWQuZ29vZ2xlLmNuggRnLmNvggZnb28uZ2yCFGdvb2dsZS1hbmFseXRpY3MuY29t
225
+ ggpnb29nbGUuY29tghJnb29nbGVjb21tZXJjZS5jb22CGHNvdXJjZS5hbmRyb2lk
226
+ Lmdvb2dsZS5jboIKdXJjaGluLmNvbYIKd3d3Lmdvby5nbIIIeW91dHUuYmWCC3lv
227
+ dXR1YmUuY29tghR5b3V0dWJlZWR1Y2F0aW9uLmNvbYIFeXQuYmUwaAYIKwYBBQUH
228
+ AQEEXDBaMCsGCCsGAQUFBzAChh9odHRwOi8vcGtpLmdvb2dsZS5jb20vR0lBRzIu
229
+ Y3J0MCsGCCsGAQUFBzABhh9odHRwOi8vY2xpZW50czEuZ29vZ2xlLmNvbS9vY3Nw
230
+ MB0GA1UdDgQWBBSNexT5WwoCs363v128Qhu+nquyfDAMBgNVHRMBAf8EAjAAMB8G
231
+ A1UdIwQYMBaAFErdBhYbvPZotXb1gba7Yhq6WoEvMCEGA1UdIAQaMBgwDAYKKwYB
232
+ BAHWeQIFATAIBgZngQwBAgIwMAYDVR0fBCkwJzAloCOgIYYfaHR0cDovL3BraS5n
233
+ b29nbGUuY29tL0dJQUcyLmNybDANBgkqhkiG9w0BAQsFAAOCAQEACtQLVtreEUdh
234
+ zHD0s9KQ7bZURv1TswAXU9GEJWZhg51KlHtP1EjTLvLra6j9sMPdK3w+NUE3eLEU
235
+ XsTYXxR8tuHFcD+GsMmMCk7bzOkbriusyS60fhzNxlmSjYaUejn+vQYd1XMtbI8f
236
+ +uuj9ujdHlcE5Btb4H9g80e5b/c1QZCF/7oL+h0srSuEPMOf154A3i60s3Nbh+Qd
237
+ Od8A/TUYTIEEximGlMoHZCrKDG4fCGokOVq9m6ka+9KSKizdsq3zf5r32UAZzgfm
238
+ J6VTqvp4igIByEAKf+6ejP51TE7F9hS8rcZQ7T0dpSYRdT9VQiyR4K0bVUkO98jW
239
+ MudM02NvQA==
240
+ -----END CERTIFICATE-----
241
+ </asPEM>
242
+ <subject>countryName=US, stateOrProvinceName=California, localityName=Mountain View, organizationName=Google Inc, commonName=*.google.com</subject>
243
+ <issuer>countryName=US, organizationName=Google Inc, commonName=Google Internet Authority G2</issuer>
244
+ <serialNumber>5500250933401319888</serialNumber>
245
+ <notBefore>2018-03-13 18:26:48</notBefore>
246
+ <notAfter>2018-06-05 18:16:00</notAfter>
247
+ <signatureAlgorithm>sha256</signatureAlgorithm>
248
+ <publicKey algorithm="EllipticCurve" curve="secp256r1" size="256"/>
249
+ <subjectAlternativeName>
250
+ <DNS>*.google.com</DNS>
251
+ <DNS>*.android.com</DNS>
252
+ <DNS>*.appengine.google.com</DNS>
253
+ <DNS>*.cloud.google.com</DNS>
254
+ <DNS>*.db833953.google.cn</DNS>
255
+ <DNS>*.g.co</DNS>
256
+ <DNS>*.gcp.gvt2.com</DNS>
257
+ <DNS>*.google-analytics.com</DNS>
258
+ <DNS>*.google.ca</DNS>
259
+ <DNS>*.google.cl</DNS>
260
+ <DNS>*.google.co.in</DNS>
261
+ <DNS>*.google.co.jp</DNS>
262
+ <DNS>*.google.co.uk</DNS>
263
+ <DNS>*.google.com.ar</DNS>
264
+ <DNS>*.google.com.au</DNS>
265
+ <DNS>*.google.com.br</DNS>
266
+ <DNS>*.google.com.co</DNS>
267
+ <DNS>*.google.com.mx</DNS>
268
+ <DNS>*.google.com.tr</DNS>
269
+ <DNS>*.google.com.vn</DNS>
270
+ <DNS>*.google.de</DNS>
271
+ <DNS>*.google.es</DNS>
272
+ <DNS>*.google.fr</DNS>
273
+ <DNS>*.google.hu</DNS>
274
+ <DNS>*.google.it</DNS>
275
+ <DNS>*.google.nl</DNS>
276
+ <DNS>*.google.pl</DNS>
277
+ <DNS>*.google.pt</DNS>
278
+ <DNS>*.googleadapis.com</DNS>
279
+ <DNS>*.googleapis.cn</DNS>
280
+ <DNS>*.googlecommerce.com</DNS>
281
+ <DNS>*.googlevideo.com</DNS>
282
+ <DNS>*.gstatic.cn</DNS>
283
+ <DNS>*.gstatic.com</DNS>
284
+ <DNS>*.gvt1.com</DNS>
285
+ <DNS>*.gvt2.com</DNS>
286
+ <DNS>*.metric.gstatic.com</DNS>
287
+ <DNS>*.urchin.com</DNS>
288
+ <DNS>*.url.google.com</DNS>
289
+ <DNS>*.youtube-nocookie.com</DNS>
290
+ <DNS>*.youtube.com</DNS>
291
+ <DNS>*.youtubeeducation.com</DNS>
292
+ <DNS>*.yt.be</DNS>
293
+ <DNS>*.ytimg.com</DNS>
294
+ <DNS>android.clients.google.com</DNS>
295
+ <DNS>android.com</DNS>
296
+ <DNS>developer.android.google.cn</DNS>
297
+ <DNS>developers.android.google.cn</DNS>
298
+ <DNS>g.co</DNS>
299
+ <DNS>goo.gl</DNS>
300
+ <DNS>google-analytics.com</DNS>
301
+ <DNS>google.com</DNS>
302
+ <DNS>googlecommerce.com</DNS>
303
+ <DNS>source.android.google.cn</DNS>
304
+ <DNS>urchin.com</DNS>
305
+ <DNS>www.goo.gl</DNS>
306
+ <DNS>youtu.be</DNS>
307
+ <DNS>youtube.com</DNS>
308
+ <DNS>youtubeeducation.com</DNS>
309
+ <DNS>yt.be</DNS>
310
+ </subjectAlternativeName>
311
+ </certificate>
312
+ <certificate hpkpSha256Pin="7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y=" sha1Fingerprint="a6120fc0b4664fad0b3b6ffd5f7a33e561ddb87d">
313
+ <asPEM>-----BEGIN CERTIFICATE-----
314
+ MIIEKDCCAxCgAwIBAgIQAQAhJYiw+lmnd+8Fe2Yn3zANBgkqhkiG9w0BAQsFADBC
315
+ MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMS
316
+ R2VvVHJ1c3QgR2xvYmFsIENBMB4XDTE3MDUyMjExMzIzN1oXDTE4MTIzMTIzNTk1
317
+ OVowSTELMAkGA1UEBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMT
318
+ HEdvb2dsZSBJbnRlcm5ldCBBdXRob3JpdHkgRzIwggEiMA0GCSqGSIb3DQEBAQUA
319
+ A4IBDwAwggEKAoIBAQCcKgR3XNhQkToGo4Lg2FBIvIk/8RlwGohGfuCPxfGJziHu
320
+ Wv5hDbcyRImgdAtTT1WkzoJile7rWV/G4QWAEsRelD+8W0g49FP3JOb7kekVxM/0
321
+ Uw30SvyfVN59vqBrb4fA0FAfKDADQNoIc1Fsf/86PKc3Bo69SxEE630k3ub5/DFx
322
+ +5TVYPMuSq9C0svqxGoassxT3RVLix/IGWEfzZ2oPmMrhDVpZYTIGcVGIvhTlb7j
323
+ gEoQxirsupcgEcc5mRAEoPBhepUljE5SdeK27QjKFPzOImqzTs9GA5eXA37Asd57
324
+ r0Uzz7o+cbfe9CUlwg01iZ2d+w4ReYkeN8WvjnJpAgMBAAGjggERMIIBDTAfBgNV
325
+ HSMEGDAWgBTAephojYn7qwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1
326
+ dvWBtrtiGrpagS8wDgYDVR0PAQH/BAQDAgEGMC4GCCsGAQUFBwEBBCIwIDAeBggr
327
+ BgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBIGA1UdEwEB/wQIMAYBAf8CAQAw
328
+ NQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9i
329
+ YWwuY3JsMCEGA1UdIAQaMBgwDAYKKwYBBAHWeQIFATAIBgZngQwBAgIwHQYDVR0l
330
+ BBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4IBAQDKSeWs
331
+ 12Rkd1u+cfrP9B4jx5ppY1Rf60zWGSgjZGaOHMeHgGRfBIsmr5jfCnC8vBk97nsz
332
+ qX+99AXUcLsFJnnqmseYuQcZZTTMPOk/xQH6bwx+23pwXEz+LQDwyr4tjrSogPsB
333
+ E4jLnD/lu3fKOmc2887VJwJyQ6C9bgLxRwVxPgFZ6RGeGvOED4Cmong1L7bHon8X
334
+ fOGLVq7uZ4hRJzBgpWJSwzfVO+qFKgE4h6LPcK2kesnE58rF2rwjMvL+GMJ74N87
335
+ L9TQEOaWTPtEtyFkDbkAlDASJodYmDkFOA/MgkgMCkdm7r+0X8T/cKjhf4t5K7hl
336
+ MqO5tzHpCvX2HzLc
337
+ -----END CERTIFICATE-----
338
+ </asPEM>
339
+ <subject>countryName=US, organizationName=Google Inc, commonName=Google Internet Authority G2</subject>
340
+ <issuer>countryName=US, organizationName=GeoTrust Inc., commonName=GeoTrust Global CA</issuer>
341
+ <serialNumber>1329900289047763931211708866857674719</serialNumber>
342
+ <notBefore>2017-05-22 11:32:37</notBefore>
343
+ <notAfter>2018-12-31 23:59:59</notAfter>
344
+ <signatureAlgorithm>sha256</signatureAlgorithm>
345
+ <publicKey algorithm="RSA" exponent="65537" size="2048"/>
346
+ </certificate>
347
+ <certificate hpkpSha256Pin="h6801m+z8v3zbgkRHpq6L29Esgfzhj89C1SyUCOQmqU=" sha1Fingerprint="de28f4a4ffe5b92fa3c503d1a349a7f9962a8212">
348
+ <asPEM>-----BEGIN CERTIFICATE-----
349
+ MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT
350
+ MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
351
+ YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG
352
+ EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg
353
+ R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9
354
+ 9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq
355
+ fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv
356
+ iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU
357
+ 1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+
358
+ bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW
359
+ MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA
360
+ ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l
361
+ uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn
362
+ Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS
363
+ tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF
364
+ PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un
365
+ hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV
366
+ 5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw==
367
+ -----END CERTIFICATE-----
368
+ </asPEM>
369
+ <subject>countryName=US, organizationName=GeoTrust Inc., commonName=GeoTrust Global CA</subject>
370
+ <issuer>countryName=US, organizationName=GeoTrust Inc., commonName=GeoTrust Global CA</issuer>
371
+ <serialNumber>144470</serialNumber>
372
+ <notBefore>2002-05-21 04:00:00</notBefore>
373
+ <notAfter>2022-05-21 04:00:00</notAfter>
374
+ <signatureAlgorithm>sha1</signatureAlgorithm>
375
+ <publicKey algorithm="RSA" exponent="65537" size="2048"/>
376
+ </certificate>
377
+ </verifiedCertificateChain>
378
+ </certificateValidation>
379
+ <ocspStapling isSupported="False"/>
380
+ </certinfo>
381
+ <compression title="Deflate Compression">
382
+ <compressionMethod isSupported="False" type="DEFLATE"/>
383
+ </compression>
384
+ <fallback title="Downgrade Attacks">
385
+ <tlsFallbackScsv isSupported="True"/>
386
+ </fallback>
387
+ <heartbleed title="OpenSSL Heartbleed">
388
+ <openSslHeartbleed isVulnerable="False"/>
389
+ </heartbleed>
390
+ <http_headers title="HTTP Security Headers">
391
+ <httpStrictTransportSecurity isSupported="False"/>
392
+ <httpPublicKeyPinning isSupported="False"/>
393
+ <httpExpectCT isSupported="False"/>
394
+ </http_headers>
395
+ <openssl_ccs title="OpenSSL CCS Injection">
396
+ <openSslCcsInjection isVulnerable="False"/>
397
+ </openssl_ccs>
398
+ <reneg title="Session Renegotiation">
399
+ <sessionRenegotiation canBeClientInitiated="False" isSecure="True"/>
400
+ </reneg>
401
+ <resum title="Resumption Support">
402
+ <sessionResumptionWithSessionIDs errors="0" failedAttempts="0" isSupported="True" successfulAttempts="5" totalAttempts="5"/>
403
+ <sessionResumptionWithTLSTickets isSupported="True"/>
404
+ </resum>
405
+ <resum_rate title="Resumption Rate">
406
+ <sessionResumptionWithSessionIDs errors="0" failedAttempts="0" isSupported="True" successfulAttempts="100" totalAttempts="100"/>
407
+ </resum_rate>
408
+ <robot title="ROBOT Attack">
409
+ <robotAttack resultEnum="NOT_VULNERABLE_NO_ORACLE"/>
410
+ </robot>
411
+ <sslv2 isProtocolSupported="False" title="SSLV2 Cipher Suites">
412
+ <preferredCipherSuite/>
413
+ <acceptedCipherSuites/>
414
+ <rejectedCipherSuites>
415
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_RC4_128_WITH_MD5"/>
416
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_RC4_128_EXPORT40_WITH_MD5"/>
417
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_RC2_128_CBC_WITH_MD5"/>
418
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5"/>
419
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_IDEA_128_CBC_WITH_MD5"/>
420
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_DES_64_CBC_WITH_MD5"/>
421
+ <cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="SSL_CK_DES_192_EDE3_CBC_WITH_MD5"/>
422
+ </rejectedCipherSuites>
423
+ <errors/>
424
+ </sslv2>
425
+ <sslv3 isProtocolSupported="False" title="SSLV3 Cipher Suites">
426
+ <preferredCipherSuite/>
427
+ <acceptedCipherSuites/>
428
+ <rejectedCipherSuites>
429
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_SEED_CBC_SHA"/>
430
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_RC4_128_SHA"/>
431
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_RC4_128_MD5"/>
432
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_NULL_SHA256"/>
433
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_NULL_SHA"/>
434
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_NULL_MD5"/>
435
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_IDEA_CBC_SHA"/>
436
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_DES_CBC_SHA"/>
437
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
438
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
439
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_256_GCM_SHA384"/>
440
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
441
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_AES_256_CBC_SHA"/>
442
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_128_GCM_SHA256"/>
443
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_128_CBC_SHA256"/>
444
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_AES_128_CBC_SHA"/>
445
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_WITH_3DES_EDE_CBC_SHA"/>
446
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_EXPORT_WITH_RC4_40_MD5"/>
447
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5"/>
448
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_RSA_EXPORT_WITH_DES40_CBC_SHA"/>
449
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_anon_WITH_RC4_128_SHA"/>
450
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_anon_WITH_NULL_SHA"/>
451
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_anon_WITH_AES_256_CBC_SHA"/>
452
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_anon_WITH_AES_128_CBC_SHA"/>
453
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA"/>
454
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_RSA_WITH_RC4_128_SHA"/>
455
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_RSA_WITH_NULL_SHA"/>
456
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384"/>
457
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384"/>
458
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_RSA_WITH_AES_256_CBC_SHA"/>
459
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256"/>
460
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256"/>
461
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_RSA_WITH_AES_128_CBC_SHA"/>
462
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA"/>
463
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_ECDSA_WITH_RC4_128_SHA"/>
464
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_ECDSA_WITH_NULL_SHA"/>
465
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384"/>
466
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384"/>
467
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA"/>
468
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256"/>
469
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256"/>
470
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA"/>
471
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
472
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_RSA_WITH_RC4_128_SHA"/>
473
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_RSA_WITH_NULL_SHA"/>
474
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"/>
475
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"/>
476
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"/>
477
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"/>
478
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"/>
479
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"/>
480
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
481
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_ECDSA_WITH_RC4_128_SHA"/>
482
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_ECDSA_WITH_NULL_SHA"/>
483
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"/>
484
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384"/>
485
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"/>
486
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"/>
487
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"/>
488
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA"/>
489
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
490
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_SEED_CBC_SHA"/>
491
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_RC4_128_MD5"/>
492
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_DES_CBC_SHA"/>
493
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA"/>
494
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA"/>
495
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_256_GCM_SHA384"/>
496
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_256_CBC_SHA256"/>
497
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_AES_256_CBC_SHA"/>
498
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_128_GCM_SHA256"/>
499
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_128_CBC_SHA256"/>
500
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_AES_128_CBC_SHA"/>
501
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"/>
502
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_EXPORT_WITH_RC4_40_MD5"/>
503
+ <cipherSuite anonymous="True" connectionStatus="TLS / Wrong version number" name="TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA"/>
504
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_SEED_CBC_SHA"/>
505
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_DES_CBC_SHA"/>
506
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
507
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
508
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_256_GCM_SHA384"/>
509
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_256_CBC_SHA256"/>
510
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_AES_256_CBC_SHA"/>
511
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_128_GCM_SHA256"/>
512
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_128_CBC_SHA256"/>
513
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_AES_128_CBC_SHA"/>
514
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA"/>
515
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_SEED_CBC_SHA"/>
516
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_DES_CBC_SHA"/>
517
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
518
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
519
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_256_GCM_SHA384"/>
520
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_256_CBC_SHA256"/>
521
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_AES_256_CBC_SHA"/>
522
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_128_GCM_SHA256"/>
523
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_128_CBC_SHA256"/>
524
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_AES_128_CBC_SHA"/>
525
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA"/>
526
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_SEED_CBC_SHA"/>
527
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_DES_CBC_SHA"/>
528
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
529
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
530
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"/>
531
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"/>
532
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA"/>
533
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"/>
534
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA256"/>
535
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA"/>
536
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
537
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA"/>
538
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_SEED_CBC_SHA"/>
539
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_DES_CBC_SHA"/>
540
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
541
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
542
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_256_GCM_SHA384"/>
543
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA256"/>
544
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA"/>
545
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_128_GCM_SHA256"/>
546
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA256"/>
547
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA"/>
548
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA"/>
549
+ <cipherSuite anonymous="False" connectionStatus="TLS / Wrong version number" name="TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA"/>
550
+ </rejectedCipherSuites>
551
+ <errors/>
552
+ </sslv3>
553
+ <tlsv1 isProtocolSupported="True" title="TLSV1 Cipher Suites">
554
+ <preferredCipherSuite>
555
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA">
556
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
557
+ </cipherSuite>
558
+ </preferredCipherSuite>
559
+ <acceptedCipherSuites>
560
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA">
561
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
562
+ </cipherSuite>
563
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA"/>
564
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA">
565
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
566
+ </cipherSuite>
567
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_RSA_WITH_AES_128_CBC_SHA"/>
568
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="112" name="TLS_RSA_WITH_3DES_EDE_CBC_SHA"/>
569
+ </acceptedCipherSuites>
570
+ <rejectedCipherSuites>
571
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_SEED_CBC_SHA"/>
572
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_RC4_128_SHA"/>
573
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_RC4_128_MD5"/>
574
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_NULL_SHA256"/>
575
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_SHA"/>
576
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_MD5"/>
577
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_IDEA_CBC_SHA"/>
578
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_DES_CBC_SHA"/>
579
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
580
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
581
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_256_GCM_SHA384"/>
582
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
583
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_128_GCM_SHA256"/>
584
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_128_CBC_SHA256"/>
585
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_EXPORT_WITH_RC4_40_MD5"/>
586
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5"/>
587
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_EXPORT_WITH_DES40_CBC_SHA"/>
588
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_RC4_128_SHA"/>
589
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_NULL_SHA"/>
590
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_AES_256_CBC_SHA"/>
591
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_AES_128_CBC_SHA"/>
592
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA"/>
593
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_RC4_128_SHA"/>
594
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_NULL_SHA"/>
595
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384"/>
596
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384"/>
597
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_AES_256_CBC_SHA"/>
598
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256"/>
599
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256"/>
600
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_AES_128_CBC_SHA"/>
601
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA"/>
602
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_RC4_128_SHA"/>
603
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_NULL_SHA"/>
604
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384"/>
605
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384"/>
606
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA"/>
607
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256"/>
608
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256"/>
609
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA"/>
610
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
611
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_RC4_128_SHA"/>
612
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_NULL_SHA"/>
613
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"/>
614
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"/>
615
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"/>
616
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"/>
617
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
618
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_RC4_128_SHA"/>
619
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_NULL_SHA"/>
620
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"/>
621
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384"/>
622
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"/>
623
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"/>
624
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"/>
625
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA"/>
626
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
627
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_SEED_CBC_SHA"/>
628
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_RC4_128_MD5"/>
629
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_DES_CBC_SHA"/>
630
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA"/>
631
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA"/>
632
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_256_GCM_SHA384"/>
633
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_256_CBC_SHA256"/>
634
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_256_CBC_SHA"/>
635
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_128_GCM_SHA256"/>
636
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_128_CBC_SHA256"/>
637
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_128_CBC_SHA"/>
638
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"/>
639
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_EXPORT_WITH_RC4_40_MD5"/>
640
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA"/>
641
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_SEED_CBC_SHA"/>
642
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_DES_CBC_SHA"/>
643
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
644
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
645
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_256_GCM_SHA384"/>
646
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_256_CBC_SHA256"/>
647
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_AES_256_CBC_SHA"/>
648
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_128_GCM_SHA256"/>
649
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_128_CBC_SHA256"/>
650
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_AES_128_CBC_SHA"/>
651
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA"/>
652
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_SEED_CBC_SHA"/>
653
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_DES_CBC_SHA"/>
654
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
655
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
656
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_256_GCM_SHA384"/>
657
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_256_CBC_SHA256"/>
658
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_AES_256_CBC_SHA"/>
659
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_128_GCM_SHA256"/>
660
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_128_CBC_SHA256"/>
661
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_AES_128_CBC_SHA"/>
662
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA"/>
663
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_SEED_CBC_SHA"/>
664
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_DES_CBC_SHA"/>
665
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
666
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
667
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"/>
668
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"/>
669
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA"/>
670
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"/>
671
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA256"/>
672
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA"/>
673
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
674
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA"/>
675
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_SEED_CBC_SHA"/>
676
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_DES_CBC_SHA"/>
677
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
678
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
679
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_256_GCM_SHA384"/>
680
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA256"/>
681
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA"/>
682
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_128_GCM_SHA256"/>
683
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA256"/>
684
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA"/>
685
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA"/>
686
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA"/>
687
+ </rejectedCipherSuites>
688
+ <errors/>
689
+ </tlsv1>
690
+ <tlsv1_1 isProtocolSupported="True" title="TLSV1_1 Cipher Suites">
691
+ <preferredCipherSuite>
692
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA">
693
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
694
+ </cipherSuite>
695
+ </preferredCipherSuite>
696
+ <acceptedCipherSuites>
697
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA">
698
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
699
+ </cipherSuite>
700
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA"/>
701
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA">
702
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
703
+ </cipherSuite>
704
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_RSA_WITH_AES_128_CBC_SHA"/>
705
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="112" name="TLS_RSA_WITH_3DES_EDE_CBC_SHA"/>
706
+ </acceptedCipherSuites>
707
+ <rejectedCipherSuites>
708
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_SEED_CBC_SHA"/>
709
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_RC4_128_SHA"/>
710
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_RC4_128_MD5"/>
711
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_NULL_SHA256"/>
712
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_SHA"/>
713
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_MD5"/>
714
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_IDEA_CBC_SHA"/>
715
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_DES_CBC_SHA"/>
716
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
717
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
718
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_256_GCM_SHA384"/>
719
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
720
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_128_GCM_SHA256"/>
721
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_RSA_WITH_AES_128_CBC_SHA256"/>
722
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_EXPORT_WITH_RC4_40_MD5"/>
723
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5"/>
724
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_EXPORT_WITH_DES40_CBC_SHA"/>
725
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_RC4_128_SHA"/>
726
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_NULL_SHA"/>
727
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_AES_256_CBC_SHA"/>
728
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_AES_128_CBC_SHA"/>
729
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA"/>
730
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_RC4_128_SHA"/>
731
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_NULL_SHA"/>
732
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384"/>
733
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384"/>
734
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_AES_256_CBC_SHA"/>
735
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256"/>
736
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256"/>
737
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_AES_128_CBC_SHA"/>
738
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA"/>
739
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_RC4_128_SHA"/>
740
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_NULL_SHA"/>
741
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384"/>
742
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384"/>
743
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA"/>
744
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256"/>
745
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256"/>
746
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA"/>
747
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
748
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_RC4_128_SHA"/>
749
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_NULL_SHA"/>
750
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"/>
751
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"/>
752
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"/>
753
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"/>
754
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
755
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_RC4_128_SHA"/>
756
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_NULL_SHA"/>
757
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"/>
758
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384"/>
759
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"/>
760
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"/>
761
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"/>
762
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA"/>
763
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
764
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_SEED_CBC_SHA"/>
765
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_RC4_128_MD5"/>
766
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_DES_CBC_SHA"/>
767
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA"/>
768
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA"/>
769
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_256_GCM_SHA384"/>
770
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_256_CBC_SHA256"/>
771
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_256_CBC_SHA"/>
772
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_128_GCM_SHA256"/>
773
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_AES_128_CBC_SHA256"/>
774
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_128_CBC_SHA"/>
775
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"/>
776
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_EXPORT_WITH_RC4_40_MD5"/>
777
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA"/>
778
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_SEED_CBC_SHA"/>
779
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_DES_CBC_SHA"/>
780
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
781
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
782
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_256_GCM_SHA384"/>
783
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_256_CBC_SHA256"/>
784
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_AES_256_CBC_SHA"/>
785
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_128_GCM_SHA256"/>
786
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_RSA_WITH_AES_128_CBC_SHA256"/>
787
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_AES_128_CBC_SHA"/>
788
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA"/>
789
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_SEED_CBC_SHA"/>
790
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_DES_CBC_SHA"/>
791
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
792
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
793
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_256_GCM_SHA384"/>
794
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_256_CBC_SHA256"/>
795
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_AES_256_CBC_SHA"/>
796
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_128_GCM_SHA256"/>
797
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DH_DSS_WITH_AES_128_CBC_SHA256"/>
798
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_AES_128_CBC_SHA"/>
799
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA"/>
800
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_SEED_CBC_SHA"/>
801
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_DES_CBC_SHA"/>
802
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
803
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
804
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"/>
805
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"/>
806
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA"/>
807
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"/>
808
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA256"/>
809
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA"/>
810
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
811
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA"/>
812
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_SEED_CBC_SHA"/>
813
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_DES_CBC_SHA"/>
814
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
815
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
816
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_256_GCM_SHA384"/>
817
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA256"/>
818
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA"/>
819
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_128_GCM_SHA256"/>
820
+ <cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA256"/>
821
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA"/>
822
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA"/>
823
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA"/>
824
+ </rejectedCipherSuites>
825
+ <errors/>
826
+ </tlsv1_1>
827
+ <tlsv1_2 isProtocolSupported="True" title="TLSV1_2 Cipher Suites">
828
+ <preferredCipherSuite>
829
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256">
830
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
831
+ </cipherSuite>
832
+ </preferredCipherSuite>
833
+ <acceptedCipherSuites>
834
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256"/>
835
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA">
836
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
837
+ </cipherSuite>
838
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384">
839
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
840
+ </cipherSuite>
841
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"/>
842
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA"/>
843
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="256" name="TLS_RSA_WITH_AES_256_GCM_SHA384"/>
844
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA">
845
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
846
+ </cipherSuite>
847
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256">
848
+ <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
849
+ </cipherSuite>
850
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_RSA_WITH_AES_128_CBC_SHA"/>
851
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="128" name="TLS_RSA_WITH_AES_128_GCM_SHA256"/>
852
+ <cipherSuite anonymous="False" connectionStatus="HTTP 301 Moved Permanently - https://www.google.com/" keySize="112" name="TLS_RSA_WITH_3DES_EDE_CBC_SHA"/>
853
+ </acceptedCipherSuites>
854
+ <rejectedCipherSuites>
855
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_SEED_CBC_SHA"/>
856
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_RC4_128_SHA"/>
857
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_RC4_128_MD5"/>
858
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_SHA256"/>
859
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_SHA"/>
860
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_NULL_MD5"/>
861
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_IDEA_CBC_SHA"/>
862
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256"/>
863
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
864
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256"/>
865
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
866
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
867
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_AES_128_CBC_SHA256"/>
868
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_RC4_128_SHA"/>
869
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_NULL_SHA"/>
870
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_AES_256_CBC_SHA"/>
871
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_AES_128_CBC_SHA"/>
872
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA"/>
873
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_RC4_128_SHA"/>
874
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_NULL_SHA"/>
875
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384"/>
876
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256"/>
877
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"/>
878
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"/>
879
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
880
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_RC4_128_SHA"/>
881
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_NULL_SHA"/>
882
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384"/>
883
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256"/>
884
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"/>
885
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384"/>
886
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"/>
887
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"/>
888
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"/>
889
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA"/>
890
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA"/>
891
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_SEED_CBC_SHA"/>
892
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_RC4_128_MD5"/>
893
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256"/>
894
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA"/>
895
+ <cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256"/>
896
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA"/>
897
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_256_GCM_SHA384"/>
898
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_256_CBC_SHA256"/>
899
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_256_CBC_SHA"/>
900
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_128_GCM_SHA256"/>
901
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_128_CBC_SHA256"/>
902
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_AES_128_CBC_SHA"/>
903
+ <cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"/>
904
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_SEED_CBC_SHA"/>
905
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256"/>
906
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256"/>
907
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA"/>
908
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256"/>
909
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA"/>
910
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"/>
911
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_256_CCM"/>
912
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA256"/>
913
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_256_CBC_SHA"/>
914
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"/>
915
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA256"/>
916
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_AES_128_CBC_SHA"/>
917
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA"/>
918
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_SEED_CBC_SHA"/>
919
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256"/>
920
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA"/>
921
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256"/>
922
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA"/>
923
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_256_GCM_SHA384"/>
924
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA256"/>
925
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_256_CBC_SHA"/>
926
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_128_GCM_SHA256"/>
927
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA256"/>
928
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_AES_128_CBC_SHA"/>
929
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA"/>
930
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RSA_WITH_AES_256_CCM_8"/>
931
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RSA_WITH_AES_256_CCM"/>
932
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RSA_WITH_AES_128_CCM_8"/>
933
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RSA_WITH_AES_128_CCM"/>
934
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE_ECDSA_WITH_AES_256_CCM_8"/>
935
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE_ECDSA_WITH_AES_256_CCM"/>
936
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE_ECDSA_WITH_AES_128_CCM_8"/>
937
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE_ECDSA_WITH_AES_128_CCM"/>
938
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE_RSA_WITH_AES_256_CCM_8"/>
939
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE_RSA_WITH_AES_128_CCM_8"/>
940
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE_RSA_WITH_AES_128_CCM"/>
941
+ </rejectedCipherSuites>
942
+ <errors/>
943
+ </tlsv1_2>
944
+ <tlsv1_3 isProtocolSupported="False" title="TLSV1_3 Cipher Suites">
945
+ <preferredCipherSuite/>
946
+ <acceptedCipherSuites/>
947
+ <rejectedCipherSuites>
948
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert: protocol version " name="TLS_CHACHA20_POLY1305_SHA256"/>
949
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert: protocol version " name="TLS_AES_256_GCM_SHA384"/>
950
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert: protocol version " name="TLS_AES_128_GCM_SHA256"/>
951
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert: protocol version " name="TLS_AES_128_CCM_SHA256"/>
952
+ <cipherSuite anonymous="False" connectionStatus="TLS / Alert: protocol version " name="TLS_AES_128_CCM_8_SHA256"/>
953
+ </rejectedCipherSuites>
954
+ <errors/>
955
+ </tlsv1_3>
956
+ </target>
957
+ <target host="github.com" ip="192.30.255.113" port="443" tlsWrappedProtocol="https">
5
958
  <certinfo title="Certificate Information">
6
959
  <receivedCertificateChain containsAnchorCertificate="False" hasMustStapleExtension="False" includedSctsCount="3" isChainOrderValid="True" suppliedServerNameIndication="github.com">
7
960
  <certificate hpkpSha256Pin="pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU=" sha1Fingerprint="d79f076110b39293e349ac89845b0380c19e2f8b">
@@ -676,10 +1629,10 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
676
1629
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA">
677
1630
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
678
1631
  </cipherSuite>
679
- <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
680
1632
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384">
681
1633
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
682
1634
  </cipherSuite>
1635
+ <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
683
1636
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384">
684
1637
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
685
1638
  </cipherSuite>
@@ -800,7 +1753,7 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
800
1753
  <errors/>
801
1754
  </tlsv1_3>
802
1755
  </target>
803
- <target host="www.yahoo.com" ip="206.190.39.43" port="443" tlsWrappedProtocol="https">
1756
+ <target host="www.yahoo.com" ip="98.137.246.7" port="443" tlsWrappedProtocol="https">
804
1757
  <certinfo title="Certificate Information">
805
1758
  <receivedCertificateChain containsAnchorCertificate="False" hasMustStapleExtension="False" includedSctsCount="2" isChainOrderValid="True" suppliedServerNameIndication="www.yahoo.com">
806
1759
  <certificate hpkpSha256Pin="Zp964pqQpx94buKz5C8LxtmtQQWq2ZcWnLzrmt187go=" sha1Fingerprint="ae699d5ebddce6ed574111262f19bb18efbe73b0">
@@ -1140,7 +2093,7 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
1140
2093
  <ocspStapling isSupported="True">
1141
2094
  <ocspResponse isTrustedByMozillaCAStore="True" status="SUCCESSFUL">
1142
2095
  <responderID>5168FF90AF0207753CCCD9656462A212B859723B</responderID>
1143
- <producedAt>Mar 12 12:34:51 2018 GMT</producedAt>
2096
+ <producedAt>Mar 29 18:35:13 2018 GMT</producedAt>
1144
2097
  </ocspResponse>
1145
2098
  </ocspStapling>
1146
2099
  </certinfo>
@@ -1184,7 +2137,7 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
1184
2137
  <sessionResumptionWithTLSTickets isSupported="True"/>
1185
2138
  </resum>
1186
2139
  <resum_rate title="Resumption Rate">
1187
- <sessionResumptionWithSessionIDs errors="0" failedAttempts="100" isSupported="False" successfulAttempts="0" totalAttempts="100"/>
2140
+ <sessionResumptionWithSessionIDs errors="0" failedAttempts="96" isSupported="False" successfulAttempts="4" totalAttempts="100"/>
1188
2141
  </resum_rate>
1189
2142
  <robot title="ROBOT Attack">
1190
2143
  <robotAttack resultEnum="NOT_VULNERABLE_NO_ORACLE"/>
@@ -1616,10 +2569,10 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
1616
2569
  </cipherSuite>
1617
2570
  </preferredCipherSuite>
1618
2571
  <acceptedCipherSuites>
1619
- <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
1620
2572
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA">
1621
2573
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
1622
2574
  </cipherSuite>
2575
+ <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA256"/>
1623
2576
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384">
1624
2577
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
1625
2578
  </cipherSuite>
@@ -1745,7 +2698,7 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
1745
2698
  <errors/>
1746
2699
  </tlsv1_3>
1747
2700
  </target>
1748
- <target host="twitter.com" ip="104.244.42.193" port="443" tlsWrappedProtocol="https">
2701
+ <target host="twitter.com" ip="104.244.42.1" port="443" tlsWrappedProtocol="https">
1749
2702
  <certinfo title="Certificate Information">
1750
2703
  <receivedCertificateChain containsAnchorCertificate="False" hasMustStapleExtension="False" includedSctsCount="2" isChainOrderValid="True" suppliedServerNameIndication="twitter.com">
1751
2704
  <certificate hpkpSha256Pin="TfHW/l4khWKX6OE4Jra+u3onnsH4IfzWgHPJGE88rEo=" sha1Fingerprint="265c85f65b044dc830645c6fb9cfa7d28f28bc1b">
@@ -2163,10 +3116,10 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
2163
3116
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
2164
3117
  </cipherSuite>
2165
3118
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="TLS_RSA_WITH_AES_128_CBC_SHA"/>
3119
+ <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="TLS_RSA_WITH_3DES_EDE_CBC_SHA"/>
2166
3120
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA">
2167
3121
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
2168
3122
  </cipherSuite>
2169
- <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="TLS_RSA_WITH_3DES_EDE_CBC_SHA"/>
2170
3123
  </acceptedCipherSuites>
2171
3124
  <rejectedCipherSuites>
2172
3125
  <cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="TLS_RSA_WITH_SEED_CBC_SHA"/>
@@ -2443,8 +3396,8 @@ vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
2443
3396
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384">
2444
3397
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
2445
3398
  </cipherSuite>
2446
- <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA"/>
2447
3399
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_GCM_SHA384"/>
3400
+ <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="TLS_RSA_WITH_AES_256_CBC_SHA"/>
2448
3401
  <cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA">
2449
3402
  <keyExchange A="0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc" B="0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b" Cofactor="1" Field_Type="prime-field" Generator="0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5" GeneratorType="uncompressed" GroupSize="256" Order="0x00ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551" Prime="0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff" Seed="0xc49d360886e704936a6678e1139d26b7819f7e90" Type="ECDH"/>
2450
3403
  </cipherSuite>