lib/ext

Aleksander Machniak machniak at kolabsys.com
Wed May 7 11:23:05 CEST 2014


 lib/ext/Net/LDAP3.php |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 94caeb4a74c5567475ca8e21a032cd71b2f4f716
Author: Aleksander Machniak <machniak at kolabsys.com>
Date:   Wed May 7 11:22:40 2014 +0200

    Do not log bind passwords (in debug mode)

diff --git a/lib/ext/Net/LDAP3.php b/lib/ext/Net/LDAP3.php
index 2561ffc..dd3775f 100644
--- a/lib/ext/Net/LDAP3.php
+++ b/lib/ext/Net/LDAP3.php
@@ -481,7 +481,7 @@ class Net_LDAP3
             return true;
         }
 
-        $this->_debug("C: Bind [dn: $bind_dn] [pass: $bind_pw]");
+        $this->_debug("C: Bind [dn: $bind_dn]");
 
         if (@ldap_bind($this->conn, $bind_dn, $bind_pw)) {
             $this->_debug("S: OK");
@@ -1435,7 +1435,7 @@ class Net_LDAP3
             $method = 'DIGEST-MD5';
         }
 
-        $this->_debug("C: Bind [mech: $method, authc: $authc, authz: $authz] [pass: $pass]");
+        $this->_debug("C: Bind [mech: $method, authc: $authc, authz: $authz]");
 
         if (ldap_sasl_bind($this->conn, null, $pass, $method, null, $authc, $authz)) {
             $this->_debug("S: OK");




More information about the commits mailing list