blob: 8295d58ef3a94c99cd8c17f4c94aaa647c1893fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
Generic App Layer Keywords
==========================
app-layer-protocol
------------------
Match on the detected app-layer protocol.
Syntax::
app-layer-protocol:[!]<protocol>;
Examples::
app-layer-protocol:ssh;
app-layer-protocol:!tls;
app-layer-protocol:failed;
A special value 'failed' can be used for matching on flows in which
protocol detection failed. This can happen if Suricata doesn't know
the protocol or when certain 'bail out' conditions happen.
.. _proto-detect-bail-out:
Bail out conditions
~~~~~~~~~~~~~~~~~~~
Protocol detection gives up in several cases:
* both sides are inspected and no match was found
* side A detection failed, side B has no traffic at all (e.g. FTP data channel)
* side A detection failed, side B has so little data detection is inconclusive
In these last 2 cases the ``app-layer-event:applayer_proto_detection_skipped``
is set.
app-layer-event
---------------
Match on events generated by the App Layer Parsers and the protocol detection
engine.
Syntax::
app-layer-event:<event name>;
Examples::
app-layer-event:applayer_mismatch_protocol_both_directions;
app-layer-event:http.gzip_decompression_failed;
Protocol Detection
~~~~~~~~~~~~~~~~~~
applayer_mismatch_protocol_both_directions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The toserver and toclient directions have different protocols. For example a
client talking HTTP to a SSH server.
applayer_wrong_direction_first_data
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Some protocol implementations in Suricata have a requirement with regards to
the first data direction. The HTTP parser is an example of this.
https://redmine.openinfosecfoundation.org/issues/993
applayer_detect_protocol_only_one_direction
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Protocol detection only succeeded in one direction. For FTP and SMTP this is
expected.
applayer_proto_detection_skipped
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Protocol detection was skipped because of :ref:`proto-detect-bail-out`.
|