I have an application that uses the PHP LDAP library to connect to the Windows Active Directory:
$ds = ldap_connect($ini['ad_server']) or die("Could not connect");
$admin = $ini['ad_user'];
$passwd = $ini['ad_password'];
$passwd = base64_decode($passwd);
$dn = $ini['ad_basedn'];
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
$rInTouch = ldap_bind($ds, $admin, $passwd);
I am wondering if anyone knows if this upcoming patch "2020 LDAP channel binding and LDAP signing" coming from Microsoft will break any PHP applications that are using this ldap library.
Thanks in advance,
M