Wireshark-bugs: [Wireshark-bugs] [Bug 11372] SSL Decryption (RSA private key with p smaller than

Date: Fri, 17 Jul 2015 04:41:09 +0000

Comment # 4 on bug 11372 from
The command being run is

C:\buildbot\wireshark\wireshark-master-64\win7x64\build\test/run_and_catch_crashes
env APPDATA=C:\cygwin\tmp\tmp.IRacnjQHQ4\home
/cygdrive/c/buildbot/wireshark/wireshark-master-64/win7x64/build/cmbuild/run/RelWithDebInfo/tshark
-Tfields -e http.request.uri -o
ssl.keys_list:0.0.0.0,443,http,C:\\x5cbuildbot\\x5cwireshark\\x5cwireshark-master-64\\x5cwin7x64\\x5cbuild\\x5ctest\\x5ckeys\\x5crsa-p-lt-q.key
-r
C:\buildbot\wireshark\wireshark-master-64\win7x64\build\test\captures\/rsa-p-lt-q.pcap
-Y http

at least according to an echo command I added before the actual command.

In the code at the bottom of the script, the \\x5c's are interpreted by sed and
turned into backslashes.  They're not interpreted by sed here, so they just
turn into literal "\\x5c" in the string.

I'll try just duplicating the stuff done at the top of the script, and
construct the path to the file as a UN*X-style path and, on Windows, convert
that path, which is a Cygwin-style path, to a Windows-style path and pass that
to TShark.


You are receiving this mail because:
  • You are watching all bug changes.