You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a security concern, as sensitive information (e.g., passwords) should not be exposed in logs. At most, such information should be logged at the debug level, or ideally, omitted entirely.
Relevant Code:
The issue occurs in the following line of code: ntlm_certsrv.go#L51
Proposed Solution:
If the password is necessary for debugging purposes, ensure it is only logged at the debug level
I am available to make the necessary changes and submit a pull request to address this issue if approved.
Steps to Reproduce:
Trigger the NTLM verification process.
Observe the info level logs for the printed password.
Severity:
High — This could potentially expose sensitive credentials in production logs.
Let me know if I should proceed with implementing the fix!
The text was updated successfully, but these errors were encountered:
Description:
In the current implementation, the password is being printed in the logs at the
info
level, as seen in the following log entry:This is a security concern, as sensitive information (e.g., passwords) should not be exposed in logs. At most, such information should be logged at the
debug
level, or ideally, omitted entirely.Relevant Code:
The issue occurs in the following line of code:
ntlm_certsrv.go#L51
Proposed Solution:
debug
levelI am available to make the necessary changes and submit a pull request to address this issue if approved.
Steps to Reproduce:
info
level logs for the printed password.Severity:
High — This could potentially expose sensitive credentials in production logs.
Let me know if I should proceed with implementing the fix!
The text was updated successfully, but these errors were encountered: