mirror of
https://github.com/ajnart/homarr.git
synced 2025-10-30 10:06:04 +01:00
chore: add extra information in the error logging that may be insecure
This commit is contained in:
@@ -38,9 +38,9 @@ const ldapLogin = (username: string, password: string) =>
|
|||||||
const client = ldap.createClient({
|
const client = ldap.createClient({
|
||||||
url: env.AUTH_LDAP_URI,
|
url: env.AUTH_LDAP_URI,
|
||||||
});
|
});
|
||||||
client.bind(username, password, (error, res) => {
|
client.bind(username, password, (error) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
reject('Invalid username or password');
|
reject(`Invalid username or password. ${error.code}-${error.name}:${error.message}`);
|
||||||
} else {
|
} else {
|
||||||
resolve(client);
|
resolve(client);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user