I have been struggling with this for a while, I am trying to find the BitLocker Recovery Keys from AD using PHP, this is part of a tracking tool.
I can access the computer element, and I have access to the keys but when I check for objectClass=msFVE-RecoveryInformation
I dont get any data back.
I am accessing the computer element like this:
$adServer = "ADSERVER";
$ldap = ldap_connect( $adServer );
$usernamead = "user";
$password = "pass";
$ldaprdn = 'domina' . "\\" . $usernamead;
ldap_set_option( $ldap, LDAP_OPT_PROTOCOL_VERSION, 3 );
ldap_set_option( $ldap, LDAP_OPT_REFERRALS, 0 );
$bind = @ldap_bind( $ldap, $ldaprdn, $password );
$username = $_COOKIE['deviceusername'];
if ( $bind ) {
$filter="(&(Name=computername)(objectClass=computer))";
$result = ldap_search( $ldap, "dc=domain,dc=ads", $filter );
ldap_sort( $ldap, $result, "sn" );
$info = ldap_get_entries( $ldap, $result );
for ( $i=0; $i<$info["count"]; $i++ ) {
if ( $info['count'] > 1 )
break;
print_r($info);
};
}
This is the code part I used in our internal IT support web page. May not be beautiful but it works.
In the end just iterate over the result if its an array:
Hope that helps someone. Downside of this approach is that if you search for a KeyID search takes about 2-5 Seconds to get results. (Our environment hast about 10000 computer objects below the defined LDAP search base)
PS don't forget input sanitation!