
Aplicación web Java mínima para reproducir CVE-2022-32532, una omisión de autenticación de RegExPatternMatcher de Apache Shiro mediante caracteres de nueva línea en las URL.
Esta es una aplicación web mínima para reproducir el CVE-2022-32532 (bypass de autenticación de Apache Shiro RegExPatternMatcher).
RegExPatternMatcher no ancla la expresión regular de forma correcta, lo que puede provocar un bypass de rutas. En concreto, usa la lógica de coincidencia de expresiones regulares por defecto de Java; cuando encuentra el símbolo . como expresión regular, ignora caracteres especiales como \r (%0d) y \n (%0a). Es necesario usar explícitamente un patrón de coincidencia basado en el modo PATTERN.DOTALL para procesar correctamente los símbolos \r y \n. Sin embargo, las versiones anteriores a shiro-1.9.1 usan la lógica de coincidencia por defecto, por lo que no pueden procesar correctamente \r y \n, lo que conduce al bypass de autenticación.Iniciar la aplicación
启动ShiroCve202232532Application
La URL que devuelve access denied con la autenticación normal de Shiro es la siguiente:
http://localhost:8080/permit/xxx, la xxx final se puede reemplazar por cualquier carácter.
La URL que omite la autenticación de Shiro y devuelve success es la siguiente:
http://localhost:8080/permit/xxx, es decir, insertar un salto de línea \n (%0a) y un retorno de carro \r (%0d) en la xxx final.
Solución
RegExPatternMatcher.java y PatternMatcher.java desde https://github.com/apache/shiro/blob/shiro-root-1.9.1/core/src/main/java/org/apache/shiro/util/.RegExPatternMatcher.class y ./*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.shiro.util;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
/**
* {@code PatternMatcher} implementation that uses standard {@link java.util.regex} objects.
*
* @see Pattern
* @since 1.0
*/
public class RegExPatternMatcher implements PatternMatcher {
private static final int DEFAULT = Pattern.DOTALL;
private static final int CASE_INSENSITIVE = DEFAULT | Pattern.CASE_INSENSITIVE;
private boolean caseInsensitive = false;
/**
* Simple implementation that merely uses the default pattern comparison logic provided by the
* JDK.
* <p/>This implementation essentially executes the following:
* <pre>
* Pattern p = Pattern.compile(pattern, Pattern.DOTALL);
* Matcher m = p.matcher(source);
* return m.matches();</pre>
* @param pattern the pattern to match against
* @param source the source to match
* @return {@code true} if the source matches the required pattern, {@code false} otherwise.
*/
public boolean matches(String pattern, String source) {
if (pattern == null) {
throw new IllegalArgumentException("pattern argument cannot be null.");
}
Pattern p = Pattern.compile(pattern, caseInsensitive ? CASE_INSENSITIVE : DEFAULT);
Matcher m = p.matcher(source);
return m.matches();
}
/**
* Returns true if regex match should be case-insensitive.
* @return true if regex match should be case-insensitive.
*/
public boolean isCaseInsensitive() {
return caseInsensitive;
}
/**
* Adds the Pattern.CASE_INSENSITIVE flag when compiling patterns.
* @param caseInsensitive true if patterns should match case-insensitive.
*/
public void setCaseInsensitive(boolean caseInsensitive) {
this.caseInsensitive = caseInsensitive;
}
}
PatternMatcher.class.class en la ruta org/apache/shiro/util/ dentro de shiro-core-1.6.0.jar.RegExPatternMatcher.java de shiro-core-1.9.1 a este caso, renombrándolo como RegExPatternMatcher191.java, y luego cambiar new RegExPatternMatcher() en la línea 15 de MyFilter y en la línea 29 de MyShiroFilterFactoryBean por new RegExPatternMatcher191().RegExPatternMatcher en shiro-core-1.9.1 es la siguiente: