https://github.com/jwilk/skeptica
find out which CAs sites use
https://github.com/jwilk/skeptica
security
Last synced: over 1 year ago
JSON representation
find out which CAs sites use
- Host: GitHub
- URL: https://github.com/jwilk/skeptica
- Owner: jwilk
- License: mit
- Created: 2016-05-20T19:08:58.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-01-21T19:39:11.000Z (over 1 year ago)
- Last Synced: 2025-01-25T10:08:51.956Z (over 1 year ago)
- Topics: security
- Language: Perl
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Overview
========
Find out which root CAs the TLS servers use:
.. code:: console
$ cat urls
https://github.com/jwilk/skeptica
https://metacpan.org/
https://www.debian.org/
ldaps://db.debian.org/
$ xargs skeptica < urls
https://github.com/jwilk/skeptica /usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt
https://metacpan.org/ /usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt
https://www.debian.org/ /usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt
ldaps://db.debian.org/ /usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt
Prerequisites
=============
* Perl ≥ 5.10
* `IO::Socket::SSL `_ ≥ 1.91
* `URI `_ ≥ 1.53
* CA certificate bundle unpacked at ``/usr/share/ca-certificates``
.. vim:ft=rst ts=3 sts=3 sw=3 et