We log the mail for invalid password reset attempts. As the email is provided by a user and the api is public this can be used by an attacker to forge log entries. This is vulnerable to https://cwe.mitre.org/data/definitions/117.html
This problem affects only application generated with jwt or session authentication. Applications using oauth are not vulnerable.
version 1.7.0.
In AccountResource.kt
you should change the line
log.warn("Password reset requested for non existing mail '$mail'");
to
log.warn("Password reset requested for non existing mail");
If you have any questions or comments about this advisory: * Open an issue in jhipster kotlin
{ "nvd_published_at": null, "github_reviewed_at": "2020-06-25T20:02:31Z", "severity": "MODERATE", "github_reviewed": true, "cwe_ids": [ "CWE-117" ] }