From 9587c363f63b6b51937eb788b5b04a50b630d53b Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 27 Nov 2015 08:13:13 +0100 Subject: [PATCH] LdapConnection: Do not explicitly emit the bind password in the log --- library/Icinga/Protocol/Ldap/LdapConnection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Protocol/Ldap/LdapConnection.php b/library/Icinga/Protocol/Ldap/LdapConnection.php index 1cad06680..85714c92d 100644 --- a/library/Icinga/Protocol/Ldap/LdapConnection.php +++ b/library/Icinga/Protocol/Ldap/LdapConnection.php @@ -1199,7 +1199,7 @@ class LdapConnection implements Selectable, Inspectable . ($this->port ? ':' . $this->port : ''); if ($this->bound) { - $bindParams = ' -D "' . $this->bindDn . '"' . ($this->bindPw ? ' -w "' . $this->bindPw . '"' : ''); + $bindParams = ' -D "' . $this->bindDn . '"' . ($this->bindPw ? ' -W' : ''); } if ($deref === LDAP_DEREF_NEVER) {