ruby-sslyze 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.document +3 -0
- data/.gitignore +4 -0
- data/.rspec +1 -0
- data/.travis.yml +19 -0
- data/.yardopts +1 -0
- data/ChangeLog.md +8 -0
- data/Gemfile +18 -0
- data/LICENSE.txt +20 -0
- data/README.md +70 -0
- data/Rakefile +23 -0
- data/lib/sslyze.rb +3 -0
- data/lib/sslyze/cert_info.rb +55 -0
- data/lib/sslyze/certificate.rb +139 -0
- data/lib/sslyze/certificate/domain_name.rb +77 -0
- data/lib/sslyze/certificate/extensions.rb +127 -0
- data/lib/sslyze/certificate/extensions/authority_information_access.rb +38 -0
- data/lib/sslyze/certificate/extensions/extension.rb +26 -0
- data/lib/sslyze/certificate/extensions/x509v3_basic_constraints.rb +60 -0
- data/lib/sslyze/certificate/extensions/x509v3_certificate_policies.rb +50 -0
- data/lib/sslyze/certificate/extensions/x509v3_crl_distribution_points.rb +32 -0
- data/lib/sslyze/certificate/extensions/x509v3_extended_key_usage.rb +32 -0
- data/lib/sslyze/certificate/extensions/x509v3_key_usage.rb +50 -0
- data/lib/sslyze/certificate/extensions/x509v3_subject_alternative_name.rb +71 -0
- data/lib/sslyze/certificate/issuer.rb +56 -0
- data/lib/sslyze/certificate/public_key.rb +9 -0
- data/lib/sslyze/certificate/subject.rb +117 -0
- data/lib/sslyze/certificate/subject_public_key_info.rb +53 -0
- data/lib/sslyze/certificate/validity.rb +9 -0
- data/lib/sslyze/certificate_chain.rb +89 -0
- data/lib/sslyze/certificate_validation.rb +44 -0
- data/lib/sslyze/cipher_suite.rb +237 -0
- data/lib/sslyze/key_exchange.rb +106 -0
- data/lib/sslyze/ocsp_response.rb +87 -0
- data/lib/sslyze/program.rb +66 -0
- data/lib/sslyze/protocol.rb +133 -0
- data/lib/sslyze/target.rb +295 -0
- data/lib/sslyze/task.rb +65 -0
- data/lib/sslyze/types.rb +17 -0
- data/lib/sslyze/version.rb +4 -0
- data/lib/sslyze/xml.rb +139 -0
- data/ruby-sslyze.gemspec +24 -0
- data/spec/cert_info_spec.rb +29 -0
- data/spec/certificate/subject_name_spec.rb +72 -0
- data/spec/certificate_chain_spec.rb +61 -0
- data/spec/certificate_spec.rb +330 -0
- data/spec/certificate_validation_spec.rb +27 -0
- data/spec/cipher_suite_spec.rb +50 -0
- data/spec/issuer_spec.rb +33 -0
- data/spec/key_exchange_spec.rb +97 -0
- data/spec/ocsp_response_spec.rb +59 -0
- data/spec/protocol_spec.rb +99 -0
- data/spec/spec_helper.rb +9 -0
- data/spec/sslyze.xml +2798 -0
- data/spec/sslyze_spec.rb +8 -0
- data/spec/subject_public_key_info_spec.rb +35 -0
- data/spec/subject_spec.rb +67 -0
- data/spec/target_spec.rb +176 -0
- data/spec/xml_examples.rb +9 -0
- data/spec/xml_spec.rb +72 -0
- metadata +162 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'xml_examples'
|
3
|
+
require 'sslyze/certificate_validation'
|
4
|
+
|
5
|
+
describe SSLyze::CertificateValidation do
|
6
|
+
include_examples "XML specs"
|
7
|
+
|
8
|
+
subject { described_class.new(xml.at('/document/results/target/certinfo/certificateValidation')) }
|
9
|
+
|
10
|
+
describe "#hostname?" do
|
11
|
+
it "should query hostnameValidation/@certificateMatchesServerHostname" do
|
12
|
+
expect(subject.hostname?).to be true
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#path" do
|
17
|
+
it "should parse the pathValidation elements into a Hash" do
|
18
|
+
expect(subject.path).to be == {
|
19
|
+
'Mozilla NSS' => true,
|
20
|
+
'Microsoft' => true,
|
21
|
+
'Apple' => true,
|
22
|
+
'Java 6' => true,
|
23
|
+
'Google' => true
|
24
|
+
}
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'xml_examples'
|
3
|
+
require 'sslyze/cipher_suite'
|
4
|
+
|
5
|
+
describe SSLyze::CipherSuite do
|
6
|
+
include_examples "XML specs"
|
7
|
+
|
8
|
+
subject { described_class.new(xml.at('/document/results/target/tlsv1_2/acceptedCipherSuites/cipherSuite')) }
|
9
|
+
|
10
|
+
describe "#name" do
|
11
|
+
it "should parse the name attribute" do
|
12
|
+
expect(subject.name).to be == 'AES128-GCM-SHA256'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#rfc_name" do
|
17
|
+
it "should map the openssl name back to the RFC name" do
|
18
|
+
expect(subject.rfc_name).to be == 'TLS_RSA_WITH_AES_128_GCM_SHA256'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#connection_status" do
|
23
|
+
it "should parse the connectionStatus attribute" do
|
24
|
+
expect(subject.connection_status).to be == 'HTTP 200 OK'
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "#anonymous?" do
|
29
|
+
it "should query the anonymous attribute" do
|
30
|
+
expect(subject.anonymous?).to be false
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe "#key_exchange" do
|
35
|
+
context "when the keyExchange child is present" do
|
36
|
+
subject { described_class.new(xml.at('/document/results/target/tlsv1_2/acceptedCipherSuites/cipherSuite[keyExchange]')) }
|
37
|
+
|
38
|
+
it "should return a KeyExchange object" do
|
39
|
+
expect(subject.key_exchange).to be_kind_of(KeyExchange)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
context "when the keyExchange object is missing" do
|
44
|
+
it "should return nil" do
|
45
|
+
expect(subject.key_exchange).to be nil
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
data/spec/issuer_spec.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'xml_examples'
|
3
|
+
require 'sslyze/certificate'
|
4
|
+
|
5
|
+
describe SSLyze::Certificate::Issuer do
|
6
|
+
include_examples "XML specs"
|
7
|
+
|
8
|
+
subject { described_class.new(xml.at('/document/results/target/certinfo/certificateChain/certificate/issuer')) }
|
9
|
+
|
10
|
+
describe "#country_name" do
|
11
|
+
it "should parse the countryName" do
|
12
|
+
expect(subject.country_name).to be == 'US'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#common_name" do
|
17
|
+
it "should parse the commonName element" do
|
18
|
+
expect(subject.common_name).to be == 'DigiCert SHA2 Extended Validation Server CA'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#organizational_unit_name" do
|
23
|
+
it "should parse the organizationalUnitName element" do
|
24
|
+
expect(subject.organizational_unit_name).to be == 'www.digicert.com'
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "#organization_name" do
|
29
|
+
it "should parse the organizationName element" do
|
30
|
+
expect(subject.organization_name).to be == 'DigiCert Inc'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'xml_examples'
|
3
|
+
require 'sslyze/key_exchange'
|
4
|
+
|
5
|
+
describe SSLyze::KeyExchange do
|
6
|
+
include_examples "XML specs"
|
7
|
+
|
8
|
+
subject { described_class.new(xml.at('/document/results/target/tlsv1_2/acceptedCipherSuites/cipherSuite/keyExchange')) }
|
9
|
+
|
10
|
+
describe "#a" do
|
11
|
+
it "should parse the A attribute" do
|
12
|
+
expect(subject.a).to be == '0x00ffffffff00000001000000000000000000000000fffffffffffffffffffffffc'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#b" do
|
17
|
+
it "should parse the B attribute" do
|
18
|
+
expect(subject.b).to be == '0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#cofactor" do
|
23
|
+
it "should parse the Cofactor attribute" do
|
24
|
+
expect(subject.cofactor).to be == 1
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "#field_type" do
|
29
|
+
it "should parse the Field_Type attribute" do
|
30
|
+
expect(subject.field_type).to be == 'prime-field'
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe "#generator" do
|
35
|
+
it "should parse the Generator attribute" do
|
36
|
+
expect(subject.generator).to be == '0x046b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c2964fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5'
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe "#generator_type" do
|
41
|
+
it "should parse the GeneratorType attribute" do
|
42
|
+
expect(subject.generator_type).to be == :uncompressed
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe "#group_size" do
|
47
|
+
it "should parse the GroupSize attribute" do
|
48
|
+
expect(subject.group_size).to be == 256
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe "#prime" do
|
53
|
+
it "should parse the Prime attribute" do
|
54
|
+
expect(subject.prime).to be == '0x00ffffffff00000001000000000000000000000000ffffffffffffffffffffffff'
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe "#seed" do
|
59
|
+
it "should parse the Seed attribute" do
|
60
|
+
expect(subject.seed).to be == '0xc49d360886e704936a6678e1139d26b7819f7e90'
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe "#type" do
|
65
|
+
it "should parse the Type attribute" do
|
66
|
+
expect(subject.type).to be == :ECDH
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe "#dh?" do
|
71
|
+
context "when #type is :DH" do
|
72
|
+
before { expect(subject).to receive(:type).and_return(:DH) }
|
73
|
+
|
74
|
+
it { expect(subject.dh?).to be(true) }
|
75
|
+
end
|
76
|
+
|
77
|
+
context "when #type is :ECDHE " do
|
78
|
+
before { expect(subject).to receive(:type).and_return(:ECDHE) }
|
79
|
+
|
80
|
+
it { expect(subject.dh?).to be(false) }
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe "#ecdhe?" do
|
85
|
+
context "when #type is :DH" do
|
86
|
+
before { expect(subject).to receive(:type).and_return(:DH) }
|
87
|
+
|
88
|
+
it { expect(subject.ecdhe?).to be(false) }
|
89
|
+
end
|
90
|
+
|
91
|
+
context "when #type is :ECDHE " do
|
92
|
+
before { expect(subject).to receive(:type).and_return(:ECDHE) }
|
93
|
+
|
94
|
+
it { expect(subject.ecdhe?).to be(true) }
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'xml_examples'
|
3
|
+
require 'sslyze/ocsp_response'
|
4
|
+
|
5
|
+
describe SSLyze::OCSPResponse do
|
6
|
+
include_examples "XML specs"
|
7
|
+
|
8
|
+
subject { described_class.new(xml.at('/document/results/target/certinfo/ocspStapling/ocspResponse')) }
|
9
|
+
|
10
|
+
describe "#trusted?" do
|
11
|
+
it "should query @isTrustedByMozillaCAStore" do
|
12
|
+
expect(subject.trusted?).to be true
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#type" do
|
17
|
+
it "should query responseType" do
|
18
|
+
expect(subject.type).to be == 'Basic OCSP Response'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#responder_id" do
|
23
|
+
it "should query responderID" do
|
24
|
+
expect(subject.responder_id).to be == '0E7DB19F96176475CE3E5D98725AF4ACADA03FAF'
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "#version" do
|
29
|
+
it "should query version" do
|
30
|
+
expect(subject.version).to be 1
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe "#status" do
|
35
|
+
it "should query responseStatus" do
|
36
|
+
expect(subject.status).to be == :successful
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe "#successful?" do
|
41
|
+
context "when status is :successful" do
|
42
|
+
before { expect(subject).to receive(:status).and_return(:successful) }
|
43
|
+
|
44
|
+
specify { expect(subject.successful?).to be true }
|
45
|
+
end
|
46
|
+
|
47
|
+
context "when status is not :successful" do
|
48
|
+
before { expect(subject).to receive(:status).and_return(:failure) }
|
49
|
+
|
50
|
+
specify { expect(subject.successful?).to be false }
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe "#produced_at" do
|
55
|
+
it "should query producedAt and return a Time object" do
|
56
|
+
expect(subject.produced_at).to be == Time.parse('Sep 24 22:58:23 2015 GMT')
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'xml_examples'
|
3
|
+
require 'sslyze/protocol'
|
4
|
+
|
5
|
+
describe SSLyze::Protocol do
|
6
|
+
include_examples "XML specs"
|
7
|
+
|
8
|
+
subject { described_class.new(xml.at('/document/results/target/tlsv1_2')) }
|
9
|
+
|
10
|
+
describe "#name" do
|
11
|
+
it "should return the protocol name" do
|
12
|
+
expect(subject.name).to be == :tlsv1_2
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#title" do
|
17
|
+
it "must parse the title attribute" do
|
18
|
+
expect(subject.title).to be == 'TLSV1_2 Cipher Suites'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#each_error" do
|
23
|
+
pending "need data"
|
24
|
+
end
|
25
|
+
|
26
|
+
describe "#each_rejected_cipher_suite" do
|
27
|
+
it "should yield CipherSuite objects" do
|
28
|
+
expect { |b|
|
29
|
+
subject.each_rejected_cipher_suite(&b)
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
context "when given no block" do
|
34
|
+
specify do
|
35
|
+
expect(subject.each_rejected_cipher_suite).to be_an(Enumerator)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe "#rejected_cipher_suites" do
|
41
|
+
specify do
|
42
|
+
expect(subject.rejected_cipher_suites).to be_an(Array).and(
|
43
|
+
all(be_a(CipherSuite))
|
44
|
+
)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "#each_accepted_cipher_suite" do
|
49
|
+
it "should yield CipherSuite objects" do
|
50
|
+
expect { |b|
|
51
|
+
subject.each_accepted_cipher_suite(&b)
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
context "when given no block" do
|
56
|
+
specify do
|
57
|
+
expect(subject.each_accepted_cipher_suite).to be_an(Enumerator)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe "#accepted_cipher_suites" do
|
63
|
+
specify do
|
64
|
+
expect(subject.accepted_cipher_suites).to be_an(Array).and(
|
65
|
+
all(be_a(CipherSuite))
|
66
|
+
)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe "#each_preferred_cipher_suite" do
|
71
|
+
it "should yield CipherSuite objects" do
|
72
|
+
expect { |b|
|
73
|
+
subject.each_preferred_cipher_suite(&b)
|
74
|
+
}
|
75
|
+
end
|
76
|
+
|
77
|
+
context "when given no block" do
|
78
|
+
specify do
|
79
|
+
expect(subject.each_preferred_cipher_suite).to be_an(Enumerator)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe "#preferred_cipher_suites" do
|
85
|
+
specify do
|
86
|
+
expect(subject.preferred_cipher_suites).to be_an(Array).and(
|
87
|
+
all(be_a(CipherSuite))
|
88
|
+
)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
describe "#supported?" do
|
93
|
+
context "when there are preferred cipher suites" do
|
94
|
+
it "should return true" do
|
95
|
+
expect(subject.supported?).to be(true)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/spec/sslyze.xml
ADDED
@@ -0,0 +1,2798 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<document SSLyzeVersion="0.12.0" SSLyzeWeb="https://github.com/nabla-c0d3/sslyze" title="SSLyze Scan Results">
|
3
|
+
<invalidTargets/>
|
4
|
+
<results defaultTimeout="5" httpsTunnel="None" startTLS="None" totalScanTime="9.99340701103">
|
5
|
+
<target host="github.com" ip="192.30.252.130" port="443">
|
6
|
+
<certinfo argument="basic" title="Certificate Information">
|
7
|
+
<certificateChain>
|
8
|
+
<certificate position="leaf" sha1Fingerprint="a0c4a74600eda72dc0becb9a8cb607ca58ee745e">
|
9
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
10
|
+
MIIF4DCCBMigAwIBAgIQDACTENIG2+M3VTWAEY3chzANBgkqhkiG9w0BAQsFADB1
|
11
|
+
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
12
|
+
d3cuZGlnaWNlcnQuY29tMTQwMgYDVQQDEytEaWdpQ2VydCBTSEEyIEV4dGVuZGVk
|
13
|
+
IFZhbGlkYXRpb24gU2VydmVyIENBMB4XDTE0MDQwODAwMDAwMFoXDTE2MDQxMjEy
|
14
|
+
MDAwMFowgfAxHTAbBgNVBA8MFFByaXZhdGUgT3JnYW5pemF0aW9uMRMwEQYLKwYB
|
15
|
+
BAGCNzwCAQMTAlVTMRkwFwYLKwYBBAGCNzwCAQITCERlbGF3YXJlMRAwDgYDVQQF
|
16
|
+
Ewc1MTU3NTUwMRcwFQYDVQQJEw41NDggNHRoIFN0cmVldDEOMAwGA1UEERMFOTQx
|
17
|
+
MDcxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T
|
18
|
+
YW4gRnJhbmNpc2NvMRUwEwYDVQQKEwxHaXRIdWIsIEluYy4xEzARBgNVBAMTCmdp
|
19
|
+
dGh1Yi5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCx1Nw8r/3z
|
20
|
+
Tu3BZ63myyLot+KrKPL33GJwCNEMr9YWaiGwNksXDTZjBK6/6iBRlWVm8r+5TaQM
|
21
|
+
Kev1FbHoNbNwEJTVG1m0Jg/Wg1dZneF8Cd3gE8pNb0Obzc+HOhWnhd1mg+2TDP4r
|
22
|
+
bTgceYiQz61YGC1R0cKj8keMbzgJubjvTJMLy4OUh+rgo7XZe5trD0P5yu6ADSin
|
23
|
+
dvEl9ME1PPZ0rd5qM4J73P1LdqfC7vJqv6kkpl/nLnwO28N0c/p+xtjPYOs2ViG2
|
24
|
+
wYq4JIJNeCS66R2hiqeHvmYlab++O3JuT+DkhSUIsZGJuNZ0ZXabLE9iH6H6Or6c
|
25
|
+
JL+fyrDFwGeNAgMBAAGjggHuMIIB6jAfBgNVHSMEGDAWgBQ901Cl1qCt7vNKYApl
|
26
|
+
0yHU+PjWDzAdBgNVHQ4EFgQUakOQfTuYFHJSlTqqKApD+FF+06YwJQYDVR0RBB4w
|
27
|
+
HIIKZ2l0aHViLmNvbYIOd3d3LmdpdGh1Yi5jb20wDgYDVR0PAQH/BAQDAgWgMB0G
|
28
|
+
A1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjB1BgNVHR8EbjBsMDSgMqAwhi5o
|
29
|
+
dHRwOi8vY3JsMy5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzEuY3JsMDSg
|
30
|
+
MqAwhi5odHRwOi8vY3JsNC5kaWdpY2VydC5jb20vc2hhMi1ldi1zZXJ2ZXItZzEu
|
31
|
+
Y3JsMEIGA1UdIAQ7MDkwNwYJYIZIAYb9bAIBMCowKAYIKwYBBQUHAgEWHGh0dHBz
|
32
|
+
Oi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwgYgGCCsGAQUFBwEBBHwwejAkBggrBgEF
|
33
|
+
BQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMFIGCCsGAQUFBzAChkZodHRw
|
34
|
+
Oi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRTSEEyRXh0ZW5kZWRWYWxp
|
35
|
+
ZGF0aW9uU2VydmVyQ0EuY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQAD
|
36
|
+
ggEBAG/nbcuC8++QhwnXDxUiLIz+06scipbbXRJd0XjAMbD/RciJ9wiYUhcfTEsg
|
37
|
+
ZGpt21DXEL5+q/4vgNipSlhBaYFyGQiDm5IQTmIte0ZwQ26jUxMf4pOmI1v3kj43
|
38
|
+
FHU7uUskQS6lPUgND5nqHkKXxv6V2qtHmssrA9YNQMEK93ga2rWDpK21mUkgLviT
|
39
|
+
PB5sPdE7IzprOCp+Ynpf3RcFddAkXb6NqJoQRPrStMrv19C1dqUmJRwIQdhkkqev
|
40
|
+
ff6IQDlhC8BIMKmCNK33cEYDfDWROtW7JNgBvBTwww8jO1gyug8SbGZ6bZ3k8OV8
|
41
|
+
XX4C2NesiZcLYbc2n7B9O+63M2k=
|
42
|
+
-----END CERTIFICATE-----</asPEM>
|
43
|
+
<subjectPublicKeyInfo>
|
44
|
+
<publicKey>
|
45
|
+
<modulus>00:b1:d4:dc:3c:af:fd:f3:4e:ed:c1:67:ad:e6:cb:22:e8:b7:e2:ab:28:f2:f7:dc:62:70:08:d1:0c:af:d6:16:6a:21:b0:36:4b:17:0d:36:63:04:ae:bf:ea:20:51:95:65:66:f2:bf:b9:4d:a4:0c:29:eb:f5:15:b1:e8:35:b3:70:10:94:d5:1b:59:b4:26:0f:d6:83:57:59:9d:e1:7c:09:dd:e0:13:ca:4d:6f:43:9b:cd:cf:87:3a:15:a7:85:dd:66:83:ed:93:0c:fe:2b:6d:38:1c:79:88:90:cf:ad:58:18:2d:51:d1:c2:a3:f2:47:8c:6f:38:09:b9:b8:ef:4c:93:0b:cb:83:94:87:ea:e0:a3:b5:d9:7b:9b:6b:0f:43:f9:ca:ee:80:0d:28:a7:76:f1:25:f4:c1:35:3c:f6:74:ad:de:6a:33:82:7b:dc:fd:4b:76:a7:c2:ee:f2:6a:bf:a9:24:a6:5f:e7:2e:7c:0e:db:c3:74:73:fa:7e:c6:d8:cf:60:eb:36:56:21:b6:c1:8a:b8:24:82:4d:78:24:ba:e9:1d:a1:8a:a7:87:be:66:25:69:bf:be:3b:72:6e:4f:e0:e4:85:25:08:b1:91:89:b8:d6:74:65:76:9b:2c:4f:62:1f:a1:fa:3a:be:9c:24:bf:9f:ca:b0:c5:c0:67:8d</modulus>
|
46
|
+
<exponent>65537</exponent>
|
47
|
+
</publicKey>
|
48
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
49
|
+
<publicKeySize>2048</publicKeySize>
|
50
|
+
</subjectPublicKeyInfo>
|
51
|
+
<version>2</version>
|
52
|
+
<extensions>
|
53
|
+
<X509v3SubjectKeyIdentifier>6A:43:90:7D:3B:98:14:72:52:95:3A:AA:28:0A:43:F8:51:7E:D3:A6</X509v3SubjectKeyIdentifier>
|
54
|
+
<X509v3ExtendedKeyUsage>
|
55
|
+
<TLSWebClientAuthentication/>
|
56
|
+
<TLSWebServerAuthentication/>
|
57
|
+
</X509v3ExtendedKeyUsage>
|
58
|
+
<AuthorityInformationAccess>
|
59
|
+
<CAIssuers>
|
60
|
+
<URI>
|
61
|
+
<listEntry>http://cacerts.digicert.com/DigiCertSHA2ExtendedValidationServerCA.crt</listEntry>
|
62
|
+
</URI>
|
63
|
+
</CAIssuers>
|
64
|
+
<OCSP>
|
65
|
+
<URI>
|
66
|
+
<listEntry>http://ocsp.digicert.com</listEntry>
|
67
|
+
</URI>
|
68
|
+
</OCSP>
|
69
|
+
</AuthorityInformationAccess>
|
70
|
+
<X509v3CRLDistributionPoints>
|
71
|
+
<FullName>
|
72
|
+
<listEntry/>
|
73
|
+
<listEntry/>
|
74
|
+
</FullName>
|
75
|
+
<URI>
|
76
|
+
<listEntry>http://crl3.digicert.com/sha2-ev-server-g1.crl</listEntry>
|
77
|
+
<listEntry>http://crl4.digicert.com/sha2-ev-server-g1.crl</listEntry>
|
78
|
+
</URI>
|
79
|
+
</X509v3CRLDistributionPoints>
|
80
|
+
<X509v3BasicConstraints>CA:FALSE</X509v3BasicConstraints>
|
81
|
+
<X509v3KeyUsage>
|
82
|
+
<KeyEncipherment/>
|
83
|
+
<DigitalSignature/>
|
84
|
+
</X509v3KeyUsage>
|
85
|
+
<X509v3SubjectAlternativeName>
|
86
|
+
<DNS>
|
87
|
+
<listEntry>github.com</listEntry>
|
88
|
+
<listEntry>www.github.com</listEntry>
|
89
|
+
</DNS>
|
90
|
+
</X509v3SubjectAlternativeName>
|
91
|
+
<X509v3AuthorityKeyIdentifier>keyid:3D:D3:50:A5:D6:A0:AD:EE:F3:4A:60:0A:65:D3:21:D4:F8:F8:D6:0F</X509v3AuthorityKeyIdentifier>
|
92
|
+
<X509v3CertificatePolicies>
|
93
|
+
<Policy>
|
94
|
+
<listEntry>2.16.840.1.114412.2.1</listEntry>
|
95
|
+
</Policy>
|
96
|
+
<CPS>
|
97
|
+
<listEntry>https://www.digicert.com/CPS</listEntry>
|
98
|
+
</CPS>
|
99
|
+
</X509v3CertificatePolicies>
|
100
|
+
</extensions>
|
101
|
+
<signatureValue>6f:e7:6d:cb:82:f3:ef:90:87:09:d7:0f:15:22:2c:8c:fe:d3:ab:1c:8a:96:db:5d:12:5d:d1:78:c0:31:b0:ff:45:c8:89:f7:08:98:52:17:1f:4c:4b:20:64:6a:6d:db:50:d7:10:be:7e:ab:fe:2f:80:d8:a9:4a:58:41:69:81:72:19:08:83:9b:92:10:4e:62:2d:7b:46:70:43:6e:a3:53:13:1f:e2:93:a6:23:5b:f7:92:3e:37:14:75:3b:b9:4b:24:41:2e:a5:3d:48:0d:0f:99:ea:1e:42:97:c6:fe:95:da:ab:47:9a:cb:2b:03:d6:0d:40:c1:0a:f7:78:1a:da:b5:83:a4:ad:b5:99:49:20:2e:f8:93:3c:1e:6c:3d:d1:3b:23:3a:6b:38:2a:7e:62:7a:5f:dd:17:05:75:d0:24:5d:be:8d:a8:9a:10:44:fa:d2:b4:ca:ef:d7:d0:b5:76:a5:26:25:1c:08:41:d8:64:92:a7:af:7d:fe:88:40:39:61:0b:c0:48:30:a9:82:34:ad:f7:70:46:03:7c:35:91:3a:d5:bb:24:d8:01:bc:14:f0:c3:0f:23:3b:58:32:ba:0f:12:6c:66:7a:6d:9d:e4:f0:e5:7c:5d:7e:02:d8:d7:ac:89:97:0b:61:b7:36:9f:b0:7d:3b:ee:b7:33:69</signatureValue>
|
102
|
+
<signatureAlgorithm>sha256WithRSAEncryption</signatureAlgorithm>
|
103
|
+
<serialNumber>0C009310D206DBE337553580118DDC87</serialNumber>
|
104
|
+
<subject>
|
105
|
+
<serialNumber>5157550</serialNumber>
|
106
|
+
<organizationName>GitHub, Inc.</organizationName>
|
107
|
+
<businessCategory>Private Organization</businessCategory>
|
108
|
+
<jurisdictionCountryName>US</jurisdictionCountryName>
|
109
|
+
<jurisdictionStateOrProvinceName>Delaware</jurisdictionStateOrProvinceName>
|
110
|
+
<commonName>github.com</commonName>
|
111
|
+
<stateOrProvinceName>California</stateOrProvinceName>
|
112
|
+
<countryName>US</countryName>
|
113
|
+
<streetAddress>548 4th Street</streetAddress>
|
114
|
+
<localityName>San Francisco</localityName>
|
115
|
+
<postalCode>94107</postalCode>
|
116
|
+
</subject>
|
117
|
+
<validity>
|
118
|
+
<notAfter>Apr 12 12:00:00 2016 GMT</notAfter>
|
119
|
+
<notBefore>Apr 8 00:00:00 2014 GMT</notBefore>
|
120
|
+
</validity>
|
121
|
+
<issuer>
|
122
|
+
<countryName>US</countryName>
|
123
|
+
<commonName>DigiCert SHA2 Extended Validation Server CA</commonName>
|
124
|
+
<organizationalUnitName>www.digicert.com</organizationalUnitName>
|
125
|
+
<organizationName>DigiCert Inc</organizationName>
|
126
|
+
</issuer>
|
127
|
+
</certificate>
|
128
|
+
<certificate position="intermediate" sha1Fingerprint="7e2f3a4f8fe8fa8a5730aeca029696637e986f3f">
|
129
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
130
|
+
MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBs
|
131
|
+
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
132
|
+
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
|
133
|
+
ZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTEL
|
134
|
+
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
|
135
|
+
LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBW
|
136
|
+
YWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
137
|
+
ggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUY
|
138
|
+
uD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/
|
139
|
+
LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy
|
140
|
+
/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQh
|
141
|
+
cJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k
|
142
|
+
8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYB
|
143
|
+
Af8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
144
|
+
BQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRp
|
145
|
+
Z2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2Vy
|
146
|
+
dC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2
|
147
|
+
MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5j
|
148
|
+
b20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAW
|
149
|
+
gBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbh
|
150
|
+
hgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg
|
151
|
+
4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa
|
152
|
+
2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs
|
153
|
+
1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1
|
154
|
+
oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn
|
155
|
+
8TUoE6smftX3eg==
|
156
|
+
-----END CERTIFICATE-----</asPEM>
|
157
|
+
<subjectPublicKeyInfo>
|
158
|
+
<publicKey>
|
159
|
+
<modulus>00:d7:53:a4:04:51:f8:99:a6:16:48:4b:67:27:aa:93:49:d0:39:ed:0c:b0:b0:00:87:f1:67:28:86:85:8c:8e:63:da:bc:b1:40:38:e2:d3:f5:ec:a5:05:18:b8:3d:3e:c5:99:17:32:ec:18:8c:fa:f1:0c:a6:64:21:85:cb:07:10:34:b0:52:88:2b:1f:68:9b:d2:b1:8f:12:b0:b3:d2:e7:88:1f:1f:ef:38:77:54:53:5f:80:79:3f:2e:1a:aa:a8:1e:4b:2b:0d:ab:b7:63:b9:35:b7:7d:14:bc:59:4b:df:51:4a:d2:a1:e2:0c:e2:90:82:87:6a:ae:ea:d7:64:d6:98:55:e8:fd:af:1a:50:6c:54:bc:11:f2:fd:4a:f2:9d:bb:7f:0e:f4:d5:be:8e:16:89:12:55:d8:c0:71:34:ee:f6:dc:2d:ec:c4:87:25:86:8d:d8:21:e4:b0:4d:0c:89:dc:39:26:17:dd:f6:d7:94:85:d8:04:21:70:9d:6f:6f:ff:5c:ba:19:e1:45:cb:56:57:28:7e:1c:0d:41:57:aa:b7:b8:27:bb:b1:e4:fa:2a:ef:21:23:75:1a:ad:2d:9b:86:35:8c:9c:77:b5:73:ad:d8:94:2d:e4:f3:0c:9d:ee:c1:4e:62:7e:17:c0:71:9e:2c:de:f1:f9:10:28:19:33</modulus>
|
160
|
+
<exponent>65537</exponent>
|
161
|
+
</publicKey>
|
162
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
163
|
+
<publicKeySize>2048</publicKeySize>
|
164
|
+
</subjectPublicKeyInfo>
|
165
|
+
<version>2</version>
|
166
|
+
<extensions>
|
167
|
+
<X509v3SubjectKeyIdentifier>3D:D3:50:A5:D6:A0:AD:EE:F3:4A:60:0A:65:D3:21:D4:F8:F8:D6:0F</X509v3SubjectKeyIdentifier>
|
168
|
+
<X509v3ExtendedKeyUsage>
|
169
|
+
<TLSWebClientAuthentication/>
|
170
|
+
<TLSWebServerAuthentication/>
|
171
|
+
</X509v3ExtendedKeyUsage>
|
172
|
+
<AuthorityInformationAccess>
|
173
|
+
<OCSP>
|
174
|
+
<URI>
|
175
|
+
<listEntry>http://ocsp.digicert.com</listEntry>
|
176
|
+
</URI>
|
177
|
+
</OCSP>
|
178
|
+
</AuthorityInformationAccess>
|
179
|
+
<X509v3CRLDistributionPoints>
|
180
|
+
<FullName>
|
181
|
+
<listEntry/>
|
182
|
+
</FullName>
|
183
|
+
<URI>
|
184
|
+
<listEntry>http://crl4.digicert.com/DigiCertHighAssuranceEVRootCA.crl</listEntry>
|
185
|
+
</URI>
|
186
|
+
</X509v3CRLDistributionPoints>
|
187
|
+
<X509v3BasicConstraints>CA:TRUE, pathlen:0</X509v3BasicConstraints>
|
188
|
+
<X509v3KeyUsage>
|
189
|
+
<CRLSign/>
|
190
|
+
<CertificateSign/>
|
191
|
+
<DigitalSignature/>
|
192
|
+
</X509v3KeyUsage>
|
193
|
+
<X509v3AuthorityKeyIdentifier>keyid:B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3</X509v3AuthorityKeyIdentifier>
|
194
|
+
<X509v3CertificatePolicies>
|
195
|
+
<Policy>
|
196
|
+
<listEntry>X509v3 Any Policy</listEntry>
|
197
|
+
</Policy>
|
198
|
+
<CPS>
|
199
|
+
<listEntry>https://www.digicert.com/CPS</listEntry>
|
200
|
+
</CPS>
|
201
|
+
</X509v3CertificatePolicies>
|
202
|
+
</extensions>
|
203
|
+
<signatureValue>9d:b6:d0:90:86:e1:86:02:ed:c5:a0:f0:34:1c:74:c1:8d:76:cc:86:0a:a8:f0:4a:8a:42:d6:3f:c8:a9:4d:ad:7c:08:ad:e6:b6:50:b8:a2:1a:4d:88:07:b1:29:21:dc:e7:da:c6:3c:21:e0:e3:11:49:70:ac:7a:1d:01:a4:ca:11:3a:57:ab:7d:57:2a:40:74:fd:d3:1d:85:18:50:df:57:47:75:a1:7d:55:20:2e:47:37:50:72:8c:7f:82:1b:d2:62:8f:2d:03:5a:da:c3:c8:a1:ce:2c:52:a2:00:63:eb:73:ba:71:c8:49:27:23:97:64:85:9e:38:0e:ad:63:68:3c:ba:52:81:58:79:a3:2c:0c:df:de:6d:eb:31:f2:ba:a0:7c:6c:f1:2c:d4:e1:bd:77:84:37:03:ce:32:b5:c8:9a:81:1a:4a:92:4e:3b:46:9a:85:fe:83:a2:f9:9e:8c:a3:cc:0d:5e:b3:3d:cf:04:78:8f:14:14:7b:32:9c:c7:00:a6:5c:c4:b5:a1:55:8d:5a:56:68:a4:22:70:aa:3c:81:71:d9:9d:a8:45:3b:f4:e5:f6:a2:51:dd:c7:7b:62:e8:6f:0c:74:eb:b8:da:f8:bf:87:0d:79:50:91:90:9b:18:3b:91:59:27:f1:35:28:13:ab:26:7e:d5:f7:7a</signatureValue>
|
204
|
+
<signatureAlgorithm>sha256WithRSAEncryption</signatureAlgorithm>
|
205
|
+
<serialNumber>0C79A944B08C11952092615FE26B1D83</serialNumber>
|
206
|
+
<subject>
|
207
|
+
<countryName>US</countryName>
|
208
|
+
<commonName>DigiCert SHA2 Extended Validation Server CA</commonName>
|
209
|
+
<organizationalUnitName>www.digicert.com</organizationalUnitName>
|
210
|
+
<organizationName>DigiCert Inc</organizationName>
|
211
|
+
</subject>
|
212
|
+
<validity>
|
213
|
+
<notAfter>Oct 22 12:00:00 2028 GMT</notAfter>
|
214
|
+
<notBefore>Oct 22 12:00:00 2013 GMT</notBefore>
|
215
|
+
</validity>
|
216
|
+
<issuer>
|
217
|
+
<countryName>US</countryName>
|
218
|
+
<commonName>DigiCert High Assurance EV Root CA</commonName>
|
219
|
+
<organizationalUnitName>www.digicert.com</organizationalUnitName>
|
220
|
+
<organizationName>DigiCert Inc</organizationName>
|
221
|
+
</issuer>
|
222
|
+
</certificate>
|
223
|
+
</certificateChain>
|
224
|
+
<certificateValidation>
|
225
|
+
<hostnameValidation certificateMatchesServerHostname="True" serverHostname="github.com"/>
|
226
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Google" validationResult="ok"/>
|
227
|
+
<pathValidation trustStoreVersion="Update 65" usingTrustStore="Java 6" validationResult="ok"/>
|
228
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Microsoft" validationResult="ok"/>
|
229
|
+
<pathValidation trustStoreVersion="OS X 10.10.5" usingTrustStore="Apple" validationResult="ok"/>
|
230
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Mozilla NSS" validationResult="ok"/>
|
231
|
+
</certificateValidation>
|
232
|
+
<ocspStapling isSupported="False"/>
|
233
|
+
</certinfo>
|
234
|
+
<compression title="Deflate Compression">
|
235
|
+
<compressionMethod isSupported="False" type="DEFLATE"/>
|
236
|
+
</compression>
|
237
|
+
<heartbleed title="OpenSSL Heartbleed">
|
238
|
+
<openSslHeartbleed isVulnerable="False"/>
|
239
|
+
</heartbleed>
|
240
|
+
<reneg title="Session Renegotiation">
|
241
|
+
<sessionRenegotiation canBeClientInitiated="False" isSecure="True"/>
|
242
|
+
</reneg>
|
243
|
+
<resum title="Session Resumption">
|
244
|
+
<sessionResumptionWithSessionIDs errors="0" failedAttempts="0" isSupported="True" successfulAttempts="5" totalAttempts="5"/>
|
245
|
+
<sessionResumptionWithTLSTickets isSupported="False" reason="TLS ticket not assigned"/>
|
246
|
+
</resum>
|
247
|
+
<sslv2 isProtocolSupported="False" title="SSLV2 Cipher Suites">
|
248
|
+
<errors/>
|
249
|
+
<rejectedCipherSuites>
|
250
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="DES-CBC-MD5"/>
|
251
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="DES-CBC3-MD5"/>
|
252
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="EXP-RC2-CBC-MD5"/>
|
253
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="EXP-RC4-MD5"/>
|
254
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="IDEA-CBC-MD5"/>
|
255
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="RC2-CBC-MD5"/>
|
256
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Unexpected EOF" name="RC4-MD5"/>
|
257
|
+
</rejectedCipherSuites>
|
258
|
+
<acceptedCipherSuites/>
|
259
|
+
<preferredCipherSuite/>
|
260
|
+
</sslv2>
|
261
|
+
<sslv3 isProtocolSupported="False" title="SSLV3 Cipher Suites">
|
262
|
+
<errors/>
|
263
|
+
<rejectedCipherSuites>
|
264
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
265
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
266
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
267
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
268
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
269
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
270
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
271
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
272
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
273
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
274
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
275
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
276
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
277
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
278
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
279
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
280
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
281
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
282
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES128-SHA"/>
|
283
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
284
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
285
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES256-SHA"/>
|
286
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
287
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
288
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
289
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
290
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC3-SHA"/>
|
291
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
292
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
293
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
294
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
295
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
296
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
297
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
298
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
299
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
300
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
301
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
302
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
303
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
304
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
305
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
306
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
307
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
308
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
309
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
310
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
311
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
312
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
313
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
314
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
315
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
316
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
317
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
318
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
319
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
320
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
321
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
322
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
323
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
324
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
325
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
326
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
327
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
328
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
329
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
330
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
331
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
332
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
333
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
334
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
335
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
336
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
337
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
338
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
339
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
340
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
341
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
342
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
343
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
344
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
345
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
346
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
347
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
348
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
349
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
350
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
351
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
352
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
353
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
354
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
355
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
356
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
357
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
358
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
359
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-AES128-SHA"/>
|
360
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
361
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
362
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-AES256-SHA"/>
|
363
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
364
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
365
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
366
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
367
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
368
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
369
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
370
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
371
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
372
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
373
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
374
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
375
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
376
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
377
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
378
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
379
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
380
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
381
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
382
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
383
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
384
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
385
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
386
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
387
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
388
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
389
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
390
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
391
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
392
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
393
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
394
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
395
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
396
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
397
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
398
|
+
</rejectedCipherSuites>
|
399
|
+
<acceptedCipherSuites/>
|
400
|
+
<preferredCipherSuite/>
|
401
|
+
</sslv3>
|
402
|
+
<tlsv1 isProtocolSupported="True" title="TLSV1 Cipher Suites">
|
403
|
+
<errors/>
|
404
|
+
<rejectedCipherSuites>
|
405
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
406
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
407
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
408
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
409
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
410
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
411
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
412
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
413
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
414
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
415
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
416
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
417
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
418
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
419
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
420
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
421
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
422
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
423
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
424
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
425
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
426
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
427
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
428
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
429
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC3-SHA"/>
|
430
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
431
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
432
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
433
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
434
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
435
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
436
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
437
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
438
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
439
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
440
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
441
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
442
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
443
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
444
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
445
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
446
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
447
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
448
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
449
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
450
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
451
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
452
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
453
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
454
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
455
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
456
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
457
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
458
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
459
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
460
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
461
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
462
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
463
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
464
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
465
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
466
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
467
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
468
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
469
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
470
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
471
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
472
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
473
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
474
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
475
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
476
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
477
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
478
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
479
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
480
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
481
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
482
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
483
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
484
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
485
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
486
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
487
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
488
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
489
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
490
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
491
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
492
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
493
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
494
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
495
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
496
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
497
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
498
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
499
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
500
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
501
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
502
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
503
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
504
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
505
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
506
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
507
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
508
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
509
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
510
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
511
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
512
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
513
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
514
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
515
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
516
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
517
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
518
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
519
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
520
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
521
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
522
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
523
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
524
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
525
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
526
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
527
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
528
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
529
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
530
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
531
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
532
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
533
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
534
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
535
|
+
</rejectedCipherSuites>
|
536
|
+
<acceptedCipherSuites>
|
537
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA"/>
|
538
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA"/>
|
539
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
540
|
+
<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"/>
|
541
|
+
</cipherSuite>
|
542
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
543
|
+
<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"/>
|
544
|
+
</cipherSuite>
|
545
|
+
</acceptedCipherSuites>
|
546
|
+
<preferredCipherSuite>
|
547
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
548
|
+
<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"/>
|
549
|
+
</cipherSuite>
|
550
|
+
</preferredCipherSuite>
|
551
|
+
</tlsv1>
|
552
|
+
<tlsv1_1 isProtocolSupported="True" title="TLSV1_1 Cipher Suites">
|
553
|
+
<errors/>
|
554
|
+
<rejectedCipherSuites>
|
555
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
556
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
557
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
558
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
559
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
560
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
561
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
562
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
563
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
564
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
565
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
566
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
567
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
568
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
569
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
570
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
571
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
572
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
573
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
574
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
575
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
576
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
577
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
578
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
579
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC3-SHA"/>
|
580
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
581
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
582
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
583
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
584
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
585
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
586
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
587
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
588
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
589
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
590
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
591
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
592
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
593
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
594
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
595
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
596
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
597
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
598
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
599
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
600
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
601
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
602
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
603
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
604
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
605
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
606
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
607
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
608
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
609
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
610
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
611
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
612
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
613
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
614
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
615
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
616
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
617
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
618
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
619
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
620
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
621
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
622
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
623
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
624
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
625
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
626
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
627
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
628
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
629
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
630
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
631
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
632
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
633
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
634
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
635
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
636
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
637
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
638
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
639
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
640
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
641
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
642
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
643
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
644
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
645
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
646
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
647
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
648
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
649
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
650
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
651
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
652
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
653
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
654
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
655
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
656
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
657
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
658
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
659
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
660
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
661
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
662
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
663
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
664
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
665
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
666
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
667
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
668
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
669
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
670
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
671
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
672
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
673
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
674
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
675
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
676
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
677
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
678
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
679
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
680
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
681
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
682
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
683
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
684
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
685
|
+
</rejectedCipherSuites>
|
686
|
+
<acceptedCipherSuites>
|
687
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA"/>
|
688
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA"/>
|
689
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
690
|
+
<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"/>
|
691
|
+
</cipherSuite>
|
692
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-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
|
+
</acceptedCipherSuites>
|
696
|
+
<preferredCipherSuite>
|
697
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-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
|
+
</preferredCipherSuite>
|
701
|
+
</tlsv1_1>
|
702
|
+
<tlsv1_2 isProtocolSupported="True" title="TLSV1_2 Cipher Suites">
|
703
|
+
<errors/>
|
704
|
+
<rejectedCipherSuites>
|
705
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-GCM-SHA256"/>
|
706
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
707
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA256"/>
|
708
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-GCM-SHA384"/>
|
709
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
710
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA256"/>
|
711
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
712
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
713
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
714
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
715
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
716
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
717
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
718
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
719
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
720
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
721
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
722
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
723
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
724
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
725
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC3-SHA"/>
|
726
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-GCM-SHA256"/>
|
727
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
728
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA256"/>
|
729
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-GCM-SHA384"/>
|
730
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
731
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA256"/>
|
732
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
733
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
734
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
735
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
736
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
737
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-GCM-SHA256"/>
|
738
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
739
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA256"/>
|
740
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-GCM-SHA384"/>
|
741
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
742
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA256"/>
|
743
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
744
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
745
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
746
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
747
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
748
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-GCM-SHA256"/>
|
749
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
750
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA256"/>
|
751
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-GCM-SHA384"/>
|
752
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
753
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA256"/>
|
754
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
755
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
756
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
757
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-GCM-SHA256"/>
|
758
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
759
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA256"/>
|
760
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-GCM-SHA384"/>
|
761
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
762
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA256"/>
|
763
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
764
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
765
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
766
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
767
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
768
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA256"/>
|
769
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
770
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
771
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA384"/>
|
772
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
773
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
774
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
775
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
776
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
777
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA256"/>
|
778
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
779
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
780
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA384"/>
|
781
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
782
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
783
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
784
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
785
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
786
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA256"/>
|
787
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
788
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
789
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA384"/>
|
790
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
791
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
792
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
793
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
794
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
795
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
796
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
797
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
798
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
799
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
800
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
801
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
802
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
803
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
804
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
805
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
806
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
807
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
808
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
809
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
810
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA256"/>
|
811
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
812
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
813
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
814
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
815
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
816
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
817
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
818
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
819
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
820
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
821
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
822
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
823
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
824
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
825
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
826
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
827
|
+
</rejectedCipherSuites>
|
828
|
+
<acceptedCipherSuites>
|
829
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-GCM-SHA256"/>
|
830
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA"/>
|
831
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA256"/>
|
832
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-GCM-SHA384"/>
|
833
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA"/>
|
834
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA256"/>
|
835
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-GCM-SHA256">
|
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 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
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 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA256">
|
842
|
+
<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"/>
|
843
|
+
</cipherSuite>
|
844
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-GCM-SHA384">
|
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 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
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 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA384">
|
851
|
+
<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"/>
|
852
|
+
</cipherSuite>
|
853
|
+
</acceptedCipherSuites>
|
854
|
+
<preferredCipherSuite>
|
855
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-GCM-SHA256">
|
856
|
+
<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"/>
|
857
|
+
</cipherSuite>
|
858
|
+
</preferredCipherSuite>
|
859
|
+
</tlsv1_2>
|
860
|
+
</target>
|
861
|
+
<target host="twitter.com" ip="199.59.148.82" port="443">
|
862
|
+
<certinfo argument="basic" title="Certificate Information">
|
863
|
+
<certificateChain>
|
864
|
+
<certificate position="leaf" sha1Fingerprint="add53f6680fe66e383cbac3e60922e3b4c412bed">
|
865
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
866
|
+
MIIFjTCCBHWgAwIBAgIQGshet67DUTzYDYU4Xs/SCDANBgkqhkiG9w0BAQsFADB3
|
867
|
+
MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAd
|
868
|
+
BgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxKDAmBgNVBAMTH1N5bWFudGVj
|
869
|
+
IENsYXNzIDMgRVYgU1NMIENBIC0gRzMwHhcNMTQwOTEwMDAwMDAwWhcNMTYwNTA5
|
870
|
+
MjM1OTU5WjCCARIxEzARBgsrBgEEAYI3PAIBAxMCVVMxGTAXBgsrBgEEAYI3PAIB
|
871
|
+
AgwIRGVsYXdhcmUxHTAbBgNVBA8TFFByaXZhdGUgT3JnYW5pemF0aW9uMRAwDgYD
|
872
|
+
VQQFEwc0MzM3NDQ2MQswCQYDVQQGEwJVUzETMBEGA1UEEQwKOTQxMDMtMTMwNzET
|
873
|
+
MBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEXMBUG
|
874
|
+
A1UECQwOMTM1NSBNYXJrZXQgU3QxFjAUBgNVBAoMDVR3aXR0ZXIsIEluYy4xGTAX
|
875
|
+
BgNVBAsMEFR3aXR0ZXIgU2VjdXJpdHkxFDASBgNVBAMMC3R3aXR0ZXIuY29tMIIB
|
876
|
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA46xZNAfcEfgcyrMPk0SKVDR2
|
877
|
+
kGrAIgC+lZraWDxsODGioh87ZOKd4PXCqweQW3z++YiMap1pO+AjZbcR1uiI1j5t
|
878
|
+
i+3K6lgL/k2/KpXKuyG7ztbiEAIRIWgm95J+nKOAsYLX5aaghkdCGsZbBNnDtbKb
|
879
|
+
ONShbTu92AXwUZu9lXd/6QKOYKN6ZSBSI9uNASckwgBmDRRms1IrzGtbpUQv4kBt
|
880
|
+
2iGhklpXEtNHAe/p36/GkYwhr3dlEzYcY3otBeZjxQvYOems8jv/ncWnRgpuGmYQ
|
881
|
+
HkrnuseJeR+u8fOEA8rnUIoZY788IBB4xfRTPH1eDa+WcImSuX+aGQz2eGqPcwID
|
882
|
+
AQABo4IBdjCCAXIwJwYDVR0RBCAwHoILdHdpdHRlci5jb22CD3d3dy50d2l0dGVy
|
883
|
+
LmNvbTAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEF
|
884
|
+
BQcDAQYIKwYBBQUHAwIwZgYDVR0gBF8wXTBbBgtghkgBhvhFAQcXBjBMMCMGCCsG
|
885
|
+
AQUFBwIBFhdodHRwczovL2Quc3ltY2IuY29tL2NwczAlBggrBgEFBQcCAjAZGhdo
|
886
|
+
dHRwczovL2Quc3ltY2IuY29tL3JwYTAfBgNVHSMEGDAWgBQBWavn3ToLWaZkY9bP
|
887
|
+
IAdX1ZHnajArBgNVHR8EJDAiMCCgHqAchhpodHRwOi8vc3Iuc3ltY2IuY29tL3Ny
|
888
|
+
LmNybDBXBggrBgEFBQcBAQRLMEkwHwYIKwYBBQUHMAGGE2h0dHA6Ly9zci5zeW1j
|
889
|
+
ZC5jb20wJgYIKwYBBQUHMAKGGmh0dHA6Ly9zci5zeW1jYi5jb20vc3IuY3J0MA0G
|
890
|
+
CSqGSIb3DQEBCwUAA4IBAQDRU2jp1iDQVnoQgLjpfgDJntU1SqLSoBaK4vvrloh3
|
891
|
+
wm419Kepqtw1e8Z9Xjz2yVug0ViufZbnVAJcaRtWkiatBizBWv9Z84qMlDINGkLR
|
892
|
+
brwcvajGCAEbcxeTKDCuzk1OLUu/Iq+aYTJ6qGglGTxt+2fMKT9b9dGvTL9no2DE
|
893
|
+
3bD7g1VttSypfTStsAjHLPDLTNgrefTp2n9uwN5VfNbWR8/EkO9PvuvJPQVxa17H
|
894
|
+
No1PDDxHg6URiCL4RuD4mxr+6aLfkIEQcfOXnLdpYHcg1oeF7lp30pLs2V0fMTs6
|
895
|
+
4ls10ZI220TUedlsAySHXcOGxhDi6mV8z7jvwjECVXIS
|
896
|
+
-----END CERTIFICATE-----</asPEM>
|
897
|
+
<subjectPublicKeyInfo>
|
898
|
+
<publicKey>
|
899
|
+
<modulus>00:e3:ac:59:34:07:dc:11:f8:1c:ca:b3:0f:93:44:8a:54:34:76:90:6a:c0:22:00:be:95:9a:da:58:3c:6c:38:31:a2:a2:1f:3b:64:e2:9d:e0:f5:c2:ab:07:90:5b:7c:fe:f9:88:8c:6a:9d:69:3b:e0:23:65:b7:11:d6:e8:88:d6:3e:6d:8b:ed:ca:ea:58:0b:fe:4d:bf:2a:95:ca:bb:21:bb:ce:d6:e2:10:02:11:21:68:26:f7:92:7e:9c:a3:80:b1:82:d7:e5:a6:a0:86:47:42:1a:c6:5b:04:d9:c3:b5:b2:9b:38:d4:a1:6d:3b:bd:d8:05:f0:51:9b:bd:95:77:7f:e9:02:8e:60:a3:7a:65:20:52:23:db:8d:01:27:24:c2:00:66:0d:14:66:b3:52:2b:cc:6b:5b:a5:44:2f:e2:40:6d:da:21:a1:92:5a:57:12:d3:47:01:ef:e9:df:af:c6:91:8c:21:af:77:65:13:36:1c:63:7a:2d:05:e6:63:c5:0b:d8:39:e9:ac:f2:3b:ff:9d:c5:a7:46:0a:6e:1a:66:10:1e:4a:e7:ba:c7:89:79:1f:ae:f1:f3:84:03:ca:e7:50:8a:19:63:bf:3c:20:10:78:c5:f4:53:3c:7d:5e:0d:af:96:70:89:92:b9:7f:9a:19:0c:f6:78:6a:8f:73</modulus>
|
900
|
+
<exponent>65537</exponent>
|
901
|
+
</publicKey>
|
902
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
903
|
+
<publicKeySize>2048</publicKeySize>
|
904
|
+
</subjectPublicKeyInfo>
|
905
|
+
<version>2</version>
|
906
|
+
<extensions>
|
907
|
+
<X509v3ExtendedKeyUsage>
|
908
|
+
<TLSWebClientAuthentication/>
|
909
|
+
<TLSWebServerAuthentication/>
|
910
|
+
</X509v3ExtendedKeyUsage>
|
911
|
+
<AuthorityInformationAccess>
|
912
|
+
<CAIssuers>
|
913
|
+
<URI>
|
914
|
+
<listEntry>http://sr.symcb.com/sr.crt</listEntry>
|
915
|
+
</URI>
|
916
|
+
</CAIssuers>
|
917
|
+
<OCSP>
|
918
|
+
<URI>
|
919
|
+
<listEntry>http://sr.symcd.com</listEntry>
|
920
|
+
</URI>
|
921
|
+
</OCSP>
|
922
|
+
</AuthorityInformationAccess>
|
923
|
+
<X509v3CRLDistributionPoints>
|
924
|
+
<FullName>
|
925
|
+
<listEntry/>
|
926
|
+
</FullName>
|
927
|
+
<URI>
|
928
|
+
<listEntry>http://sr.symcb.com/sr.crl</listEntry>
|
929
|
+
</URI>
|
930
|
+
</X509v3CRLDistributionPoints>
|
931
|
+
<X509v3BasicConstraints>CA:FALSE</X509v3BasicConstraints>
|
932
|
+
<X509v3KeyUsage>
|
933
|
+
<KeyEncipherment/>
|
934
|
+
<DigitalSignature/>
|
935
|
+
</X509v3KeyUsage>
|
936
|
+
<X509v3SubjectAlternativeName>
|
937
|
+
<DNS>
|
938
|
+
<listEntry>twitter.com</listEntry>
|
939
|
+
<listEntry>www.twitter.com</listEntry>
|
940
|
+
</DNS>
|
941
|
+
</X509v3SubjectAlternativeName>
|
942
|
+
<X509v3AuthorityKeyIdentifier>keyid:01:59:AB:E7:DD:3A:0B:59:A6:64:63:D6:CF:20:07:57:D5:91:E7:6A</X509v3AuthorityKeyIdentifier>
|
943
|
+
<X509v3CertificatePolicies>
|
944
|
+
<Policy>
|
945
|
+
<listEntry>2.16.840.1.113733.1.7.23.6</listEntry>
|
946
|
+
</Policy>
|
947
|
+
<ExplicitText>
|
948
|
+
<listEntry>https://d.symcb.com/rpa</listEntry>
|
949
|
+
</ExplicitText>
|
950
|
+
<CPS>
|
951
|
+
<listEntry>https://d.symcb.com/cps</listEntry>
|
952
|
+
</CPS>
|
953
|
+
<UserNotice>
|
954
|
+
<listEntry/>
|
955
|
+
</UserNotice>
|
956
|
+
</X509v3CertificatePolicies>
|
957
|
+
</extensions>
|
958
|
+
<signatureValue>d1:53:68:e9:d6:20:d0:56:7a:10:80:b8:e9:7e:00:c9:9e:d5:35:4a:a2:d2:a0:16:8a:e2:fb:eb:96:88:77:c2:6e:35:f4:a7:a9:aa:dc:35:7b:c6:7d:5e:3c:f6:c9:5b:a0:d1:58:ae:7d:96:e7:54:02:5c:69:1b:56:92:26:ad:06:2c:c1:5a:ff:59:f3:8a:8c:94:32:0d:1a:42:d1:6e:bc:1c:bd:a8:c6:08:01:1b:73:17:93:28:30:ae:ce:4d:4e:2d:4b:bf:22:af:9a:61:32:7a:a8:68:25:19:3c:6d:fb:67:cc:29:3f:5b:f5:d1:af:4c:bf:67:a3:60:c4:dd:b0:fb:83:55:6d:b5:2c:a9:7d:34:ad:b0:08:c7:2c:f0:cb:4c:d8:2b:79:f4:e9:da:7f:6e:c0:de:55:7c:d6:d6:47:cf:c4:90:ef:4f:be:eb:c9:3d:05:71:6b:5e:c7:36:8d:4f:0c:3c:47:83:a5:11:88:22:f8:46:e0:f8:9b:1a:fe:e9:a2:df:90:81:10:71:f3:97:9c:b7:69:60:77:20:d6:87:85:ee:5a:77:d2:92:ec:d9:5d:1f:31:3b:3a:e2:5b:35:d1:92:36:db:44:d4:79:d9:6c:03:24:87:5d:c3:86:c6:10:e2:ea:65:7c:cf:b8:ef:c2:31:02:55:72:12</signatureValue>
|
959
|
+
<signatureAlgorithm>sha256WithRSAEncryption</signatureAlgorithm>
|
960
|
+
<serialNumber>1AC85EB7AEC3513CD80D85385ECFD208</serialNumber>
|
961
|
+
<subject>
|
962
|
+
<serialNumber>4337446</serialNumber>
|
963
|
+
<organizationName>Twitter, Inc.</organizationName>
|
964
|
+
<businessCategory>Private Organization</businessCategory>
|
965
|
+
<jurisdictionCountryName>US</jurisdictionCountryName>
|
966
|
+
<jurisdictionStateOrProvinceName>Delaware</jurisdictionStateOrProvinceName>
|
967
|
+
<commonName>twitter.com</commonName>
|
968
|
+
<stateOrProvinceName>California</stateOrProvinceName>
|
969
|
+
<countryName>US</countryName>
|
970
|
+
<streetAddress>1355 Market St</streetAddress>
|
971
|
+
<organizationalUnitName>Twitter Security</organizationalUnitName>
|
972
|
+
<localityName>San Francisco</localityName>
|
973
|
+
<postalCode>94103-1307</postalCode>
|
974
|
+
</subject>
|
975
|
+
<validity>
|
976
|
+
<notAfter>May 9 23:59:59 2016 GMT</notAfter>
|
977
|
+
<notBefore>Sep 10 00:00:00 2014 GMT</notBefore>
|
978
|
+
</validity>
|
979
|
+
<issuer>
|
980
|
+
<countryName>US</countryName>
|
981
|
+
<commonName>Symantec Class 3 EV SSL CA - G3</commonName>
|
982
|
+
<organizationalUnitName>Symantec Trust Network</organizationalUnitName>
|
983
|
+
<organizationName>Symantec Corporation</organizationName>
|
984
|
+
</issuer>
|
985
|
+
</certificate>
|
986
|
+
<certificate position="intermediate" sha1Fingerprint="e3fc0ad84f2f5a83ed6f86f567f8b14b40dcbf12">
|
987
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
988
|
+
MIIFKzCCBBOgAwIBAgIQfuFKb2/v8tN/P61lTTratDANBgkqhkiG9w0BAQsFADCB
|
989
|
+
yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL
|
990
|
+
ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp
|
991
|
+
U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW
|
992
|
+
ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0
|
993
|
+
aG9yaXR5IC0gRzUwHhcNMTMxMDMxMDAwMDAwWhcNMjMxMDMwMjM1OTU5WjB3MQsw
|
994
|
+
CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV
|
995
|
+
BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxKDAmBgNVBAMTH1N5bWFudGVjIENs
|
996
|
+
YXNzIDMgRVYgU1NMIENBIC0gRzMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
|
997
|
+
AoIBAQDYoWV0I+grZOIy1zM3PY71NBZI3U9/hxz4RCMTjvsR2ERaGHGOYBYmkpv9
|
998
|
+
FwvhcXBC/r/6HMCqo6e1cej/GIP23xAKE2LIPZyn3i4/DNkd5y77Ks7Imn+Hv9hM
|
999
|
+
BBUyydHMlXGgTihPhNk1++OGb5RT5nKKY2cuvmn2926OnGAE6yn6xEdC0niY4+wL
|
1000
|
+
pZLct5q9gGQrOHw4CVtm9i2VeoayNC6FnpAOX7ddpFFyRnATv2fytqdNFB5suVPu
|
1001
|
+
IxpOjUhVQ0GxiXVqQCjFfd3SbtICGS97JJRL6/EaqZvjI5rq+jOrCiy39GAI3Z8c
|
1002
|
+
zd0tAWaAr7MvKR0juIrhoXAHDDQPAgMBAAGjggFdMIIBWTAvBggrBgEFBQcBAQQj
|
1003
|
+
MCEwHwYIKwYBBQUHMAGGE2h0dHA6Ly9zMi5zeW1jYi5jb20wEgYDVR0TAQH/BAgw
|
1004
|
+
BgEB/wIBADBlBgNVHSAEXjBcMFoGBFUdIAAwUjAmBggrBgEFBQcCARYaaHR0cDov
|
1005
|
+
L3d3dy5zeW1hdXRoLmNvbS9jcHMwKAYIKwYBBQUHAgIwHBoaaHR0cDovL3d3dy5z
|
1006
|
+
eW1hdXRoLmNvbS9ycGEwMAYDVR0fBCkwJzAloCOgIYYfaHR0cDovL3MxLnN5bWNi
|
1007
|
+
LmNvbS9wY2EzLWc1LmNybDAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0RBCIwIKQeMBwx
|
1008
|
+
GjAYBgNVBAMTEVN5bWFudGVjUEtJLTEtNTMzMB0GA1UdDgQWBBQBWavn3ToLWaZk
|
1009
|
+
Y9bPIAdX1ZHnajAfBgNVHSMEGDAWgBR/02Wnwt3su/AwCfNDOfoCrzMxMzANBgkq
|
1010
|
+
hkiG9w0BAQsFAAOCAQEAQgFVe9AWGl1Y6LubqE3X89frE5SG1n8hC0e8V5uSXU8F
|
1011
|
+
nzikEHzPg74GQ0aNCLxq1xCm+quvL2GoY/Jl339MiBKIT7Np2f8nwAqXkY9W+4nE
|
1012
|
+
qLuSLRtzsMarNvSWbCAI7woeZiRFT2cAQMgHVHQzO6atuyOfZu2iRHA0+w7qAf3P
|
1013
|
+
eHTfp61Vt19N9tY/4IbOJMdCqRMURDVLtt/JYKwMf9mTIUvunORJApjTYHtcvNUw
|
1014
|
+
LwfORELEC5n+5p/8sHiGUW3RLJ3GlvuFgrsEL/digO9i2n/2DqyQuFa9eT/ygG6j
|
1015
|
+
2bkPXToHHZGThkspTOHcteHgM52zyzaRS/6htO7w+Q==
|
1016
|
+
-----END CERTIFICATE-----</asPEM>
|
1017
|
+
<subjectPublicKeyInfo>
|
1018
|
+
<publicKey>
|
1019
|
+
<modulus>00:d8:a1:65:74:23:e8:2b:64:e2:32:d7:33:37:3d:8e:f5:34:16:48:dd:4f:7f:87:1c:f8:44:23:13:8e:fb:11:d8:44:5a:18:71:8e:60:16:26:92:9b:fd:17:0b:e1:71:70:42:fe:bf:fa:1c:c0:aa:a3:a7:b5:71:e8:ff:18:83:f6:df:10:0a:13:62:c8:3d:9c:a7:de:2e:3f:0c:d9:1d:e7:2e:fb:2a:ce:c8:9a:7f:87:bf:d8:4c:04:15:32:c9:d1:cc:95:71:a0:4e:28:4f:84:d9:35:fb:e3:86:6f:94:53:e6:72:8a:63:67:2e:be:69:f6:f7:6e:8e:9c:60:04:eb:29:fa:c4:47:42:d2:78:98:e3:ec:0b:a5:92:dc:b7:9a:bd:80:64:2b:38:7c:38:09:5b:66:f6:2d:95:7a:86:b2:34:2e:85:9e:90:0e:5f:b7:5d:a4:51:72:46:70:13:bf:67:f2:b6:a7:4d:14:1e:6c:b9:53:ee:23:1a:4e:8d:48:55:43:41:b1:89:75:6a:40:28:c5:7d:dd:d2:6e:d2:02:19:2f:7b:24:94:4b:eb:f1:1a:a9:9b:e3:23:9a:ea:fa:33:ab:0a:2c:b7:f4:60:08:dd:9f:1c:cd:dd:2d:01:66:80:af:b3:2f:29:1d:23:b8:8a:e1:a1:70:07:0c:34:0f</modulus>
|
1020
|
+
<exponent>65537</exponent>
|
1021
|
+
</publicKey>
|
1022
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
1023
|
+
<publicKeySize>2048</publicKeySize>
|
1024
|
+
</subjectPublicKeyInfo>
|
1025
|
+
<version>2</version>
|
1026
|
+
<extensions>
|
1027
|
+
<X509v3SubjectKeyIdentifier>01:59:AB:E7:DD:3A:0B:59:A6:64:63:D6:CF:20:07:57:D5:91:E7:6A</X509v3SubjectKeyIdentifier>
|
1028
|
+
<AuthorityInformationAccess>
|
1029
|
+
<OCSP>
|
1030
|
+
<URI>
|
1031
|
+
<listEntry>http://s2.symcb.com</listEntry>
|
1032
|
+
</URI>
|
1033
|
+
</OCSP>
|
1034
|
+
</AuthorityInformationAccess>
|
1035
|
+
<X509v3CRLDistributionPoints>
|
1036
|
+
<FullName>
|
1037
|
+
<listEntry/>
|
1038
|
+
</FullName>
|
1039
|
+
<URI>
|
1040
|
+
<listEntry>http://s1.symcb.com/pca3-g5.crl</listEntry>
|
1041
|
+
</URI>
|
1042
|
+
</X509v3CRLDistributionPoints>
|
1043
|
+
<X509v3BasicConstraints>CA:TRUE, pathlen:0</X509v3BasicConstraints>
|
1044
|
+
<X509v3KeyUsage>
|
1045
|
+
<CRLSign/>
|
1046
|
+
<CertificateSign/>
|
1047
|
+
</X509v3KeyUsage>
|
1048
|
+
<X509v3SubjectAlternativeName>
|
1049
|
+
<DirName>
|
1050
|
+
<listEntry>/CN=SymantecPKI-1-533</listEntry>
|
1051
|
+
</DirName>
|
1052
|
+
</X509v3SubjectAlternativeName>
|
1053
|
+
<X509v3AuthorityKeyIdentifier>keyid:7F:D3:65:A7:C2:DD:EC:BB:F0:30:09:F3:43:39:FA:02:AF:33:31:33</X509v3AuthorityKeyIdentifier>
|
1054
|
+
<X509v3CertificatePolicies>
|
1055
|
+
<Policy>
|
1056
|
+
<listEntry>X509v3 Any Policy</listEntry>
|
1057
|
+
</Policy>
|
1058
|
+
<ExplicitText>
|
1059
|
+
<listEntry>http://www.symauth.com/rpa</listEntry>
|
1060
|
+
</ExplicitText>
|
1061
|
+
<CPS>
|
1062
|
+
<listEntry>http://www.symauth.com/cps</listEntry>
|
1063
|
+
</CPS>
|
1064
|
+
<UserNotice>
|
1065
|
+
<listEntry/>
|
1066
|
+
</UserNotice>
|
1067
|
+
</X509v3CertificatePolicies>
|
1068
|
+
</extensions>
|
1069
|
+
<signatureValue>42:01:55:7b:d0:16:1a:5d:58:e8:bb:9b:a8:4d:d7:f3:d7:eb:13:94:86:d6:7f:21:0b:47:bc:57:9b:92:5d:4f:05:9f:38:a4:10:7c:cf:83:be:06:43:46:8d:08:bc:6a:d7:10:a6:fa:ab:af:2f:61:a8:63:f2:65:df:7f:4c:88:12:88:4f:b3:69:d9:ff:27:c0:0a:97:91:8f:56:fb:89:c4:a8:bb:92:2d:1b:73:b0:c6:ab:36:f4:96:6c:20:08:ef:0a:1e:66:24:45:4f:67:00:40:c8:07:54:74:33:3b:a6:ad:bb:23:9f:66:ed:a2:44:70:34:fb:0e:ea:01:fd:cf:78:74:df:a7:ad:55:b7:5f:4d:f6:d6:3f:e0:86:ce:24:c7:42:a9:13:14:44:35:4b:b6:df:c9:60:ac:0c:7f:d9:93:21:4b:ee:9c:e4:49:02:98:d3:60:7b:5c:bc:d5:30:2f:07:ce:44:42:c4:0b:99:fe:e6:9f:fc:b0:78:86:51:6d:d1:2c:9d:c6:96:fb:85:82:bb:04:2f:f7:62:80:ef:62:da:7f:f6:0e:ac:90:b8:56:bd:79:3f:f2:80:6e:a3:d9:b9:0f:5d:3a:07:1d:91:93:86:4b:29:4c:e1:dc:b5:e1:e0:33:9d:b3:cb:36:91:4b:fe:a1:b4:ee:f0:f9</signatureValue>
|
1070
|
+
<signatureAlgorithm>sha256WithRSAEncryption</signatureAlgorithm>
|
1071
|
+
<serialNumber>7EE14A6F6FEFF2D37F3FAD654D3ADAB4</serialNumber>
|
1072
|
+
<subject>
|
1073
|
+
<countryName>US</countryName>
|
1074
|
+
<commonName>Symantec Class 3 EV SSL CA - G3</commonName>
|
1075
|
+
<organizationalUnitName>Symantec Trust Network</organizationalUnitName>
|
1076
|
+
<organizationName>Symantec Corporation</organizationName>
|
1077
|
+
</subject>
|
1078
|
+
<validity>
|
1079
|
+
<notAfter>Oct 30 23:59:59 2023 GMT</notAfter>
|
1080
|
+
<notBefore>Oct 31 00:00:00 2013 GMT</notBefore>
|
1081
|
+
</validity>
|
1082
|
+
<issuer>
|
1083
|
+
<countryName>US</countryName>
|
1084
|
+
<commonName>VeriSign Class 3 Public Primary Certification Authority - G5</commonName>
|
1085
|
+
<organizationalUnitName>(c) 2006 VeriSign, Inc. - For authorized use only</organizationalUnitName>
|
1086
|
+
<organizationName>VeriSign, Inc.</organizationName>
|
1087
|
+
</issuer>
|
1088
|
+
</certificate>
|
1089
|
+
</certificateChain>
|
1090
|
+
<certificateValidation>
|
1091
|
+
<hostnameValidation certificateMatchesServerHostname="True" serverHostname="twitter.com"/>
|
1092
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Google" validationResult="ok"/>
|
1093
|
+
<pathValidation trustStoreVersion="Update 65" usingTrustStore="Java 6" validationResult="ok"/>
|
1094
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Microsoft" validationResult="ok"/>
|
1095
|
+
<pathValidation trustStoreVersion="OS X 10.10.5" usingTrustStore="Apple" validationResult="ok"/>
|
1096
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Mozilla NSS" validationResult="ok"/>
|
1097
|
+
</certificateValidation>
|
1098
|
+
<ocspStapling isSupported="False"/>
|
1099
|
+
</certinfo>
|
1100
|
+
<compression title="Deflate Compression">
|
1101
|
+
<compressionMethod isSupported="False" type="DEFLATE"/>
|
1102
|
+
</compression>
|
1103
|
+
<heartbleed title="OpenSSL Heartbleed">
|
1104
|
+
<openSslHeartbleed isVulnerable="False"/>
|
1105
|
+
</heartbleed>
|
1106
|
+
<reneg title="Session Renegotiation">
|
1107
|
+
<sessionRenegotiation canBeClientInitiated="True" isSecure="True"/>
|
1108
|
+
</reneg>
|
1109
|
+
<resum title="Session Resumption">
|
1110
|
+
<sessionResumptionWithSessionIDs errors="0" failedAttempts="5" isSupported="False" successfulAttempts="0" totalAttempts="5"/>
|
1111
|
+
<sessionResumptionWithTLSTickets isSupported="True"/>
|
1112
|
+
</resum>
|
1113
|
+
<sslv2 isProtocolSupported="False" title="SSLV2 Cipher Suites">
|
1114
|
+
<errors/>
|
1115
|
+
<rejectedCipherSuites>
|
1116
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="DES-CBC-MD5"/>
|
1117
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="DES-CBC3-MD5"/>
|
1118
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="EXP-RC2-CBC-MD5"/>
|
1119
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="EXP-RC4-MD5"/>
|
1120
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="IDEA-CBC-MD5"/>
|
1121
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="RC2-CBC-MD5"/>
|
1122
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="RC4-MD5"/>
|
1123
|
+
</rejectedCipherSuites>
|
1124
|
+
<acceptedCipherSuites/>
|
1125
|
+
<preferredCipherSuite/>
|
1126
|
+
</sslv2>
|
1127
|
+
<sslv3 isProtocolSupported="False" title="SSLV3 Cipher Suites">
|
1128
|
+
<errors/>
|
1129
|
+
<rejectedCipherSuites>
|
1130
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
1131
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
1132
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
1133
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
1134
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
1135
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
1136
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
1137
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
1138
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
1139
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
1140
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
1141
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
1142
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
1143
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
1144
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
1145
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
1146
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
1147
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
1148
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES128-SHA"/>
|
1149
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
1150
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
1151
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES256-SHA"/>
|
1152
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
1153
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
1154
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
1155
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
1156
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC3-SHA"/>
|
1157
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
1158
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
1159
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
1160
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
1161
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
1162
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
1163
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
1164
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
1165
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
1166
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
1167
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
1168
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
1169
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
1170
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
1171
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
1172
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
1173
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
1174
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
1175
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
1176
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
1177
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
1178
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
1179
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
1180
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
1181
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
1182
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
1183
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
1184
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
1185
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
1186
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
1187
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
1188
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
1189
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
1190
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
1191
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
1192
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
1193
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
1194
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
1195
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
1196
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
1197
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
1198
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
1199
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
1200
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
1201
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
1202
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
1203
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
1204
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
1205
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
1206
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
1207
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
1208
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
1209
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
1210
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
1211
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
1212
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
1213
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
1214
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
1215
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
1216
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
1217
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
1218
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
1219
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
1220
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
1221
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
1222
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
1223
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
1224
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
1225
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-AES128-SHA"/>
|
1226
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
1227
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
1228
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-AES256-SHA"/>
|
1229
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
1230
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
1231
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
1232
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
1233
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
1234
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
1235
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
1236
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
1237
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
1238
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
1239
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
1240
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
1241
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
1242
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
1243
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
1244
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
1245
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
1246
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
1247
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
1248
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
1249
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
1250
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
1251
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
1252
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
1253
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
1254
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
1255
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
1256
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
1257
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
1258
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
1259
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
1260
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
1261
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
1262
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
1263
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
1264
|
+
</rejectedCipherSuites>
|
1265
|
+
<acceptedCipherSuites/>
|
1266
|
+
<preferredCipherSuite/>
|
1267
|
+
</sslv3>
|
1268
|
+
<tlsv1 isProtocolSupported="True" title="TLSV1 Cipher Suites">
|
1269
|
+
<errors/>
|
1270
|
+
<rejectedCipherSuites>
|
1271
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
1272
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
1273
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
1274
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
1275
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
1276
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
1277
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
1278
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
1279
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
1280
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
1281
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
1282
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
1283
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
1284
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
1285
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
1286
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
1287
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
1288
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
1289
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
1290
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
1291
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
1292
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
1293
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
1294
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
1295
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
1296
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
1297
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
1298
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
1299
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
1300
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
1301
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
1302
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
1303
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
1304
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
1305
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
1306
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
1307
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
1308
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
1309
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
1310
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
1311
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
1312
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
1313
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
1314
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
1315
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
1316
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
1317
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
1318
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
1319
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
1320
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
1321
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
1322
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
1323
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
1324
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
1325
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
1326
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
1327
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
1328
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
1329
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
1330
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
1331
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
1332
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
1333
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
1334
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
1335
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
1336
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
1337
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
1338
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
1339
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
1340
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
1341
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
1342
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
1343
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
1344
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
1345
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
1346
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
1347
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
1348
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
1349
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
1350
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
1351
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
1352
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
1353
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
1354
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
1355
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
1356
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
1357
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
1358
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
1359
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
1360
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
1361
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
1362
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
1363
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
1364
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
1365
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
1366
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
1367
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
1368
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
1369
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
1370
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
1371
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
1372
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
1373
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
1374
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
1375
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
1376
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
1377
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
1378
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
1379
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
1380
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
1381
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
1382
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
1383
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
1384
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
1385
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
1386
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
1387
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
1388
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
1389
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
1390
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
1391
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
1392
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
1393
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
1394
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
1395
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
1396
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
1397
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
1398
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
1399
|
+
</rejectedCipherSuites>
|
1400
|
+
<acceptedCipherSuites>
|
1401
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA"/>
|
1402
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA"/>
|
1403
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="DES-CBC3-SHA"/>
|
1404
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
1405
|
+
<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"/>
|
1406
|
+
</cipherSuite>
|
1407
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
1408
|
+
<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"/>
|
1409
|
+
</cipherSuite>
|
1410
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="ECDHE-RSA-DES-CBC3-SHA">
|
1411
|
+
<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"/>
|
1412
|
+
</cipherSuite>
|
1413
|
+
</acceptedCipherSuites>
|
1414
|
+
<preferredCipherSuite>
|
1415
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
1416
|
+
<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"/>
|
1417
|
+
</cipherSuite>
|
1418
|
+
</preferredCipherSuite>
|
1419
|
+
</tlsv1>
|
1420
|
+
<tlsv1_1 isProtocolSupported="True" title="TLSV1_1 Cipher Suites">
|
1421
|
+
<errors/>
|
1422
|
+
<rejectedCipherSuites>
|
1423
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
1424
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
1425
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
1426
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
1427
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
1428
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
1429
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
1430
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
1431
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
1432
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
1433
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
1434
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
1435
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
1436
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
1437
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
1438
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
1439
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
1440
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
1441
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
1442
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
1443
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
1444
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
1445
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
1446
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
1447
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
1448
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
1449
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
1450
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
1451
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
1452
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
1453
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
1454
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
1455
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
1456
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
1457
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
1458
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
1459
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
1460
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
1461
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
1462
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
1463
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
1464
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
1465
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
1466
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
1467
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
1468
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
1469
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
1470
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
1471
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
1472
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
1473
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
1474
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
1475
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
1476
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
1477
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
1478
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
1479
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
1480
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
1481
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
1482
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
1483
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
1484
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
1485
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
1486
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
1487
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
1488
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
1489
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
1490
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
1491
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
1492
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
1493
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
1494
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
1495
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
1496
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
1497
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
1498
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
1499
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
1500
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
1501
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
1502
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
1503
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
1504
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
1505
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
1506
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
1507
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
1508
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
1509
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
1510
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
1511
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
1512
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
1513
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
1514
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
1515
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
1516
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
1517
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
1518
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
1519
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
1520
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
1521
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
1522
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
1523
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
1524
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
1525
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
1526
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
1527
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
1528
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
1529
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
1530
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
1531
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
1532
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
1533
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
1534
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
1535
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
1536
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
1537
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
1538
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
1539
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
1540
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
1541
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
1542
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
1543
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
1544
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
1545
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
1546
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
1547
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
1548
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
1549
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
1550
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
1551
|
+
</rejectedCipherSuites>
|
1552
|
+
<acceptedCipherSuites>
|
1553
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA"/>
|
1554
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA"/>
|
1555
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="DES-CBC3-SHA"/>
|
1556
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
1557
|
+
<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"/>
|
1558
|
+
</cipherSuite>
|
1559
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
1560
|
+
<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"/>
|
1561
|
+
</cipherSuite>
|
1562
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="ECDHE-RSA-DES-CBC3-SHA">
|
1563
|
+
<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"/>
|
1564
|
+
</cipherSuite>
|
1565
|
+
</acceptedCipherSuites>
|
1566
|
+
<preferredCipherSuite>
|
1567
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
1568
|
+
<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"/>
|
1569
|
+
</cipherSuite>
|
1570
|
+
</preferredCipherSuite>
|
1571
|
+
</tlsv1_1>
|
1572
|
+
<tlsv1_2 isProtocolSupported="True" title="TLSV1_2 Cipher Suites">
|
1573
|
+
<errors/>
|
1574
|
+
<rejectedCipherSuites>
|
1575
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-GCM-SHA256"/>
|
1576
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
1577
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA256"/>
|
1578
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-GCM-SHA384"/>
|
1579
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
1580
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA256"/>
|
1581
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
1582
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
1583
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
1584
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
1585
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
1586
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
1587
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
1588
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
1589
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
1590
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
1591
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
1592
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
1593
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
1594
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
1595
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-GCM-SHA256"/>
|
1596
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
1597
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA256"/>
|
1598
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-GCM-SHA384"/>
|
1599
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
1600
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA256"/>
|
1601
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
1602
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
1603
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
1604
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
1605
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
1606
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-GCM-SHA256"/>
|
1607
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
1608
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA256"/>
|
1609
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-GCM-SHA384"/>
|
1610
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
1611
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA256"/>
|
1612
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
1613
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
1614
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
1615
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
1616
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
1617
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-GCM-SHA256"/>
|
1618
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
1619
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA256"/>
|
1620
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-GCM-SHA384"/>
|
1621
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
1622
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA256"/>
|
1623
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
1624
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
1625
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
1626
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-GCM-SHA256"/>
|
1627
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
1628
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA256"/>
|
1629
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-GCM-SHA384"/>
|
1630
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
1631
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA256"/>
|
1632
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
1633
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
1634
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
1635
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
1636
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
1637
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA256"/>
|
1638
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
1639
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
1640
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA384"/>
|
1641
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
1642
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
1643
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
1644
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
1645
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
1646
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA256"/>
|
1647
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
1648
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
1649
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA384"/>
|
1650
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
1651
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
1652
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
1653
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
1654
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
1655
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA256"/>
|
1656
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
1657
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
1658
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA384"/>
|
1659
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
1660
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
1661
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
1662
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
1663
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
1664
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
1665
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
1666
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
1667
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
1668
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
1669
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
1670
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
1671
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
1672
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
1673
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
1674
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
1675
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
1676
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
1677
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
1678
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA256"/>
|
1679
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
1680
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
1681
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
1682
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
1683
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
1684
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
1685
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
1686
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
1687
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
1688
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
1689
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
1690
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
1691
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
1692
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
1693
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
1694
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
1695
|
+
</rejectedCipherSuites>
|
1696
|
+
<acceptedCipherSuites>
|
1697
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-GCM-SHA256"/>
|
1698
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA"/>
|
1699
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="AES128-SHA256"/>
|
1700
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-GCM-SHA384"/>
|
1701
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA"/>
|
1702
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="AES256-SHA256"/>
|
1703
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="DES-CBC3-SHA"/>
|
1704
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-GCM-SHA256">
|
1705
|
+
<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"/>
|
1706
|
+
</cipherSuite>
|
1707
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
1708
|
+
<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"/>
|
1709
|
+
</cipherSuite>
|
1710
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-SHA256">
|
1711
|
+
<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"/>
|
1712
|
+
</cipherSuite>
|
1713
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-GCM-SHA384">
|
1714
|
+
<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"/>
|
1715
|
+
</cipherSuite>
|
1716
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
1717
|
+
<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"/>
|
1718
|
+
</cipherSuite>
|
1719
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="256" name="ECDHE-RSA-AES256-SHA384">
|
1720
|
+
<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"/>
|
1721
|
+
</cipherSuite>
|
1722
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="112" name="ECDHE-RSA-DES-CBC3-SHA">
|
1723
|
+
<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"/>
|
1724
|
+
</cipherSuite>
|
1725
|
+
</acceptedCipherSuites>
|
1726
|
+
<preferredCipherSuite>
|
1727
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 200 OK" keySize="128" name="ECDHE-RSA-AES128-GCM-SHA256">
|
1728
|
+
<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"/>
|
1729
|
+
</cipherSuite>
|
1730
|
+
</preferredCipherSuite>
|
1731
|
+
</tlsv1_2>
|
1732
|
+
</target>
|
1733
|
+
<target host="yahoo.com" ip="98.138.253.109" port="443">
|
1734
|
+
<certinfo argument="basic" title="Certificate Information">
|
1735
|
+
<certificateChain>
|
1736
|
+
<certificate position="leaf" sha1Fingerprint="166dbc7612ed72a7b667871039e44c1b766a4ef6">
|
1737
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
1738
|
+
MIIJEzCCB/ugAwIBAgIQGG12YV2ry8nJ6efhW4T1TzANBgkqhkiG9w0BAQsFADB+
|
1739
|
+
MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAd
|
1740
|
+
BgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxLzAtBgNVBAMTJlN5bWFudGVj
|
1741
|
+
IENsYXNzIDMgU2VjdXJlIFNlcnZlciBDQSAtIEc0MB4XDTE1MDgyNTAwMDAwMFoX
|
1742
|
+
DTE2MDgyNDIzNTk1OVowgYAxCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9y
|
1743
|
+
bmlhMRIwEAYDVQQHDAlTdW5ueXZhbGUxEzARBgNVBAoMCllhaG9vIEluYy4xHzAd
|
1744
|
+
BgNVBAsMFkluZm9ybWF0aW9uIFRlY2hub2xvZ3kxEjAQBgNVBAMMCXlhaG9vLmNv
|
1745
|
+
bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2YK3Ke5cs6saZWtPMw
|
1746
|
+
ojBCGz4E0LKOU2R85OYxLWwrxsV2Sdy3E5/hn9Hb4l9gky+lQ7XJuYbKgnzuux5K
|
1747
|
+
Z2Js73QQRXZK6oiFE48rK3wAtctg5BDrrh0mpM1e13CWRLZxOE96NqG70/2Wr4Bs
|
1748
|
+
A+YjhQJz7oABVjacUR8SqfP9w1hri14d51GlrzEyeAKgEPtDgNNkwdy8yrRQPxtV
|
1749
|
+
EqnDAPeF/hlwHIbTgqnzEkpYbDx4pmK2HnwuMoJb29vzqzJV5L4+XlrOQcdiK2XF
|
1750
|
+
HV/61P8sshJngapsBYpz9iiD3vluGjfwjqN/aiW2NdNT5gZQOUwbJoYS0uqbvHWC
|
1751
|
+
oS0CAwEAAaOCBYgwggWEMIIEPAYDVR0RBIIEMzCCBC+CCXlhaG9vLmNvbYINd3d3
|
1752
|
+
LnlhaG9vLmNvbYIOaHNyZC55YWhvby5jb22CDHVzLnlhaG9vLmNvbYIMZnIueWFo
|
1753
|
+
b28uY29tggx1ay55YWhvby5jb22CDHphLnlhaG9vLmNvbYIMaWUueWFob28uY29t
|
1754
|
+
ggxpdC55YWhvby5jb22CDGVzLnlhaG9vLmNvbYIMZGUueWFob28uY29tggxjYS55
|
1755
|
+
YWhvby5jb22CDHFjLnlhaG9vLmNvbYIMYnIueWFob28uY29tggxyby55YWhvby5j
|
1756
|
+
b22CDHNlLnlhaG9vLmNvbYIMYmUueWFob28uY29tgg9mci1iZS55YWhvby5jb22C
|
1757
|
+
DGFyLnlhaG9vLmNvbYIMbXgueWFob28uY29tggxjbC55YWhvby5jb22CDGNvLnlh
|
1758
|
+
aG9vLmNvbYIMdmUueWFob28uY29tghFlc3Bhbm9sLnlhaG9vLmNvbYIMcGUueWFo
|
1759
|
+
b28uY29tggxpbi55YWhvby5jb22CDHNnLnlhaG9vLmNvbYIMaWQueWFob28uY29t
|
1760
|
+
ghJtYWxheXNpYS55YWhvby5jb22CDHBoLnlhaG9vLmNvbYIMdm4ueWFob28uY29t
|
1761
|
+
ghFtYWt0b29iLnlhaG9vLmNvbYIUZW4tbWFrdG9vYi55YWhvby5jb22CD2NhLm15
|
1762
|
+
LnlhaG9vLmNvbYIMZ3IueWFob28uY29tgg1hdHQueWFob28uY29tggxhdS55YWhv
|
1763
|
+
by5jb22CDG56LnlhaG9vLmNvbYIMdHcueWFob28uY29tggxoay55YWhvby5jb22C
|
1764
|
+
DWJyYi55YWhvby5jb22CDG15LnlhaG9vLmNvbYIQYWRkLm15LnlhaG9vLmNvbYIS
|
1765
|
+
ZnJvbnRpZXIueWFob28uY29tghF2ZXJpem9uLnlhaG9vLmNvbYITY2Eucm9nZXJz
|
1766
|
+
LnlhaG9vLmNvbYIWZnItY2Eucm9nZXJzLnlhaG9vLmNvbYIUdGF0YWRvY29tby55
|
1767
|
+
YWhvby5jb22CEHRpa29uYS55YWhvby5jb22CF2lkZWFuZXRzZXR0ZXIueWFob28u
|
1768
|
+
Y29tghJtdHNpbmRpYS55YWhvby5jb22CE3NtYXJ0ZnJlbi55YWhvby5jb22CDyou
|
1769
|
+
YXR0LnlhaG9vLmNvbYISKi5wZW9wbGUueWFob28uY29tghUqLmNlbGVicml0eS55
|
1770
|
+
YWhvby5jb22CFyoudmlkYS1lc3RpbG8ueWFob28uY29tghEqLnN0eWxlLnlhaG9v
|
1771
|
+
LmNvbYISKi5tb3ZpZXMueWFob28uY29tghEqLnN0YXJzLnlhaG9vLmNvbYIQKi5r
|
1772
|
+
aW5vLnlhaG9vLmNvbYIQKi5jaW5lLnlhaG9vLmNvbYISKi5jaW5lbWEueWFob28u
|
1773
|
+
Y29tghgqLmNlbGVicmlkYWRlcy55YWhvby5jb22CECoubGl2ZS55YWhvby5jb20w
|
1774
|
+
CQYDVR0TBAIwADAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEG
|
1775
|
+
CCsGAQUFBwMCMGEGA1UdIARaMFgwVgYGZ4EMAQICMEwwIwYIKwYBBQUHAgEWF2h0
|
1776
|
+
dHBzOi8vZC5zeW1jYi5jb20vY3BzMCUGCCsGAQUFBwICMBkaF2h0dHBzOi8vZC5z
|
1777
|
+
eW1jYi5jb20vcnBhMB8GA1UdIwQYMBaAFF9gz2GQVd+EQxSKYCqy9Xr0QxjvMCsG
|
1778
|
+
A1UdHwQkMCIwIKAeoByGGmh0dHA6Ly9zcy5zeW1jYi5jb20vc3MuY3JsMFcGCCsG
|
1779
|
+
AQUFBwEBBEswSTAfBggrBgEFBQcwAYYTaHR0cDovL3NzLnN5bWNkLmNvbTAmBggr
|
1780
|
+
BgEFBQcwAoYaaHR0cDovL3NzLnN5bWNiLmNvbS9zcy5jcnQwDQYJKoZIhvcNAQEL
|
1781
|
+
BQADggEBAJ02Uxw8kQ4k1cpcViP2lxmDs7Q47qSU+JoqLXSo+i3qw+/kMweLp1p+
|
1782
|
+
kvV0dM0WLfKdVUL2cKprVSAjoXxQNualXym5mjxm1y+WSqr69hChA2ul1C2WPKG9
|
1783
|
+
8tFGM10iftCy+TaczoxVnTTfNXoEznk5adb6zB19yNEM1yrCFD2vK7mj7nvikmby
|
1784
|
+
uPhp5zOJ4Sn0Zsl/7ldgIyHXsgAVfqPTqPlje4nnxGwCVlEYzrrjRdvhdp/tCd2T
|
1785
|
+
LqvlM3Y3cabcQp7MbbIb8eT8Hq6APRObGan9bG5xPMb8Vt+6FI8QANDXrSRM3FO+
|
1786
|
+
OF5cDCuppd/+1x5EuUKJ9F2FRw7R6L4=
|
1787
|
+
-----END CERTIFICATE-----</asPEM>
|
1788
|
+
<subjectPublicKeyInfo>
|
1789
|
+
<publicKey>
|
1790
|
+
<modulus>00:dd:98:2b:72:9e:e5:cb:3a:b1:a6:56:b4:f3:30:a2:30:42:1b:3e:04:d0:b2:8e:53:64:7c:e4:e6:31:2d:6c:2b:c6:c5:76:49:dc:b7:13:9f:e1:9f:d1:db:e2:5f:60:93:2f:a5:43:b5:c9:b9:86:ca:82:7c:ee:bb:1e:4a:67:62:6c:ef:74:10:45:76:4a:ea:88:85:13:8f:2b:2b:7c:00:b5:cb:60:e4:10:eb:ae:1d:26:a4:cd:5e:d7:70:96:44:b6:71:38:4f:7a:36:a1:bb:d3:fd:96:af:80:6c:03:e6:23:85:02:73:ee:80:01:56:36:9c:51:1f:12:a9:f3:fd:c3:58:6b:8b:5e:1d:e7:51:a5:af:31:32:78:02:a0:10:fb:43:80:d3:64:c1:dc:bc:ca:b4:50:3f:1b:55:12:a9:c3:00:f7:85:fe:19:70:1c:86:d3:82:a9:f3:12:4a:58:6c:3c:78:a6:62:b6:1e:7c:2e:32:82:5b:db:db:f3:ab:32:55:e4:be:3e:5e:5a:ce:41:c7:62:2b:65:c5:1d:5f:fa:d4:ff:2c:b2:12:67:81:aa:6c:05:8a:73:f6:28:83:de:f9:6e:1a:37:f0:8e:a3:7f:6a:25:b6:35:d3:53:e6:06:50:39:4c:1b:26:86:12:d2:ea:9b:bc:75:82:a1:2d</modulus>
|
1791
|
+
<exponent>65537</exponent>
|
1792
|
+
</publicKey>
|
1793
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
1794
|
+
<publicKeySize>2048</publicKeySize>
|
1795
|
+
</subjectPublicKeyInfo>
|
1796
|
+
<version>2</version>
|
1797
|
+
<extensions>
|
1798
|
+
<X509v3ExtendedKeyUsage>
|
1799
|
+
<TLSWebClientAuthentication/>
|
1800
|
+
<TLSWebServerAuthentication/>
|
1801
|
+
</X509v3ExtendedKeyUsage>
|
1802
|
+
<AuthorityInformationAccess>
|
1803
|
+
<CAIssuers>
|
1804
|
+
<URI>
|
1805
|
+
<listEntry>http://ss.symcb.com/ss.crt</listEntry>
|
1806
|
+
</URI>
|
1807
|
+
</CAIssuers>
|
1808
|
+
<OCSP>
|
1809
|
+
<URI>
|
1810
|
+
<listEntry>http://ss.symcd.com</listEntry>
|
1811
|
+
</URI>
|
1812
|
+
</OCSP>
|
1813
|
+
</AuthorityInformationAccess>
|
1814
|
+
<X509v3CRLDistributionPoints>
|
1815
|
+
<FullName>
|
1816
|
+
<listEntry/>
|
1817
|
+
</FullName>
|
1818
|
+
<URI>
|
1819
|
+
<listEntry>http://ss.symcb.com/ss.crl</listEntry>
|
1820
|
+
</URI>
|
1821
|
+
</X509v3CRLDistributionPoints>
|
1822
|
+
<X509v3BasicConstraints>CA:FALSE</X509v3BasicConstraints>
|
1823
|
+
<X509v3KeyUsage>
|
1824
|
+
<KeyEncipherment/>
|
1825
|
+
<DigitalSignature/>
|
1826
|
+
</X509v3KeyUsage>
|
1827
|
+
<X509v3SubjectAlternativeName>
|
1828
|
+
<DNS>
|
1829
|
+
<listEntry>yahoo.com</listEntry>
|
1830
|
+
<listEntry>www.yahoo.com</listEntry>
|
1831
|
+
<listEntry>hsrd.yahoo.com</listEntry>
|
1832
|
+
<listEntry>us.yahoo.com</listEntry>
|
1833
|
+
<listEntry>fr.yahoo.com</listEntry>
|
1834
|
+
<listEntry>uk.yahoo.com</listEntry>
|
1835
|
+
<listEntry>za.yahoo.com</listEntry>
|
1836
|
+
<listEntry>ie.yahoo.com</listEntry>
|
1837
|
+
<listEntry>it.yahoo.com</listEntry>
|
1838
|
+
<listEntry>es.yahoo.com</listEntry>
|
1839
|
+
<listEntry>de.yahoo.com</listEntry>
|
1840
|
+
<listEntry>ca.yahoo.com</listEntry>
|
1841
|
+
<listEntry>qc.yahoo.com</listEntry>
|
1842
|
+
<listEntry>br.yahoo.com</listEntry>
|
1843
|
+
<listEntry>ro.yahoo.com</listEntry>
|
1844
|
+
<listEntry>se.yahoo.com</listEntry>
|
1845
|
+
<listEntry>be.yahoo.com</listEntry>
|
1846
|
+
<listEntry>fr-be.yahoo.com</listEntry>
|
1847
|
+
<listEntry>ar.yahoo.com</listEntry>
|
1848
|
+
<listEntry>mx.yahoo.com</listEntry>
|
1849
|
+
<listEntry>cl.yahoo.com</listEntry>
|
1850
|
+
<listEntry>co.yahoo.com</listEntry>
|
1851
|
+
<listEntry>ve.yahoo.com</listEntry>
|
1852
|
+
<listEntry>espanol.yahoo.com</listEntry>
|
1853
|
+
<listEntry>pe.yahoo.com</listEntry>
|
1854
|
+
<listEntry>in.yahoo.com</listEntry>
|
1855
|
+
<listEntry>sg.yahoo.com</listEntry>
|
1856
|
+
<listEntry>id.yahoo.com</listEntry>
|
1857
|
+
<listEntry>malaysia.yahoo.com</listEntry>
|
1858
|
+
<listEntry>ph.yahoo.com</listEntry>
|
1859
|
+
<listEntry>vn.yahoo.com</listEntry>
|
1860
|
+
<listEntry>maktoob.yahoo.com</listEntry>
|
1861
|
+
<listEntry>en-maktoob.yahoo.com</listEntry>
|
1862
|
+
<listEntry>ca.my.yahoo.com</listEntry>
|
1863
|
+
<listEntry>gr.yahoo.com</listEntry>
|
1864
|
+
<listEntry>att.yahoo.com</listEntry>
|
1865
|
+
<listEntry>au.yahoo.com</listEntry>
|
1866
|
+
<listEntry>nz.yahoo.com</listEntry>
|
1867
|
+
<listEntry>tw.yahoo.com</listEntry>
|
1868
|
+
<listEntry>hk.yahoo.com</listEntry>
|
1869
|
+
<listEntry>brb.yahoo.com</listEntry>
|
1870
|
+
<listEntry>my.yahoo.com</listEntry>
|
1871
|
+
<listEntry>add.my.yahoo.com</listEntry>
|
1872
|
+
<listEntry>frontier.yahoo.com</listEntry>
|
1873
|
+
<listEntry>verizon.yahoo.com</listEntry>
|
1874
|
+
<listEntry>ca.rogers.yahoo.com</listEntry>
|
1875
|
+
<listEntry>fr-ca.rogers.yahoo.com</listEntry>
|
1876
|
+
<listEntry>tatadocomo.yahoo.com</listEntry>
|
1877
|
+
<listEntry>tikona.yahoo.com</listEntry>
|
1878
|
+
<listEntry>ideanetsetter.yahoo.com</listEntry>
|
1879
|
+
<listEntry>mtsindia.yahoo.com</listEntry>
|
1880
|
+
<listEntry>smartfren.yahoo.com</listEntry>
|
1881
|
+
<listEntry>*.att.yahoo.com</listEntry>
|
1882
|
+
<listEntry>*.people.yahoo.com</listEntry>
|
1883
|
+
<listEntry>*.celebrity.yahoo.com</listEntry>
|
1884
|
+
<listEntry>*.vida-estilo.yahoo.com</listEntry>
|
1885
|
+
<listEntry>*.style.yahoo.com</listEntry>
|
1886
|
+
<listEntry>*.movies.yahoo.com</listEntry>
|
1887
|
+
<listEntry>*.stars.yahoo.com</listEntry>
|
1888
|
+
<listEntry>*.kino.yahoo.com</listEntry>
|
1889
|
+
<listEntry>*.cine.yahoo.com</listEntry>
|
1890
|
+
<listEntry>*.cinema.yahoo.com</listEntry>
|
1891
|
+
<listEntry>*.celebridades.yahoo.com</listEntry>
|
1892
|
+
<listEntry>*.live.yahoo.com</listEntry>
|
1893
|
+
</DNS>
|
1894
|
+
</X509v3SubjectAlternativeName>
|
1895
|
+
<X509v3AuthorityKeyIdentifier>keyid:5F:60:CF:61:90:55:DF:84:43:14:8A:60:2A:B2:F5:7A:F4:43:18:EF</X509v3AuthorityKeyIdentifier>
|
1896
|
+
<X509v3CertificatePolicies>
|
1897
|
+
<Policy>
|
1898
|
+
<listEntry>2.23.140.1.2.2</listEntry>
|
1899
|
+
</Policy>
|
1900
|
+
<ExplicitText>
|
1901
|
+
<listEntry>https://d.symcb.com/rpa</listEntry>
|
1902
|
+
</ExplicitText>
|
1903
|
+
<CPS>
|
1904
|
+
<listEntry>https://d.symcb.com/cps</listEntry>
|
1905
|
+
</CPS>
|
1906
|
+
<UserNotice>
|
1907
|
+
<listEntry/>
|
1908
|
+
</UserNotice>
|
1909
|
+
</X509v3CertificatePolicies>
|
1910
|
+
</extensions>
|
1911
|
+
<signatureValue>9d:36:53:1c:3c:91:0e:24:d5:ca:5c:56:23:f6:97:19:83:b3:b4:38:ee:a4:94:f8:9a:2a:2d:74:a8:fa:2d:ea:c3:ef:e4:33:07:8b:a7:5a:7e:92:f5:74:74:cd:16:2d:f2:9d:55:42:f6:70:aa:6b:55:20:23:a1:7c:50:36:e6:a5:5f:29:b9:9a:3c:66:d7:2f:96:4a:aa:fa:f6:10:a1:03:6b:a5:d4:2d:96:3c:a1:bd:f2:d1:46:33:5d:22:7e:d0:b2:f9:36:9c:ce:8c:55:9d:34:df:35:7a:04:ce:79:39:69:d6:fa:cc:1d:7d:c8:d1:0c:d7:2a:c2:14:3d:af:2b:b9:a3:ee:7b:e2:92:66:f2:b8:f8:69:e7:33:89:e1:29:f4:66:c9:7f:ee:57:60:23:21:d7:b2:00:15:7e:a3:d3:a8:f9:63:7b:89:e7:c4:6c:02:56:51:18:ce:ba:e3:45:db:e1:76:9f:ed:09:dd:93:2e:ab:e5:33:76:37:71:a6:dc:42:9e:cc:6d:b2:1b:f1:e4:fc:1e:ae:80:3d:13:9b:19:a9:fd:6c:6e:71:3c:c6:fc:56:df:ba:14:8f:10:00:d0:d7:ad:24:4c:dc:53:be:38:5e:5c:0c:2b:a9:a5:df:fe:d7:1e:44:b9:42:89:f4:5d:85:47:0e:d1:e8:be</signatureValue>
|
1912
|
+
<signatureAlgorithm>sha256WithRSAEncryption</signatureAlgorithm>
|
1913
|
+
<serialNumber>186D76615DABCBC9C9E9E7E15B84F54F</serialNumber>
|
1914
|
+
<subject>
|
1915
|
+
<organizationalUnitName>Information Technology</organizationalUnitName>
|
1916
|
+
<organizationName>Yahoo Inc.</organizationName>
|
1917
|
+
<commonName>yahoo.com</commonName>
|
1918
|
+
<stateOrProvinceName>California</stateOrProvinceName>
|
1919
|
+
<countryName>US</countryName>
|
1920
|
+
<localityName>Sunnyvale</localityName>
|
1921
|
+
</subject>
|
1922
|
+
<validity>
|
1923
|
+
<notAfter>Aug 24 23:59:59 2016 GMT</notAfter>
|
1924
|
+
<notBefore>Aug 25 00:00:00 2015 GMT</notBefore>
|
1925
|
+
</validity>
|
1926
|
+
<issuer>
|
1927
|
+
<countryName>US</countryName>
|
1928
|
+
<commonName>Symantec Class 3 Secure Server CA - G4</commonName>
|
1929
|
+
<organizationalUnitName>Symantec Trust Network</organizationalUnitName>
|
1930
|
+
<organizationName>Symantec Corporation</organizationName>
|
1931
|
+
</issuer>
|
1932
|
+
</certificate>
|
1933
|
+
<certificate position="intermediate" sha1Fingerprint="ff67367c5cd4de4ae18bcce1d70fdabd7c866135">
|
1934
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
1935
|
+
MIIFODCCBCCgAwIBAgIQUT+5dDhwtzRAQY0wkwaZ/zANBgkqhkiG9w0BAQsFADCB
|
1936
|
+
yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL
|
1937
|
+
ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp
|
1938
|
+
U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW
|
1939
|
+
ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0
|
1940
|
+
aG9yaXR5IC0gRzUwHhcNMTMxMDMxMDAwMDAwWhcNMjMxMDMwMjM1OTU5WjB+MQsw
|
1941
|
+
CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV
|
1942
|
+
BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxLzAtBgNVBAMTJlN5bWFudGVjIENs
|
1943
|
+
YXNzIDMgU2VjdXJlIFNlcnZlciBDQSAtIEc0MIIBIjANBgkqhkiG9w0BAQEFAAOC
|
1944
|
+
AQ8AMIIBCgKCAQEAstgFyhx0LbUXVjnFSlIJluhL2AzxaJ+aQihiw6UwU35VEYJb
|
1945
|
+
A3oNL+F5BMm0lncZgQGUWfm893qZJ4Itt4PdWid/sgN6nFMl6UgfRk/InSn4vnlW
|
1946
|
+
9vf92Tpo2otLgjNBEsPIPMzWlnqEIRoiBAMnF4scaGGTDw5RgDMdtLXO637QYqzu
|
1947
|
+
s3sBdO9pNevK1T2p7peYyo2qRA4lmUoVlqTObQJUHypqJuIGOmNIrLRM0XWTUP8T
|
1948
|
+
L9ba4cYY9Z/JJV3zADreJk20KQnNDz0jbxZKgRb78oMQw7jW2FUyPfG9D72MUpVK
|
1949
|
+
Fpd6UiFjdS8W+cRmvvW1Cdj/JwDNRHxvSz+w9wIDAQABo4IBYzCCAV8wEgYDVR0T
|
1950
|
+
AQH/BAgwBgEB/wIBADAwBgNVHR8EKTAnMCWgI6Ahhh9odHRwOi8vczEuc3ltY2Iu
|
1951
|
+
Y29tL3BjYTMtZzUuY3JsMA4GA1UdDwEB/wQEAwIBBjAvBggrBgEFBQcBAQQjMCEw
|
1952
|
+
HwYIKwYBBQUHMAGGE2h0dHA6Ly9zMi5zeW1jYi5jb20wawYDVR0gBGQwYjBgBgpg
|
1953
|
+
hkgBhvhFAQc2MFIwJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuc3ltYXV0aC5jb20v
|
1954
|
+
Y3BzMCgGCCsGAQUFBwICMBwaGmh0dHA6Ly93d3cuc3ltYXV0aC5jb20vcnBhMCkG
|
1955
|
+
A1UdEQQiMCCkHjAcMRowGAYDVQQDExFTeW1hbnRlY1BLSS0xLTUzNDAdBgNVHQ4E
|
1956
|
+
FgQUX2DPYZBV34RDFIpgKrL1evRDGO8wHwYDVR0jBBgwFoAUf9Nlp8Ld7LvwMAnz
|
1957
|
+
Qzn6Aq8zMTMwDQYJKoZIhvcNAQELBQADggEBAF6UVkndji1l9cE2UbYD49qecxny
|
1958
|
+
H1mrWH5sJgUs+oHXXCMXIiw3k/eG7IXmsKP9H+IyqEVv4dn7ua/ScKAyQmW/hP4W
|
1959
|
+
Ko8/xabWo5N9Q+l0IZE1KPRj6S7t9/Vcf0uatSDpCr3gRRAMFJSaXaXjS5HoJJtG
|
1960
|
+
QGX0InLNmfiIEfXzf+YzguaoxX7+0AjiJVgIcWjmzaLmFN5OUiQt/eV5E1PnXi8t
|
1961
|
+
TRttQBVSK/eHiXgSgW7ZTaoteNTCLD0IX4eRnh8OsN4wUmSGiaqdZpwOdgyA8nTY
|
1962
|
+
Kvi4Os7X1g8RvmurFPW9QaAiY4nxug9vKWNmLT+sjHLF+8fk1A/yO0+MKcc=
|
1963
|
+
-----END CERTIFICATE-----</asPEM>
|
1964
|
+
<subjectPublicKeyInfo>
|
1965
|
+
<publicKey>
|
1966
|
+
<modulus>00:b2:d8:05:ca:1c:74:2d:b5:17:56:39:c5:4a:52:09:96:e8:4b:d8:0c:f1:68:9f:9a:42:28:62:c3:a5:30:53:7e:55:11:82:5b:03:7a:0d:2f:e1:79:04:c9:b4:96:77:19:81:01:94:59:f9:bc:f7:7a:99:27:82:2d:b7:83:dd:5a:27:7f:b2:03:7a:9c:53:25:e9:48:1f:46:4f:c8:9d:29:f8:be:79:56:f6:f7:fd:d9:3a:68:da:8b:4b:82:33:41:12:c3:c8:3c:cc:d6:96:7a:84:21:1a:22:04:03:27:17:8b:1c:68:61:93:0f:0e:51:80:33:1d:b4:b5:ce:eb:7e:d0:62:ac:ee:b3:7b:01:74:ef:69:35:eb:ca:d5:3d:a9:ee:97:98:ca:8d:aa:44:0e:25:99:4a:15:96:a4:ce:6d:02:54:1f:2a:6a:26:e2:06:3a:63:48:ac:b4:4c:d1:75:93:50:ff:13:2f:d6:da:e1:c6:18:f5:9f:c9:25:5d:f3:00:3a:de:26:4d:b4:29:09:cd:0f:3d:23:6f:16:4a:81:16:fb:f2:83:10:c3:b8:d6:d8:55:32:3d:f1:bd:0f:bd:8c:52:95:4a:16:97:7a:52:21:63:75:2f:16:f9:c4:66:be:f5:b5:09:d8:ff:27:00:cd:44:7c:6f:4b:3f:b0:f7</modulus>
|
1967
|
+
<exponent>65537</exponent>
|
1968
|
+
</publicKey>
|
1969
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
1970
|
+
<publicKeySize>2048</publicKeySize>
|
1971
|
+
</subjectPublicKeyInfo>
|
1972
|
+
<version>2</version>
|
1973
|
+
<extensions>
|
1974
|
+
<X509v3SubjectKeyIdentifier>5F:60:CF:61:90:55:DF:84:43:14:8A:60:2A:B2:F5:7A:F4:43:18:EF</X509v3SubjectKeyIdentifier>
|
1975
|
+
<AuthorityInformationAccess>
|
1976
|
+
<OCSP>
|
1977
|
+
<URI>
|
1978
|
+
<listEntry>http://s2.symcb.com</listEntry>
|
1979
|
+
</URI>
|
1980
|
+
</OCSP>
|
1981
|
+
</AuthorityInformationAccess>
|
1982
|
+
<X509v3CRLDistributionPoints>
|
1983
|
+
<FullName>
|
1984
|
+
<listEntry/>
|
1985
|
+
</FullName>
|
1986
|
+
<URI>
|
1987
|
+
<listEntry>http://s1.symcb.com/pca3-g5.crl</listEntry>
|
1988
|
+
</URI>
|
1989
|
+
</X509v3CRLDistributionPoints>
|
1990
|
+
<X509v3BasicConstraints>CA:TRUE, pathlen:0</X509v3BasicConstraints>
|
1991
|
+
<X509v3KeyUsage>
|
1992
|
+
<CRLSign/>
|
1993
|
+
<CertificateSign/>
|
1994
|
+
</X509v3KeyUsage>
|
1995
|
+
<X509v3SubjectAlternativeName>
|
1996
|
+
<DirName>
|
1997
|
+
<listEntry>/CN=SymantecPKI-1-534</listEntry>
|
1998
|
+
</DirName>
|
1999
|
+
</X509v3SubjectAlternativeName>
|
2000
|
+
<X509v3AuthorityKeyIdentifier>keyid:7F:D3:65:A7:C2:DD:EC:BB:F0:30:09:F3:43:39:FA:02:AF:33:31:33</X509v3AuthorityKeyIdentifier>
|
2001
|
+
<X509v3CertificatePolicies>
|
2002
|
+
<Policy>
|
2003
|
+
<listEntry>2.16.840.1.113733.1.7.54</listEntry>
|
2004
|
+
</Policy>
|
2005
|
+
<ExplicitText>
|
2006
|
+
<listEntry>http://www.symauth.com/rpa</listEntry>
|
2007
|
+
</ExplicitText>
|
2008
|
+
<CPS>
|
2009
|
+
<listEntry>http://www.symauth.com/cps</listEntry>
|
2010
|
+
</CPS>
|
2011
|
+
<UserNotice>
|
2012
|
+
<listEntry/>
|
2013
|
+
</UserNotice>
|
2014
|
+
</X509v3CertificatePolicies>
|
2015
|
+
</extensions>
|
2016
|
+
<signatureValue>5e:94:56:49:dd:8e:2d:65:f5:c1:36:51:b6:03:e3:da:9e:73:19:f2:1f:59:ab:58:7e:6c:26:05:2c:fa:81:d7:5c:23:17:22:2c:37:93:f7:86:ec:85:e6:b0:a3:fd:1f:e2:32:a8:45:6f:e1:d9:fb:b9:af:d2:70:a0:32:42:65:bf:84:fe:16:2a:8f:3f:c5:a6:d6:a3:93:7d:43:e9:74:21:91:35:28:f4:63:e9:2e:ed:f7:f5:5c:7f:4b:9a:b5:20:e9:0a:bd:e0:45:10:0c:14:94:9a:5d:a5:e3:4b:91:e8:24:9b:46:40:65:f4:22:72:cd:99:f8:88:11:f5:f3:7f:e6:33:82:e6:a8:c5:7e:fe:d0:08:e2:25:58:08:71:68:e6:cd:a2:e6:14:de:4e:52:24:2d:fd:e5:79:13:53:e7:5e:2f:2d:4d:1b:6d:40:15:52:2b:f7:87:89:78:12:81:6e:d9:4d:aa:2d:78:d4:c2:2c:3d:08:5f:87:91:9e:1f:0e:b0:de:30:52:64:86:89:aa:9d:66:9c:0e:76:0c:80:f2:74:d8:2a:f8:b8:3a:ce:d7:d6:0f:11:be:6b:ab:14:f5:bd:41:a0:22:63:89:f1:ba:0f:6f:29:63:66:2d:3f:ac:8c:72:c5:fb:c7:e4:d4:0f:f2:3b:4f:8c:29:c7</signatureValue>
|
2017
|
+
<signatureAlgorithm>sha256WithRSAEncryption</signatureAlgorithm>
|
2018
|
+
<serialNumber>513FB9743870B73440418D30930699FF</serialNumber>
|
2019
|
+
<subject>
|
2020
|
+
<countryName>US</countryName>
|
2021
|
+
<commonName>Symantec Class 3 Secure Server CA - G4</commonName>
|
2022
|
+
<organizationalUnitName>Symantec Trust Network</organizationalUnitName>
|
2023
|
+
<organizationName>Symantec Corporation</organizationName>
|
2024
|
+
</subject>
|
2025
|
+
<validity>
|
2026
|
+
<notAfter>Oct 30 23:59:59 2023 GMT</notAfter>
|
2027
|
+
<notBefore>Oct 31 00:00:00 2013 GMT</notBefore>
|
2028
|
+
</validity>
|
2029
|
+
<issuer>
|
2030
|
+
<countryName>US</countryName>
|
2031
|
+
<commonName>VeriSign Class 3 Public Primary Certification Authority - G5</commonName>
|
2032
|
+
<organizationalUnitName>(c) 2006 VeriSign, Inc. - For authorized use only</organizationalUnitName>
|
2033
|
+
<organizationName>VeriSign, Inc.</organizationName>
|
2034
|
+
</issuer>
|
2035
|
+
</certificate>
|
2036
|
+
<certificate position="intermediate" sha1Fingerprint="32f30882622b87cf8856c63db873df0853b4dd27">
|
2037
|
+
<asPEM>-----BEGIN CERTIFICATE-----
|
2038
|
+
MIIE0DCCBDmgAwIBAgIQJQzo4DBhLp8rifcFTXz4/TANBgkqhkiG9w0BAQUFADBf
|
2039
|
+
MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xNzA1BgNVBAsT
|
2040
|
+
LkNsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkw
|
2041
|
+
HhcNMDYxMTA4MDAwMDAwWhcNMjExMTA3MjM1OTU5WjCByjELMAkGA1UEBhMCVVMx
|
2042
|
+
FzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVz
|
2043
|
+
dCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZv
|
2044
|
+
ciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAz
|
2045
|
+
IFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEi
|
2046
|
+
MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8
|
2047
|
+
RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKzj/i5Vbext0uz/o9+B1fs70Pb
|
2048
|
+
ZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhDY2pSS9KP6HBR
|
2049
|
+
TdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/
|
2050
|
+
Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNH
|
2051
|
+
iDxpg8v+R70rfk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMB
|
2052
|
+
AAGjggGbMIIBlzAPBgNVHRMBAf8EBTADAQH/MDEGA1UdHwQqMCgwJqAkoCKGIGh0
|
2053
|
+
dHA6Ly9jcmwudmVyaXNpZ24uY29tL3BjYTMuY3JsMA4GA1UdDwEB/wQEAwIBBjA9
|
2054
|
+
BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cudmVy
|
2055
|
+
aXNpZ24uY29tL2NwczAdBgNVHQ4EFgQUf9Nlp8Ld7LvwMAnzQzn6Aq8zMTMwbQYI
|
2056
|
+
KwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQU
|
2057
|
+
j+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24uY29t
|
2058
|
+
L3ZzbG9nby5naWYwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8v
|
2059
|
+
b2NzcC52ZXJpc2lnbi5jb20wPgYDVR0lBDcwNQYIKwYBBQUHAwEGCCsGAQUFBwMC
|
2060
|
+
BggrBgEFBQcDAwYJYIZIAYb4QgQBBgpghkgBhvhFAQgBMA0GCSqGSIb3DQEBBQUA
|
2061
|
+
A4GBABMC3fjohgDyWvj4IAxZiGIHzs73Tvm7WaGY5eE43U68ZhjTresY8g3JbT5K
|
2062
|
+
lCDDPLq9ZVTGr0SzEK0saz6r1we2uIFjxfleLuUqZ87NMwwq14lWAyMfs77oOghZ
|
2063
|
+
tOxFNfeKW/9mz1Cvxm1XjRl4t7mi0VfqH5pLr7rJjhJ+xr3/
|
2064
|
+
-----END CERTIFICATE-----</asPEM>
|
2065
|
+
<subjectPublicKeyInfo>
|
2066
|
+
<publicKey>
|
2067
|
+
<modulus>00:af:24:08:08:29:7a:35:9e:60:0c:aa:e7:4b:3b:4e:dc:7c:bc:3c:45:1c:bb:2b:e0:fe:29:02:f9:57:08:a3:64:85:15:27:f5:f1:ad:c8:31:89:5d:22:e8:2a:aa:a6:42:b3:8f:f8:b9:55:b7:b1:b7:4b:b3:fe:8f:7e:07:57:ec:ef:43:db:66:62:15:61:cf:60:0d:a4:d8:de:f8:e0:c3:62:08:3d:54:13:eb:49:ca:59:54:85:26:e5:2b:8f:1b:9f:eb:f5:a1:91:c2:33:49:d8:43:63:6a:52:4b:d2:8f:e8:70:51:4d:d1:89:69:7b:c7:70:f6:b3:dc:12:74:db:7b:5d:4b:56:d3:96:bf:15:77:a1:b0:f4:a2:25:f2:af:1c:92:67:18:e5:f4:06:04:ef:90:b9:e4:00:e4:dd:3a:b5:19:ff:02:ba:f4:3c:ee:e0:8b:eb:37:8b:ec:f4:d7:ac:f2:f6:f0:3d:af:dd:75:91:33:19:1d:1c:40:cb:74:24:19:21:93:d9:14:fe:ac:2a:52:c7:8f:d5:04:49:e4:8d:63:47:88:3c:69:83:cb:fe:47:bd:2b:7e:4f:c5:95:ae:0e:9d:d4:d1:43:c0:67:73:e3:14:08:7e:e5:3f:9f:73:b8:33:0a:cf:5d:3f:34:87:96:8a:ee:53:e8:25:15</modulus>
|
2068
|
+
<exponent>65537</exponent>
|
2069
|
+
</publicKey>
|
2070
|
+
<publicKeyAlgorithm>rsaEncryption</publicKeyAlgorithm>
|
2071
|
+
<publicKeySize>2048</publicKeySize>
|
2072
|
+
</subjectPublicKeyInfo>
|
2073
|
+
<version>2</version>
|
2074
|
+
<extensions>
|
2075
|
+
<X509v3SubjectKeyIdentifier>7F:D3:65:A7:C2:DD:EC:BB:F0:30:09:F3:43:39:FA:02:AF:33:31:33</X509v3SubjectKeyIdentifier>
|
2076
|
+
<AuthorityInformationAccess>
|
2077
|
+
<OCSP>
|
2078
|
+
<URI>
|
2079
|
+
<listEntry>http://ocsp.verisign.com</listEntry>
|
2080
|
+
</URI>
|
2081
|
+
</OCSP>
|
2082
|
+
</AuthorityInformationAccess>
|
2083
|
+
<X509v3ExtendedKeyUsage>
|
2084
|
+
<TLSWebClientAuthentication/>
|
2085
|
+
<NetscapeServerGatedCrypto/>
|
2086
|
+
<oid-2.16.840.1.113733.1.8.1/>
|
2087
|
+
<CodeSigning/>
|
2088
|
+
<TLSWebServerAuthentication/>
|
2089
|
+
</X509v3ExtendedKeyUsage>
|
2090
|
+
<X509v3CRLDistributionPoints>
|
2091
|
+
<FullName>
|
2092
|
+
<listEntry/>
|
2093
|
+
</FullName>
|
2094
|
+
<URI>
|
2095
|
+
<listEntry>http://crl.verisign.com/pca3.crl</listEntry>
|
2096
|
+
</URI>
|
2097
|
+
</X509v3CRLDistributionPoints>
|
2098
|
+
<X509v3BasicConstraints>CA:TRUE</X509v3BasicConstraints>
|
2099
|
+
<X509v3KeyUsage>
|
2100
|
+
<CRLSign/>
|
2101
|
+
<CertificateSign/>
|
2102
|
+
</X509v3KeyUsage>
|
2103
|
+
<oid-1.3.6.1.5.5.7.1.12><Not Supported></oid-1.3.6.1.5.5.7.1.12>
|
2104
|
+
<X509v3CertificatePolicies>
|
2105
|
+
<Policy>
|
2106
|
+
<listEntry>X509v3 Any Policy</listEntry>
|
2107
|
+
</Policy>
|
2108
|
+
<CPS>
|
2109
|
+
<listEntry>https://www.verisign.com/cps</listEntry>
|
2110
|
+
</CPS>
|
2111
|
+
</X509v3CertificatePolicies>
|
2112
|
+
</extensions>
|
2113
|
+
<signatureValue>13:02:dd:f8:e8:86:00:f2:5a:f8:f8:20:0c:59:88:62:07:ce:ce:f7:4e:f9:bb:59:a1:98:e5:e1:38:dd:4e:bc:66:18:d3:ad:eb:18:f2:0d:c9:6d:3e:4a:94:20:c3:3c:ba:bd:65:54:c6:af:44:b3:10:ad:2c:6b:3e:ab:d7:07:b6:b8:81:63:c5:f9:5e:2e:e5:2a:67:ce:cd:33:0c:2a:d7:89:56:03:23:1f:b3:be:e8:3a:08:59:b4:ec:45:35:f7:8a:5b:ff:66:cf:50:af:c6:6d:57:8d:19:78:b7:b9:a2:d1:57:ea:1f:9a:4b:af:ba:c9:8e:12:7e:c6:bd:ff</signatureValue>
|
2114
|
+
<signatureAlgorithm>sha1WithRSAEncryption</signatureAlgorithm>
|
2115
|
+
<serialNumber>250CE8E030612E9F2B89F7054D7CF8FD</serialNumber>
|
2116
|
+
<subject>
|
2117
|
+
<countryName>US</countryName>
|
2118
|
+
<commonName>VeriSign Class 3 Public Primary Certification Authority - G5</commonName>
|
2119
|
+
<organizationalUnitName>(c) 2006 VeriSign, Inc. - For authorized use only</organizationalUnitName>
|
2120
|
+
<organizationName>VeriSign, Inc.</organizationName>
|
2121
|
+
</subject>
|
2122
|
+
<validity>
|
2123
|
+
<notAfter>Nov 7 23:59:59 2021 GMT</notAfter>
|
2124
|
+
<notBefore>Nov 8 00:00:00 2006 GMT</notBefore>
|
2125
|
+
</validity>
|
2126
|
+
<issuer>
|
2127
|
+
<countryName>US</countryName>
|
2128
|
+
<organizationalUnitName>Class 3 Public Primary Certification Authority</organizationalUnitName>
|
2129
|
+
<organizationName>VeriSign, Inc.</organizationName>
|
2130
|
+
</issuer>
|
2131
|
+
</certificate>
|
2132
|
+
</certificateChain>
|
2133
|
+
<certificateValidation>
|
2134
|
+
<hostnameValidation certificateMatchesServerHostname="True" serverHostname="yahoo.com"/>
|
2135
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Google" validationResult="ok"/>
|
2136
|
+
<pathValidation trustStoreVersion="Update 65" usingTrustStore="Java 6" validationResult="ok"/>
|
2137
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Microsoft" validationResult="ok"/>
|
2138
|
+
<pathValidation trustStoreVersion="09/2015" usingTrustStore="Mozilla NSS" validationResult="ok"/>
|
2139
|
+
<pathValidation trustStoreVersion="OS X 10.10.5" usingTrustStore="Apple" validationResult="ok"/>
|
2140
|
+
</certificateValidation>
|
2141
|
+
<ocspStapling isSupported="True">
|
2142
|
+
<ocspResponse isTrustedByMozillaCAStore="True">
|
2143
|
+
<responseType>Basic OCSP Response</responseType>
|
2144
|
+
<responderID>0E7DB19F96176475CE3E5D98725AF4ACADA03FAF</responderID>
|
2145
|
+
<responses>
|
2146
|
+
<listEntry>
|
2147
|
+
<nextUpdate>Oct 1 22:58:23 2015 GMT</nextUpdate>
|
2148
|
+
<certID>
|
2149
|
+
<hashAlgorithm>sha1</hashAlgorithm>
|
2150
|
+
<serialNumber>186D76615DABCBC9C9E9E7E15B84F54F</serialNumber>
|
2151
|
+
<issuerNameHash>D1B1648B8C9F0DD16BA38ACD2B5017D5F9CFC064</issuerNameHash>
|
2152
|
+
<issuerKeyHash>5F60CF619055DF8443148A602AB2F57AF44318EF</issuerKeyHash>
|
2153
|
+
</certID>
|
2154
|
+
<thisUpdate>Sep 24 22:58:23 2015 GMT</thisUpdate>
|
2155
|
+
<certStatus>good</certStatus>
|
2156
|
+
</listEntry>
|
2157
|
+
</responses>
|
2158
|
+
<version>1</version>
|
2159
|
+
<responseStatus>successful</responseStatus>
|
2160
|
+
<producedAt>Sep 24 22:58:23 2015 GMT</producedAt>
|
2161
|
+
</ocspResponse>
|
2162
|
+
</ocspStapling>
|
2163
|
+
</certinfo>
|
2164
|
+
<compression title="Deflate Compression">
|
2165
|
+
<compressionMethod isSupported="False" type="DEFLATE"/>
|
2166
|
+
</compression>
|
2167
|
+
<heartbleed title="OpenSSL Heartbleed">
|
2168
|
+
<openSslHeartbleed isVulnerable="False"/>
|
2169
|
+
</heartbleed>
|
2170
|
+
<reneg title="Session Renegotiation">
|
2171
|
+
<sessionRenegotiation canBeClientInitiated="False" isSecure="True"/>
|
2172
|
+
</reneg>
|
2173
|
+
<resum title="Session Resumption">
|
2174
|
+
<sessionResumptionWithSessionIDs errors="0" failedAttempts="5" isSupported="False" successfulAttempts="0" totalAttempts="5"/>
|
2175
|
+
<sessionResumptionWithTLSTickets isSupported="True"/>
|
2176
|
+
</resum>
|
2177
|
+
<sslv2 isProtocolSupported="False" title="SSLV2 Cipher Suites">
|
2178
|
+
<errors/>
|
2179
|
+
<rejectedCipherSuites>
|
2180
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="DES-CBC-MD5"/>
|
2181
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="DES-CBC3-MD5"/>
|
2182
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="EXP-RC2-CBC-MD5"/>
|
2183
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="EXP-RC4-MD5"/>
|
2184
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="IDEA-CBC-MD5"/>
|
2185
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="RC2-CBC-MD5"/>
|
2186
|
+
<cipherSuite anonymous="False" connectionStatus="TCP / Received RST" name="RC4-MD5"/>
|
2187
|
+
</rejectedCipherSuites>
|
2188
|
+
<acceptedCipherSuites/>
|
2189
|
+
<preferredCipherSuite/>
|
2190
|
+
</sslv2>
|
2191
|
+
<sslv3 isProtocolSupported="False" title="SSLV3 Cipher Suites">
|
2192
|
+
<errors/>
|
2193
|
+
<rejectedCipherSuites>
|
2194
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
2195
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
2196
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
2197
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
2198
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
2199
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
2200
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
2201
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
2202
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
2203
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
2204
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
2205
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
2206
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
2207
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
2208
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
2209
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
2210
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
2211
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
2212
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES128-SHA"/>
|
2213
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
2214
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
2215
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES256-SHA"/>
|
2216
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
2217
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
2218
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
2219
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
2220
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC3-SHA"/>
|
2221
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
2222
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
2223
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
2224
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
2225
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
2226
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
2227
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
2228
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
2229
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
2230
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
2231
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
2232
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
2233
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
2234
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
2235
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
2236
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
2237
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
2238
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
2239
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
2240
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
2241
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
2242
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
2243
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
2244
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
2245
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
2246
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
2247
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
2248
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
2249
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
2250
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
2251
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
2252
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
2253
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
2254
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
2255
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
2256
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
2257
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
2258
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
2259
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
2260
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
2261
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
2262
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
2263
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
2264
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
2265
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
2266
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
2267
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
2268
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
2269
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
2270
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
2271
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
2272
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
2273
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
2274
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
2275
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
2276
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
2277
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
2278
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
2279
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
2280
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
2281
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
2282
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
2283
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
2284
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
2285
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
2286
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
2287
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
2288
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
2289
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-AES128-SHA"/>
|
2290
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
2291
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
2292
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-AES256-SHA"/>
|
2293
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
2294
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
2295
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
2296
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-RC4-SHA"/>
|
2297
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
2298
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
2299
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
2300
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
2301
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
2302
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
2303
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
2304
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
2305
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
2306
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
2307
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
2308
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
2309
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
2310
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
2311
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
2312
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
2313
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
2314
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
2315
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
2316
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-MD5"/>
|
2317
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="RC4-SHA"/>
|
2318
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
2319
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
2320
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
2321
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
2322
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
2323
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
2324
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
2325
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
2326
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
2327
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
2328
|
+
</rejectedCipherSuites>
|
2329
|
+
<acceptedCipherSuites/>
|
2330
|
+
<preferredCipherSuite/>
|
2331
|
+
</sslv3>
|
2332
|
+
<tlsv1 isProtocolSupported="True" title="TLSV1 Cipher Suites">
|
2333
|
+
<errors/>
|
2334
|
+
<rejectedCipherSuites>
|
2335
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
2336
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
2337
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
2338
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
2339
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
2340
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
2341
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
2342
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
2343
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
2344
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
2345
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
2346
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
2347
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
2348
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
2349
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
2350
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
2351
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
2352
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
2353
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
2354
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
2355
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
2356
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
2357
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
2358
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
2359
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
2360
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
2361
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
2362
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
2363
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
2364
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
2365
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
2366
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
2367
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
2368
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
2369
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
2370
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
2371
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
2372
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
2373
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
2374
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
2375
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
2376
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
2377
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
2378
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
2379
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
2380
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
2381
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
2382
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
2383
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
2384
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
2385
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
2386
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
2387
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
2388
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
2389
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
2390
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
2391
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
2392
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
2393
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
2394
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
2395
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
2396
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
2397
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
2398
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
2399
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
2400
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
2401
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
2402
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
2403
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
2404
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
2405
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
2406
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
2407
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
2408
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
2409
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
2410
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
2411
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
2412
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
2413
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
2414
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
2415
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
2416
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
2417
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
2418
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
2419
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
2420
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
2421
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
2422
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
2423
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
2424
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
2425
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
2426
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
2427
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
2428
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
2429
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
2430
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
2431
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
2432
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
2433
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
2434
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
2435
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
2436
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
2437
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
2438
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
2439
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
2440
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
2441
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
2442
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
2443
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
2444
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
2445
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
2446
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
2447
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
2448
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
2449
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
2450
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
2451
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
2452
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
2453
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
2454
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
2455
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
2456
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
2457
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
2458
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
2459
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
2460
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
2461
|
+
</rejectedCipherSuites>
|
2462
|
+
<acceptedCipherSuites>
|
2463
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="AES128-SHA"/>
|
2464
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="AES256-SHA"/>
|
2465
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="112" name="DES-CBC3-SHA"/>
|
2466
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
2467
|
+
<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"/>
|
2468
|
+
</cipherSuite>
|
2469
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
2470
|
+
<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"/>
|
2471
|
+
</cipherSuite>
|
2472
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-RC4-SHA">
|
2473
|
+
<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"/>
|
2474
|
+
</cipherSuite>
|
2475
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="RC4-MD5"/>
|
2476
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="RC4-SHA"/>
|
2477
|
+
</acceptedCipherSuites>
|
2478
|
+
<preferredCipherSuite>
|
2479
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-RC4-SHA">
|
2480
|
+
<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"/>
|
2481
|
+
</cipherSuite>
|
2482
|
+
</preferredCipherSuite>
|
2483
|
+
</tlsv1>
|
2484
|
+
<tlsv1_1 isProtocolSupported="True" title="TLSV1_1 Cipher Suites">
|
2485
|
+
<errors/>
|
2486
|
+
<rejectedCipherSuites>
|
2487
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-GCM-SHA256"/>
|
2488
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
2489
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES128-SHA256"/>
|
2490
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-GCM-SHA384"/>
|
2491
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
2492
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / No ciphers available" name="ADH-AES256-SHA256"/>
|
2493
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
2494
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
2495
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
2496
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
2497
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
2498
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
2499
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
2500
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
2501
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
2502
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
2503
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
2504
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-GCM-SHA256"/>
|
2505
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES128-SHA256"/>
|
2506
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-GCM-SHA384"/>
|
2507
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="AES256-SHA256"/>
|
2508
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
2509
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
2510
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
2511
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-GCM-SHA256"/>
|
2512
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
2513
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES128-SHA256"/>
|
2514
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-GCM-SHA384"/>
|
2515
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
2516
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-DSS-AES256-SHA256"/>
|
2517
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
2518
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
2519
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
2520
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
2521
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
2522
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-GCM-SHA256"/>
|
2523
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
2524
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES128-SHA256"/>
|
2525
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-GCM-SHA384"/>
|
2526
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
2527
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DH-RSA-AES256-SHA256"/>
|
2528
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
2529
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
2530
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
2531
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
2532
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
2533
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-GCM-SHA256"/>
|
2534
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
2535
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES128-SHA256"/>
|
2536
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-GCM-SHA384"/>
|
2537
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
2538
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-DSS-AES256-SHA256"/>
|
2539
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
2540
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
2541
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
2542
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-GCM-SHA256"/>
|
2543
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
2544
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES128-SHA256"/>
|
2545
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-GCM-SHA384"/>
|
2546
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
2547
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="DHE-RSA-AES256-SHA256"/>
|
2548
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
2549
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
2550
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
2551
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
2552
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
2553
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES128-SHA256"/>
|
2554
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
2555
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
2556
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-ECDSA-AES256-SHA384"/>
|
2557
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
2558
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
2559
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
2560
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
2561
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
2562
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES128-SHA256"/>
|
2563
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
2564
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
2565
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDH-RSA-AES256-SHA384"/>
|
2566
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
2567
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
2568
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
2569
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
2570
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
2571
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES128-SHA256"/>
|
2572
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
2573
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
2574
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-ECDSA-AES256-SHA384"/>
|
2575
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
2576
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
2577
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
2578
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-GCM-SHA256"/>
|
2579
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES128-SHA256"/>
|
2580
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-GCM-SHA384"/>
|
2581
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="ECDHE-RSA-AES256-SHA384"/>
|
2582
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
2583
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
2584
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
2585
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
2586
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
2587
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
2588
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
2589
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
2590
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
2591
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
2592
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
2593
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
2594
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
2595
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
2596
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
2597
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
2598
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="NULL-SHA256"/>
|
2599
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
2600
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
2601
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
2602
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
2603
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
2604
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
2605
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
2606
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
2607
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
2608
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
2609
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
2610
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
2611
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
2612
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
2613
|
+
</rejectedCipherSuites>
|
2614
|
+
<acceptedCipherSuites>
|
2615
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="AES128-SHA"/>
|
2616
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="AES256-SHA"/>
|
2617
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="112" name="DES-CBC3-SHA"/>
|
2618
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
2619
|
+
<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"/>
|
2620
|
+
</cipherSuite>
|
2621
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
2622
|
+
<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"/>
|
2623
|
+
</cipherSuite>
|
2624
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-RC4-SHA">
|
2625
|
+
<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"/>
|
2626
|
+
</cipherSuite>
|
2627
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="RC4-MD5"/>
|
2628
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="RC4-SHA"/>
|
2629
|
+
</acceptedCipherSuites>
|
2630
|
+
<preferredCipherSuite>
|
2631
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-RC4-SHA">
|
2632
|
+
<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"/>
|
2633
|
+
</cipherSuite>
|
2634
|
+
</preferredCipherSuite>
|
2635
|
+
</tlsv1_1>
|
2636
|
+
<tlsv1_2 isProtocolSupported="True" title="TLSV1_2 Cipher Suites">
|
2637
|
+
<errors/>
|
2638
|
+
<rejectedCipherSuites>
|
2639
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-GCM-SHA256"/>
|
2640
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA"/>
|
2641
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES128-SHA256"/>
|
2642
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-GCM-SHA384"/>
|
2643
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA"/>
|
2644
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-AES256-SHA256"/>
|
2645
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA128-SHA"/>
|
2646
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-CAMELLIA256-SHA"/>
|
2647
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC-SHA"/>
|
2648
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-DES-CBC3-SHA"/>
|
2649
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-RC4-MD5"/>
|
2650
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="ADH-SEED-SHA"/>
|
2651
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES128-SHA"/>
|
2652
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-AES256-SHA"/>
|
2653
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-DES-CBC3-SHA"/>
|
2654
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-NULL-SHA"/>
|
2655
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="AECDH-RC4-SHA"/>
|
2656
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES128-SHA256"/>
|
2657
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="AES256-SHA256"/>
|
2658
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA128-SHA"/>
|
2659
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="CAMELLIA256-SHA"/>
|
2660
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DES-CBC-SHA"/>
|
2661
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-GCM-SHA256"/>
|
2662
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA"/>
|
2663
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES128-SHA256"/>
|
2664
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-GCM-SHA384"/>
|
2665
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA"/>
|
2666
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-AES256-SHA256"/>
|
2667
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA128-SHA"/>
|
2668
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-CAMELLIA256-SHA"/>
|
2669
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC-SHA"/>
|
2670
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-DES-CBC3-SHA"/>
|
2671
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-DSS-SEED-SHA"/>
|
2672
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-GCM-SHA256"/>
|
2673
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA"/>
|
2674
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES128-SHA256"/>
|
2675
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-GCM-SHA384"/>
|
2676
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA"/>
|
2677
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-AES256-SHA256"/>
|
2678
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA128-SHA"/>
|
2679
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-CAMELLIA256-SHA"/>
|
2680
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC-SHA"/>
|
2681
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-DES-CBC3-SHA"/>
|
2682
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DH-RSA-SEED-SHA"/>
|
2683
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-GCM-SHA256"/>
|
2684
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA"/>
|
2685
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES128-SHA256"/>
|
2686
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-GCM-SHA384"/>
|
2687
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA"/>
|
2688
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-AES256-SHA256"/>
|
2689
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA128-SHA"/>
|
2690
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-CAMELLIA256-SHA"/>
|
2691
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-DSS-SEED-SHA"/>
|
2692
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-GCM-SHA256"/>
|
2693
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA"/>
|
2694
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES128-SHA256"/>
|
2695
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-GCM-SHA384"/>
|
2696
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA"/>
|
2697
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-AES256-SHA256"/>
|
2698
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA128-SHA"/>
|
2699
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-CAMELLIA256-SHA"/>
|
2700
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="DHE-RSA-SEED-SHA"/>
|
2701
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-GCM-SHA256"/>
|
2702
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA"/>
|
2703
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES128-SHA256"/>
|
2704
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-GCM-SHA384"/>
|
2705
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA"/>
|
2706
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-AES256-SHA384"/>
|
2707
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-DES-CBC3-SHA"/>
|
2708
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-NULL-SHA"/>
|
2709
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-ECDSA-RC4-SHA"/>
|
2710
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-GCM-SHA256"/>
|
2711
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA"/>
|
2712
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES128-SHA256"/>
|
2713
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-GCM-SHA384"/>
|
2714
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA"/>
|
2715
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-AES256-SHA384"/>
|
2716
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-DES-CBC3-SHA"/>
|
2717
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-NULL-SHA"/>
|
2718
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDH-RSA-RC4-SHA"/>
|
2719
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-GCM-SHA256"/>
|
2720
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA"/>
|
2721
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES128-SHA256"/>
|
2722
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-GCM-SHA384"/>
|
2723
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA"/>
|
2724
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-AES256-SHA384"/>
|
2725
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-DES-CBC3-SHA"/>
|
2726
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-NULL-SHA"/>
|
2727
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-ECDSA-RC4-SHA"/>
|
2728
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-DES-CBC3-SHA"/>
|
2729
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="ECDHE-RSA-NULL-SHA"/>
|
2730
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC-SHA"/>
|
2731
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-DSS-DES-CBC3-SHA"/>
|
2732
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC-SHA"/>
|
2733
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EDH-RSA-DES-CBC3-SHA"/>
|
2734
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-DES-CBC-SHA"/>
|
2735
|
+
<cipherSuite anonymous="True" connectionStatus="TLS / Alert handshake failure" name="EXP-ADH-RC4-MD5"/>
|
2736
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-DES-CBC-SHA"/>
|
2737
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-DSS-DES-CBC-SHA"/>
|
2738
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-EDH-RSA-DES-CBC-SHA"/>
|
2739
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC2-CBC-MD5"/>
|
2740
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="EXP-RC4-MD5"/>
|
2741
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="IDEA-CBC-SHA"/>
|
2742
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-MD5"/>
|
2743
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA"/>
|
2744
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="NULL-SHA256"/>
|
2745
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-3DES-EDE-CBC-SHA"/>
|
2746
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES128-CBC-SHA"/>
|
2747
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-AES256-CBC-SHA"/>
|
2748
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="PSK-RC4-SHA"/>
|
2749
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / Alert handshake failure" name="SEED-SHA"/>
|
2750
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-3DES-EDE-CBC-SHA"/>
|
2751
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-128-CBC-SHA"/>
|
2752
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-AES-256-CBC-SHA"/>
|
2753
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-3DES-EDE-CBC-SHA"/>
|
2754
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-128-CBC-SHA"/>
|
2755
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-DSS-AES-256-CBC-SHA"/>
|
2756
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-3DES-EDE-CBC-SHA"/>
|
2757
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-128-CBC-SHA"/>
|
2758
|
+
<cipherSuite anonymous="False" connectionStatus="TLS / No ciphers available" name="SRP-RSA-AES-256-CBC-SHA"/>
|
2759
|
+
</rejectedCipherSuites>
|
2760
|
+
<acceptedCipherSuites>
|
2761
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="AES128-GCM-SHA256"/>
|
2762
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="AES128-SHA"/>
|
2763
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="AES256-GCM-SHA384"/>
|
2764
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="AES256-SHA"/>
|
2765
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="112" name="DES-CBC3-SHA"/>
|
2766
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-AES128-GCM-SHA256">
|
2767
|
+
<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"/>
|
2768
|
+
</cipherSuite>
|
2769
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-AES128-SHA">
|
2770
|
+
<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"/>
|
2771
|
+
</cipherSuite>
|
2772
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-AES128-SHA256">
|
2773
|
+
<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"/>
|
2774
|
+
</cipherSuite>
|
2775
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="ECDHE-RSA-AES256-GCM-SHA384">
|
2776
|
+
<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"/>
|
2777
|
+
</cipherSuite>
|
2778
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="ECDHE-RSA-AES256-SHA">
|
2779
|
+
<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"/>
|
2780
|
+
</cipherSuite>
|
2781
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="256" name="ECDHE-RSA-AES256-SHA384">
|
2782
|
+
<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"/>
|
2783
|
+
</cipherSuite>
|
2784
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-RC4-SHA">
|
2785
|
+
<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"/>
|
2786
|
+
</cipherSuite>
|
2787
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="RC4-MD5"/>
|
2788
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="RC4-SHA"/>
|
2789
|
+
</acceptedCipherSuites>
|
2790
|
+
<preferredCipherSuite>
|
2791
|
+
<cipherSuite anonymous="False" connectionStatus="HTTP 301 Redirect - https://www.yahoo.com/" keySize="128" name="ECDHE-RSA-AES128-GCM-SHA256">
|
2792
|
+
<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"/>
|
2793
|
+
</cipherSuite>
|
2794
|
+
</preferredCipherSuite>
|
2795
|
+
</tlsv1_2>
|
2796
|
+
</target>
|
2797
|
+
</results>
|
2798
|
+
</document>
|