php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #77462 LDAPBIND crashes to OS
Submitted: 2019-01-15 14:00 UTC Modified: 2019-01-15 17:33 UTC
From: adrian dot burla at gmail dot com Assigned:
Status: Duplicate Package: LDAP related
PHP Version: 7.2.14 OS: Windows
Private report: No CVE-ID: None
 [2019-01-15 14:00 UTC] adrian dot burla at gmail dot com
Description:
------------
LDAPBIND causes the script to crash to OS. Sample code below. It works as expected in all previous versions of PHP 7.2.x, 7.1.x, 7.0.x etc. Not tested with 7.3.1.

Test script:
---------------
$ldapconn = ldap_connect('ldaps://my.ldap.url');
if ($ldapconn) {
    try {		
        $ldapbind = ldap_bind($ldapconn, 'myuser', 'mypass');
	echo 'This is never displayed';
    } catch (Exception $e) {
        echo 'This never gets displayed';
    }
}




Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-01-15 17:33 UTC] ab@php.net
-Status: Open +Status: Duplicate
 [2019-01-15 17:33 UTC] ab@php.net
Please check bug #77440 and give feedback there.

Thanks.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 04:01:30 2024 UTC