We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46dfcf9 + c6e65a1 commit 00af1f8Copy full SHA for 00af1f8
1 file changed
audit.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+# En audit.sh
3
+check_ssl() {
4
+ openssl s_client -connect $1:443 | grep "TLSv1.3"
5
+}
6
+check_db_encryption() {
7
+ psql -c "SHOW ssl;" | grep "on"
8
0 commit comments