Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ecno92/cert-info
simple tool to check the certificate of a domain
https://github.com/ecno92/cert-info
Last synced: 29 days ago
JSON representation
simple tool to check the certificate of a domain
- Host: GitHub
- URL: https://github.com/ecno92/cert-info
- Owner: Ecno92
- License: mit
- Created: 2018-06-26T09:26:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-26T09:37:06.000Z (over 6 years ago)
- Last Synced: 2024-11-06T22:43:49.618Z (3 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cert-info
A tool to check the certificate of a domain.
## Usage
```
user@Computer:~/Projects/cert-info$ cert-info example.com
{'OCSP': ('http://ocsp.digicert.com',),
'caIssuers': ('http://cacerts.digicert.com/DigiCertSHA2HighAssuranceServerCA.crt',),
'crlDistributionPoints': ('http://crl3.digicert.com/sha2-ha-server-g4.crl',
'http://crl4.digicert.com/sha2-ha-server-g4.crl'),
'issuer': ((('countryName', 'US'),),
(('organizationName', 'DigiCert Inc'),),
(('organizationalUnitName', 'www.digicert.com'),),
(('commonName', 'DigiCert SHA2 High Assurance Server CA'),)),
'notAfter': 'Nov 28 12:00:00 2018 GMT',
'notBefore': 'Nov 3 00:00:00 2015 GMT',
'serialNumber': '0E64C5FBC236ADE14B172AEB41C78CB0',
'subject': ((('countryName', 'US'),),
(('stateOrProvinceName', 'California'),),
(('localityName', 'Los Angeles'),),
(('organizationName',
'Internet Corporation for Assigned Names and Numbers'),),
(('organizationalUnitName', 'Technology'),),
(('commonName', 'www.example.org'),)),
'subjectAltName': (('DNS', 'www.example.org'),
('DNS', 'example.com'),
('DNS', 'example.edu'),
('DNS', 'example.net'),
('DNS', 'example.org'),
('DNS', 'www.example.com'),
('DNS', 'www.example.edu'),
('DNS', 'www.example.net')),
'version': 3}```