mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-197: Handle IllegalArgumentException when parsing state string.
This commit is contained in:
@@ -21,6 +21,7 @@ package org.apache.guacamole.auth.radius;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import com.google.inject.Provider;
|
||||
import java.lang.IllegalArgumentException;
|
||||
import java.nio.charset.Charset;
|
||||
import java.util.Arrays;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
@@ -161,7 +162,7 @@ public class AuthenticationProviderService {
|
||||
if (stateString == null) {
|
||||
logger.error("Could not retrieve RADIUS state.");
|
||||
logger.debug("Received null value while retrieving RADIUS state parameter.");
|
||||
throws new GuacamoleInvalidCredentialsException("Authentication error.", CredentialsInfo.USERNAME_PASSWORD);
|
||||
throw new GuacamoleInvalidCredentialsException("Authentication error.", CredentialsInfo.USERNAME_PASSWORD);
|
||||
}
|
||||
|
||||
byte[] stateBytes = DatatypeConverter.parseHexBinary(stateString);
|
||||
@@ -169,6 +170,11 @@ public class AuthenticationProviderService {
|
||||
challengeResponse,
|
||||
stateBytes);
|
||||
}
|
||||
catch (IllegalArgumentException e) {
|
||||
logger.error("Illegal argument while parsing RADIUS state string.", e.getMessage());
|
||||
logger.debug("Illegal argument found while parsing the RADIUS state string.", e);
|
||||
throw new GuacamoleInvalidCredentialsException("Authentication error.", CredentialsInfo.USERNAME_PASSWORD);
|
||||
}
|
||||
catch (GuacamoleException e) {
|
||||
logger.error("Cannot configure RADIUS server: {}", e.getMessage());
|
||||
logger.debug("Error configuring RADIUS server.", e);
|
||||
|
Reference in New Issue
Block a user