summaryrefslogtreecommitdiff
path: root/openssl-connect
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2013-09-18 12:31:30 +0200
committerPeter Wu <lekensteyn@gmail.com>2013-09-18 12:31:30 +0200
commit5f52e65f4bd7d72f760af19f3d246bfcba643417 (patch)
treed86d0278d7c7c653074b7bc452f8c12aed597001 /openssl-connect
parente4fffb89be1b281f58b5ed2855d75357f6c688d2 (diff)
downloadwireshark-notes-5f52e65f4bd7d72f760af19f3d246bfcba643417.tar.gz
Disable compression for openssl-connect
This makes it easier to see relations in plaintext (if any).
Diffstat (limited to 'openssl-connect')
-rwxr-xr-xopenssl-connect1
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-connect b/openssl-connect
index af6fa9b..3fa205d 100755
--- a/openssl-connect
+++ b/openssl-connect
@@ -89,6 +89,7 @@ while read cipher; do
# It is expected that the other side closes the connection
printf "GET / HTTP/1.0\r\n\r\n" |
openssl s_client -connect "$host:$port" -ign_eof -cipher "$cipher" \
+ -no_comp \
-msg 2>&1 | s_client_client_random
done