Review Note
Last Update: 04/27/2023 06:04 AM
Current Deck: Software Security
New Card (Unpublished)Currently Published Content
Front
Back
No published tags.
Pending Suggestions
Field Change Suggestions:
Front
Commit #1535
What does the following LDAP query do?
(&(!(cn=Tim Howes))
(objectClass=Person)
(|(sn=Jensen)(cn=Babs J*))
(o=univ*of*mich*))
(&(!(cn=Tim Howes))
(objectClass=Person)
(|(sn=Jensen)(cn=Babs J*))
(o=univ*of*mich*))
Back
Commit #1535The LDAP query searches for all Person objects in the University of Michigan organization.
The query filters out any objects with a common name of "Tim Howes".
The query then narrows the search to objects with a surname of "Jensen" or a common name starting with "Babs J".
The final filter searches for objects with an organization name starting with "univ" and containing "of" and "mich".