Skip to content

Commit

Permalink
ldap: Update examples to reflect latest schema
Browse files Browse the repository at this point in the history
  • Loading branch information
awelzel committed Jan 5, 2024
1 parent 2008fb3 commit 05b896c
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions logs/ldap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ An example of an :file:`ldap.log`.
"id.resp_p": 3268,
"message_id": 3,
"version": 3,
"opcodes": ["bind simple"],
"results": ["success"],
"objects": ["CN=xxxxxxxx,OU=Users,OU=Accounts,DC=xx,DC=xxx,DC=xxxxx,DC=net"],
"arguments": ["REDACTED"]
"opcode": "bind simple",
"result": "success",
"object": "CN=xxxxxxxx,OU=Users,OU=Accounts,DC=xx,DC=xxx,DC=xxxxx,DC=net",
"argument": "REDACTED"
}


Expand All @@ -91,17 +91,20 @@ from the log.
"id.resp_h": "10.0.0.2",
"id.resp_p": 3268,
"message_id": 2,
"scopes": ["tree"],
"derefs": ["always"],
"base_objects": [DC=xx,DC=xxx,DC=xxxxx,DC=net"], "result_count": 1,
"results": ["success"],
"scope": "tree",
"deref_aliases": "always",
"base_object": "DC=xx,DC=xxx,DC=xxxxx,DC=net",
"result_count": 1,
"result": "success",
"filter": "(&(objectclass=*)(sAMAccountName=xxxxxxxx))",
"attributes": ["sAMAccountName"]
"attributes": [
"sAMAccountName"
]
}


Conclusion
==========

The Zeek LDAP logs provide additional insights that help improve observability
into this protocol.
into this protocol.

0 comments on commit 05b896c

Please sign in to comment.