Skip to content

Commit

Permalink
fix(jans-auth-server): corrected log vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed Mar 21, 2022
1 parent d71cbe8 commit 1000a60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public StatResponse buildResponse(List<String> months) {
final StatResponse cachedResponse = responseCache.getIfPresent(cacheKey);
if (cachedResponse != null) {
if (log.isTraceEnabled()) {
log.trace("Get stat response from cache for: {}", cacheKey);
log.trace("Get stat response from cache for: {}", escapeLog(cacheKey));
}
return cachedResponse;
}
Expand Down

0 comments on commit 1000a60

Please sign in to comment.