Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit 87504ba

Browse files
committed
ldap: Note about StartTLS
1 parent 0a90c29 commit 87504ba

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

logs/ldap.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,36 @@ from the log.
103103
}
104104

105105

106+
StartTLS
107+
========
108+
109+
.. versionadded:: 7.0
110+
111+
Zeek's LDAP analyzer supports the
112+
`extended StartTLS <https://datatracker.ietf.org/doc/html/rfc4511#section-4.14>`_
113+
operation, handing off analysis to Zeek's TLS analyzer. The following shows an
114+
example :file:`ldap.log` entry for the StartTLS request.
115+
116+
.. code-block:: console
117+
118+
$ zeek -C LogAscii::use_json=T -r ldap-starttls.pcap
119+
$ jq < ldap.log
120+
{
121+
"ts": 1721218680.158341,
122+
"uid": "CW0qzo9A3QsrCWL4k",
123+
"id.orig_h": "127.0.0.1",
124+
"id.orig_p": 45936,
125+
"id.resp_h": "127.0.1.1",
126+
"id.resp_p": 389,
127+
"message_id": 1,
128+
"opcode": "extended",
129+
"result": "success",
130+
"object": "1.3.6.1.4.1.1466.20037 (StartTLS)"
131+
}
132+
133+
The :file:`conn.log`'s history field will contain ``ssl`` and ``ldap`` in
134+
the ``service`` field.
135+
106136
Conclusion
107137
==========
108138

0 commit comments

Comments
 (0)