Hey,
Try figuring out windows domain name (considering its an Active Directory ), something like this DC=
foobar, DC=victim, DC=com ( where foobar=windows domain for
victim.com) would let you bind (authenticate) with ldap server (and im assuming you are authenticated as you said anonymous bind). However often OU used to search availability of a user/object which returns you search entry is different than bind request objects,
Meaning if you have used base object as DC=foobar, DC=victim, DC=com with OU=users, OU=Objects for bind request, your search query will use a different OU like so OU=mailboxes, DC=foobar, DC=victim, DC=com or may be OU=Users, OU=mailboxes, DC=foobar, DC=victim, DC=com.
So try with common OUs and object classes to see if ldap server lets you query for users etc., (you need to specify scope, filter , size limit explicitly sometimes ).
Hope this helps.