Capture module: Difference between revisions

m
Line 183: Line 183:
|-
|-
|}
|}
:will match packets that contain the string(s) 'allegro' and/or 'allegra' and/or 'HTTP' anywhere in their payload. Please note that the use of regexp is case sensitive. You must use the (?i) modifier for case insensitive filtering.
:will case sensitive match packets that contain the string(s) 'allegro' and/or 'allegra' and/or 'HTTP' anywhere in the payload.
:NOTE: The use of regexp is CASE sensitive. You must use the (?i) modifier to enable case insensitive filtering.


* The expression
* The expression
Line 192: Line 193:
|}
|}
::will case insensitive match packets that contain the string(s) 'allegro' and/or 'http' anywhere in their payload.
::will case insensitive match packets that contain the string(s) 'allegro' and/or 'http' anywhere in their payload.
 
::will case insensitive match packets that contain the string(s) 'allegro' and/or 'http' anywhere in the payload.  NOTE: The use of regexp is CASE sensitive. You must use the (?i) modifier to enable case insensitive filtering.  <br />Captures can be limited to any amount of time or bytes, for example to capture only one minute or one megabyte of traffic.
Captures can be limited to any amount of time or bytes, for example to capture only one minute or one megabyte of traffic.


Below the list of filter criteria there is a button to actually start (or stop) the capture. In case the filter expression is invalid, the button is disabled.
Below the list of filter criteria there is a button to actually start (or stop) the capture. In case the filter expression is invalid, the button is disabled.
325

edits