summaryrefslogtreecommitdiff
path: root/program/lib/Net
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-08-05 10:43:04 +0200
committerAleksander Machniak <alec@alec.pl>2014-08-05 10:43:04 +0200
commit62574214ce164edabd124a48a2f88a705aca4bfb (patch)
tree5820942acd30c78efcdaab84a9da945189a56bb7 /program/lib/Net
parentdb25c43e97f85121e9b14f0b4a2f2341e3a56966 (diff)
Do not log ldap bind passwords
Diffstat (limited to 'program/lib/Net')
-rw-r--r--program/lib/Net/LDAP3.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Net/LDAP3.php b/program/lib/Net/LDAP3.php
index 1b3ac73bb..3202f5aaf 100644
--- a/program/lib/Net/LDAP3.php
+++ b/program/lib/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");