当我执行时:
openssl s_client -connect google.com:443
openssl s_client -connect government.ru:443
这给了我有价值的输出,但我想openssl
关闭连接并退出返回一个整数退出代码(不同),以便我可以这样做
echo "Domain?";read d
openssl s_client -connect "$d":443
if [[ "$?" -eq 0 ]]; then
echo "Encrypted"; do_sth
else
echo "Plain."; do_sth_else
fi
如果运行
openssl s_client -connect google.com:443
并且 TLS 连接成功,该命令将等待标准输入上的数据,以便通过连接发送。如果您运行
openssl s_client -connect google.com:443 </dev/null
并且连接成功,它将立即关闭,您将获得您正在寻找的行为。s_client
识别Q
命令。openssl 文档:或者:
或者: