Skip to content

Commit

Permalink
Merge pull request #422 from matteocorti/420-checking-microsoft-sql-e…
Browse files Browse the repository at this point in the history
…ncryption-in-transit-tls-cert-expiration

420 checking microsoft sql encryption in transit tls cert expiration
  • Loading branch information
matteocorti authored Oct 19, 2022
2 parents c93f20f + de0beb8 commit 79abfc0
Show file tree
Hide file tree
Showing 12 changed files with 394 additions and 94 deletions.
6 changes: 4 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ authors:
website: https://github.com/cbiedl
- name: chornberger-c2c
website: https://github.com/chornberger-c2c
- name: claudioth
website: https://github.com/claudioth
- name: d7415
website: https://github.com/d7415
- name: dupondje
Expand Down Expand Up @@ -236,8 +238,8 @@ authors:
given-names: "Дилян"
website: https://github.com/dilyanpalauzov
title: "check_ssl_cert"
version: 2.52.0
date-released: 2022-10-06
version: 2.53.0
date-released: 2022-10-19
url: "https://github.com/matteocorti/check_ssl_cert"
repository-code: "https://github.com/matteocorti/check_ssl_cert"
keywords:
Expand Down
1 change: 1 addition & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* ```tar``` and ```bzip2``` to build release packages
* ```ip``` or ```ifconfig``` to be able to use the ```-4``` and ```-6``` options
* [nectcat](https://nc110.sourceforge.io) for ```--ignore-connection-state```
* Python for the TDS (Tabular Data Stream) protocol check

## Development

Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* 2022-10-19 Version 2.53.0
* Implemented a check for MS SQL (Tabular Data Stream, TDS)
* Fixed a bug in the date computations with Perl
* 2022-10-06 Version 2.52.0
* Removed spurious debugging output
Expand Down
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ A POSIX shell script (that can be used as a Nagios/Icinga plugin) to check an SS
## Usage

```
Usage: check_ssl_cert -H host [OPTIONS]
check_ssl_cert -f file [OPTIONS]
Expand Down Expand Up @@ -192,7 +193,8 @@ Options:
ftp, ftps, http, https (default),
h2 (HTTP/2), imap, imaps, irc, ircs, ldap,
ldaps, mysql, pop3, pop3s, postgres,
sieve, smtp, smtps, xmpp, xmpp-server.
sieve, smtp, smtps, tds, xmpp,
xmpp-server.
ftp, imap, irc, ldap, pop3, postgres,
sieve, smtp: switch to TLS using StartTLS
--password source Password source for a local certificate,
Expand All @@ -201,6 +203,7 @@ Options:
--prometheus Generate Prometheus/OpenMetrics output
--proxy proxy Set http_proxy and the s_client -proxy
option
--python-bin path Path of the python binary to be used
-q,--quiet Do not produce any output
-r,--rootcert path Root certificate or directory to be used
for certificate validation
Expand All @@ -221,13 +224,6 @@ Options:
--require-purpose usage Require the specified key usage (can be
specified more then once)
--require-purpose-critical The key usage must be critical
--require-security-headers Require all the HTTP security headers:
Content-Security-Policy
Permissions-Policy
Referrer-Policy
strict-transport-security
X-Content-Type-Options
X-Frame-Options
--resolve ip Provide a custom IP address for the
specified host
--rootcert-dir path Root directory to be used for certificate
Expand Down Expand Up @@ -301,6 +297,13 @@ Deprecated options:
--require-security-header header require the specified HTTP
security header (e.g., X-Frame-Options)
(deprecated use --require-http-header)
--require-security-headers Require all the HTTP security headers:
Content-Security-Policy
Permissions-Policy
Referrer-Policy
strict-transport-security
X-Content-Type-Options
X-Frame-Options
--require-security-headers-path path the path to be used to fetch HTTP
security headers
--require-x-frame-options [path] Require the presence of the
Expand Down
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Removed spurious debugging output
* Implemented a check for MS SQL (Tabular Data Stream, TDS)
* Fixed a bug in the date computations with Perl
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.52.0
2.53.0
Loading

0 comments on commit 79abfc0

Please sign in to comment.