-
Bug
-
Resolution: Done
-
Minor
-
1.2.4.Final
-
None
In org.wildfly.security.http.impl.DigestAuthenticationMechanism.digestUriMatchesRequestUri(org.wildfly.security.http.HttpServerRequest, byte[]): Found a call to a method which will perform a byte to String (or String to byte) conversion, and will assume that the default platform encoding is suitable.
private boolean digestUriMatchesRequestUri(HttpServerRequest request, byte[] digestUri) { if (!validateUri) { return true; } java.net.URI requestURI = request.getRequestURI(); String digestUriStr = new String(digestUri);