This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

How to filter “encrypted alert” ?

0

is there any filter expression?

asked 08 Apr '15, 17:32

hoho's gravatar image

hoho
1111
accept rate: 0%

ssl.alert_message should work??

(08 Apr '15, 22:44) koundi

One Answer:

2

If wireshark already knows that the traffic is ssl protocol then

ssl.record.length > 2 and ssl.record.content_type == 21

should do the trick, given that other alerts are only 2 bytes long
A more generic filter should be

tcp.len>7 and ((tcp[12,20:2]==50:1503 and tcp[22]<=3)||(tcp[12,32:2]==80:1503 and tcp[34]<=3))

Regards Matthias

answered 09 Apr '15, 13:16

mrEEde's gravatar image

mrEEde
3.9k152270
accept rate: 20%