Skip to content

Commit

Permalink
Update trust stores
Browse files Browse the repository at this point in the history
  • Loading branch information
nabla-c0d3 committed Dec 24, 2017
1 parent 29eb82e commit 2a70f5b
Show file tree
Hide file tree
Showing 6 changed files with 22,944 additions and 21,518 deletions.
23,780 changes: 12,265 additions & 11,515 deletions sslyze/plugins/utils/trust_store/pem_files/aosp.pem

Large diffs are not rendered by default.

1,259 changes: 437 additions & 822 deletions sslyze/plugins/utils/trust_store/pem_files/apple.pem

Large diffs are not rendered by default.

3,881 changes: 2,099 additions & 1,782 deletions sslyze/plugins/utils/trust_store/pem_files/java.pem

Large diffs are not rendered by default.

14,583 changes: 7,773 additions & 6,810 deletions sslyze/plugins/utils/trust_store/pem_files/microsoft.pem

Large diffs are not rendered by default.

949 changes: 365 additions & 584 deletions sslyze/plugins/utils/trust_store/pem_files/mozilla.pem

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions sslyze/plugins/utils/trust_store/trust_store_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ class TrustStoresRepository(object):

_TRUST_STORES_PATH = join(_get_script_dir(), 'pem_files')

_MAIN_STORE = TrustStore(join(_TRUST_STORES_PATH, 'mozilla.pem'), 'Mozilla', '09/2016', _MOZILLA_EV_OIDS)
_MAIN_STORE = TrustStore(join(_TRUST_STORES_PATH, 'mozilla.pem'), 'Mozilla', '12/2017', _MOZILLA_EV_OIDS)

_ALL_STORES = [
_MAIN_STORE,
TrustStore(join(_TRUST_STORES_PATH, 'microsoft.pem'), 'Microsoft', '09/2016'),
TrustStore(join(_TRUST_STORES_PATH, 'apple.pem'), 'Apple', 'OS X 10.11.6'),
TrustStore(join(_TRUST_STORES_PATH, 'java.pem'), 'Java 7', 'Update 79'),
TrustStore(join(_TRUST_STORES_PATH, 'aosp.pem'), 'AOSP', '7.0.0 r1'),
TrustStore(join(_TRUST_STORES_PATH, 'microsoft.pem'), 'Microsoft', '12/2017'),
TrustStore(join(_TRUST_STORES_PATH, 'apple.pem'), 'Apple', 'macOS 10.13.1'),
TrustStore(join(_TRUST_STORES_PATH, 'java.pem'), 'Java 8', 'Update 121'),
TrustStore(join(_TRUST_STORES_PATH, 'aosp.pem'), 'AOSP', '8.0.0 r36'),
]

@classmethod
Expand Down

0 comments on commit 2a70f5b

Please sign in to comment.