
सीवीई-2022-32532 को पुन: उत्पन्न करने के लिए न्यूनतम जावा वेब एप्लिकेशन, जो यूआरएल में न्यूलाइन वर्णों के माध्यम से अपाचे शिरो RegExPatternMatcher प्रमाणीकरण बाईपास है।
यह CVE-2022-32532 (Apache Shiro RegExPatternMatcher प्रमाणीकरण बाइपास) के पुनरुत्पादन के लिए एक न्यूनतम वेब एप्लिकेशन है।
RegExPatternMatcher रेगुलर एक्सप्रेशन को सही ढंग से एंकर नहीं करता है, जिससे पाथ बाइपास हो सकता है। विशेष रूप से, यह जावा के डिफ़ॉल्ट रेगुलर एक्सप्रेशन मैचिंग लॉजिक का उपयोग करता है। जब . प्रतीक को रेगुलर एक्सप्रेशन के रूप में उपयोग किया जाता है, तो यह \r (%0d) और \n (%0a) जैसे विशेष प्रतीकों को अनदेखा कर देता है। \r और \n को सही ढंग से संभालने के लिए PATTERN.DOTALL मोड पर आधारित रेगुलर मैचिंग नियमों का उपयोग करना अनिवार्य है। shiro-1.9.1 से निचले संस्करण डिफ़ॉल्ट रेगुलर मैचिंग लॉजिक का उपयोग करते हैं, इसलिए वे \r और \n को सही ढंग से संभाल नहीं पाते हैं, जिससे प्रमाणीकरण बाइपास होता है।एप्लिकेशन प्रारंभ करें
启动ShiroCve202232532Application
सामान्य शिरो प्रमाणीकरण के माध्यम से access denied देने वाला URL इस प्रकार है: http://localhost:8080/permit/xxx, अंतिम xxx को किसी भी वर्ण से बदला जा सकता है।
शिरो प्रमाणीकरण को बाइपास करके success देने वाला URL इस प्रकार है:
http://localhost:8080/permit/xxx, अर्थात अंतिम xxx में न्यूलाइन \n (%0a) और कैरिज रिटर्न \r (%0d) डालें।
समाधान
RegExPatternMatcher.java और PatternMatcher.java की पूरी सामग्री कॉपी करें।RegExPatternMatcher.class और PatternMatcher.class में कंपाइल करें।shiro-core-1.6.0.jar के org/apache/shiro/util/ निर्देशिका में रखें।/*
* 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;
}
}
shiro-core-1.9.1 के RegExPatternMatcher.java कोड को कॉपी करके RegExPatternMatcher191.java नाम दिया गया, फिर MyFilter की पंक्ति 15 और MyShiroFilterFactoryBean की पंक्ति 29 में new RegExPatternMatcher() को new RegExPatternMatcher191() में बदल दिया गया।shiro-core-1.9.1 में RegExPatternMatcher का कार्यान्वयन इस प्रकार है: