aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-31 19:17:52 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-31 19:17:52 +1300
commit952acc0a1c10f07d294fb730c4b9ecf92fa07ce0 (patch)
treeef74c2bc0ae81476d195682c1faa60aa843166b2 /bin
parentBump version number to v0.1.0 (diff)
downloaddotfiles-952acc0a1c10f07d294fb730c4b9ecf92fa07ce0.tar.gz
dotfiles-952acc0a1c10f07d294fb730c4b9ecf92fa07ce0.zip
Remove -no_ssl2 from osc(1df)
Modern OpenSSL builds, at least on Debian Stretch, don't even include this as an option anymore, because SSLv2 has been so broken for so long. There's not really much point trying to keep it. $ openssl version OpenSSL 1.1.0f 25 May 2017 $ openssl -no_ssl2 Invalid command '-no_ssl2'; type "help" for a list.
Diffstat (limited to 'bin')
-rw-r--r--bin/osc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/osc.sh b/bin/osc.sh
index b145b5cd..47d62089 100644
--- a/bin/osc.sh
+++ b/bin/osc.sh
@@ -22,7 +22,7 @@ fi
## The actual openssl(1ssl) and subcommand call
set -- "$@" openssl s_client
## No insecure SSL methods
-set -- "$@" -no_ssl2 -no_ssl3
+set -- "$@" -no_ssl3
## Don't dump nonsense to terminal, and don't renegotiate on R or quit on Q
set -- "$@" -quiet
## But do cut the connection if I issue ^D, even though I just set -quiet