How can I query an object using LDAP with ObjectSID with PHP or any language for that matter? I have found a ton of "solutions" that don't really makie sense and none really explain the source of the ObjectSID used except that it's binary.
For example, I've done an initial search and have retrieved the ObjectSID for future use. The problem is the returned ObjectSID seems to be in binary. How do I send that binary back to LDAP using PHP's ldap_search?
I've read that I should convert the value to Hex so I've done a bin2hex($ObjectSID), but the value that I see via an LDAP browser: S-1-5-21-1851920287-2048563450-226493979-1120 doesn't match my resulting value: 0105000000000005150000009f0f626efa981a7a1b06800d60040000
Anyone have a clear answer?