We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f644974 commit 409466aCopy full SHA for 409466a
1 file changed
modules/webapp/src/main/java/org/apache/axis2/webapp/AdminActions.java
@@ -214,11 +214,6 @@ public Redirect login(HttpServletRequest req) {
214
return new Redirect(WELCOME).withParameter("failed", "true");
215
}
216
217
- if (password != null && !password.matches(HTTP_PARAM_VALUE_REGEX_WHITELIST_CHARS)) {
218
- log.error("login() received invalid 'password' param, redirecting to: " + WELCOME);
219
- return new Redirect(WELCOME).withParameter("failed", "true");
220
- }
221
-
222
if ((username == null) || (password == null) || username.trim().length() == 0
223
|| password.trim().length() == 0) {
224
0 commit comments