I am trying to see if a user is disabled or not (using PHP and adLDAP). I can authenticate a user. The example I am using is this:
$user = 'jdoe'
$user_info=$adldap->user_info($user,array("useraccountcontrol"));
$enabled = (($user_info[0]['useraccountcontrol'][0] & 2) == 0);
The issue is that I always get 1 even for non-existing accounts. The example is taken from here: adLDAP examples
I am connecting to LDAP as normal user. I do not have admin rights.