Security issue - passwords must not be written in logs
This commit is contained in:
parent
916341f634
commit
779aace1cc
|
@ -173,7 +173,7 @@ public class MUser extends X_AD_User
|
||||||
{
|
{
|
||||||
if (name == null || name.length() == 0 || password == null || password.length() == 0)
|
if (name == null || name.length() == 0 || password == null || password.length() == 0)
|
||||||
{
|
{
|
||||||
s_log.warning ("Invalid Name/Password = " + name + "/" + password);
|
s_log.warning ("Invalid Name/Password = " + name);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
boolean hash_password = MSysConfig.getBooleanValue(MSysConfig.USER_PASSWORD_HASH, false);
|
boolean hash_password = MSysConfig.getBooleanValue(MSysConfig.USER_PASSWORD_HASH, false);
|
||||||
|
|
Loading…
Reference in New Issue