0

Message Analyzer seems to have no UI way to parse protocols on non-default ports. I have TLS server running on non standard port (not 443) and Message Analyzer won't parse captured as TLS.

Andrii
  • 2,402
  • 1
  • 19
  • 17

1 Answers1

0

Quick workaround is to update TLS port from 443 to needed port number in C:\Users\\AppData\Local\Microsoft\MessageAnalyzer\OPNAndConfiguration\OPNs\CoreNetworking\TLS.opn

// http://www.iana.org/assignments/port-numbers
pattern Port = enum ushort
{
...
    HTTPS       = 443 
Andrii
  • 2,402
  • 1
  • 19
  • 17