成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術文章
文章詳情頁

spring mvc url匹配禁用后綴訪問操作

瀏覽:2日期:2023-06-30 17:48:53
spring mvc url匹配禁用后綴訪問

在spring mvc中默認 訪問url 加任意后綴名都能訪問

比如:你想訪問 /login ,但是通過 /login.do /login.action /login.json 都能訪問

通常來說可能沒有影響,但對于權限控制,這就嚴重了。

權限控制通常有兩種思路:1)弱權限控制

允許所有url通過,僅對個別重要的url做權限控制。此種方式比較簡單,不需要對所有url資源進行配置,只配置重要的資源。

2)強權限控制

默認禁止所有url請求通過,僅開放授權的資源。此種方式對所有的url資源進行控制。在系統種需要整理所有的請求,或者某一目錄下所有的url資源。這種方式安全控制比較嚴格,操作麻煩,但相對安全。

如果用第二種方式,則上面spring mvc的訪問策略對安全沒有影響。

但如果用第一種安全策略,則會有很大的安全風險。

例如:我們控制了/login 的訪問,但是我們默認除/login的資源不受權限控制約束,那么攻擊者就可以用 /login.do /login.xxx 來訪問我們的資源。

在spring 3.1之后,url找對應方法的處理步驟,第一步,直接調用RequestMappingHandlerMapping查找到相應的處理方法,第二步,調用RequestMappingHandlerAdapter進行處理

我們在RequestMappingHandlerMapping中可以看到

/** * Whether to use suffix pattern match for registered file extensions only * when matching patterns to requests. * <p>If enabled, a controller method mapped to '/users' also matches to * '/users.json' assuming '.json' is a file extension registered with the * provided {@link #setContentNegotiationManager(ContentNegotiationManager) * contentNegotiationManager}. This can be useful for allowing only specific * URL extensions to be used as well as in cases where a '.' in the URL path * can lead to ambiguous interpretation of path variable content, (e.g. given * '/users/{user}' and incoming URLs such as '/users/john.j.joe' and * '/users/john.j.joe.json'). * <p>If enabled, this flag also enables * {@link #setUseSuffixPatternMatch(boolean) useSuffixPatternMatch}. The * default value is {@code false}. */public void setUseRegisteredSuffixPatternMatch(boolean useRegisteredSuffixPatternMatch) { this.useRegisteredSuffixPatternMatch = useRegisteredSuffixPatternMatch; this.useSuffixPatternMatch = (useRegisteredSuffixPatternMatch || this.useSuffixPatternMatch);}

那么如何來配置呢?

<mvc:annotation-driven> <mvc:path-matching suffix-pattern='false' /> </mvc:annotation-driven>

在匹配模式時是否使用后綴模式匹配,默認值為true。這樣你想訪問 /login ,通過 /login.* 就不能訪問了。

spring mvc 之 請求url 帶后綴的情況

RequestMappingInfoHandlerMapping 在處理http請求的時候, 如果 請求url 有后綴,如果找不到精確匹配的那個@RequestMapping方法。

那么,就把后綴去掉,然后.* 去匹配,這樣,一般都可以匹配。 比如有一個@RequestMapping('/rest'), 那么精確匹配的情況下, 只會匹配/rest請求。

但如果我前端發來一個 /rest.abcdef 這樣的請求, 又沒有配置 @RequestMapping('/rest.abcdef') 這樣映射的情況下, 那么@RequestMapping('/rest') 就會生效。

原理呢?處理鏈是這樣的:

at org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.getMatchingPattern(PatternsRequestCondition.java:254)at org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.getMatchingPatterns(PatternsRequestCondition.java:230)at org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.getMatchingCondition(PatternsRequestCondition.java:210)at org.springframework.web.servlet.mvc.method.RequestMappingInfo.getMatchingCondition(RequestMappingInfo.java:214)at org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping.getMatchingMapping(RequestMappingInfoHandlerMapping.java:79)at org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping.getMatchingMapping(RequestMappingInfoHandlerMapping.java:56)at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.addMatchingMappings(AbstractHandlerMethodMapping.java:358)at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.lookupHandlerMethod(AbstractHandlerMethodMapping.java:328)at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.getHandlerInternal(AbstractHandlerMethodMapping.java:299)at org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.getHandlerInternal(AbstractHandlerMethodMapping.java:57)at org.springframework.web.servlet.handler.AbstractHandlerMapping.getHandler(AbstractHandlerMapping.java:299)at org.springframework.web.servlet.DispatcherServlet.getHandler(DispatcherServlet.java:1104)at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:916)關鍵是PatternsRequestCondition, 具體來說是這個方法:

AbstractHandlerMethodMapping 的getHandlerInternal: protected HandlerMethod getHandlerInternal(HttpServletRequest request) throws Exception {String lookupPath = this.getUrlPathHelper().getLookupPathForRequest(request);if (this.logger.isDebugEnabled()) { this.logger.debug('Looking up handler method for path ' + lookupPath);}HandlerMethod handlerMethod = this.lookupHandlerMethod(lookupPath, request);// 這里是關鍵,它去尋找,找到了就找到了,找不到就不會再去尋找了if (this.logger.isDebugEnabled()) { if (handlerMethod != null) {this.logger.debug('Returning handler method [' + handlerMethod + ']'); } else {this.logger.debug('Did not find handler method for [' + lookupPath + ']'); }}return handlerMethod != null ? handlerMethod.createWithResolvedBean() : null; } protected HandlerMethod lookupHandlerMethod(String lookupPath, HttpServletRequest request) throws Exception {List<AbstractHandlerMethodMapping<T>.Match> matches = new ArrayList();List<T> directPathMatches = (List)this.urlMap.get(lookupPath); // directPathMatches, 直接匹配, 也可以說是 精確匹配if (directPathMatches != null) { this.addMatchingMappings(directPathMatches, matches, request);// 如果能夠精確匹配, 就會進來這里}if (matches.isEmpty()) { this.addMatchingMappings(this.handlerMethods.keySet(), matches, request);// 如果無法精確匹配, 就會進來這里}if (!matches.isEmpty()) { Comparator<AbstractHandlerMethodMapping<T>.Match> comparator = new AbstractHandlerMethodMapping.MatchComparator(this.getMappingComparator(request)); Collections.sort(matches, comparator); if (this.logger.isTraceEnabled()) {this.logger.trace('Found ' + matches.size() + ' matching mapping(s) for [' + lookupPath + '] : ' + matches); } AbstractHandlerMethodMapping<T>.Match bestMatch = (AbstractHandlerMethodMapping.Match)matches.get(0); if (matches.size() > 1) {AbstractHandlerMethodMapping<T>.Match secondBestMatch = (AbstractHandlerMethodMapping.Match)matches.get(1);if (comparator.compare(bestMatch, secondBestMatch) == 0) { Method m1 = bestMatch.handlerMethod.getMethod(); Method m2 = secondBestMatch.handlerMethod.getMethod(); throw new IllegalStateException('Ambiguous handler methods mapped for HTTP path ’' + request.getRequestURL() + '’: {' + m1 + ', ' + m2 + '}');} } this.handleMatch(bestMatch.mapping, lookupPath, request); return bestMatch.handlerMethod;} else { return this.handleNoMatch(this.handlerMethods.keySet(), lookupPath, request);} }public List<String> getMatchingPatterns(String lookupPath) {List<String> matches = new ArrayList();Iterator var3 = this.patterns.iterator();while(var3.hasNext()) { String pattern = (String)var3.next(); // pattern 是 @RequestMapping 提供的映射 String match = this.getMatchingPattern(pattern, lookupPath); // lookupPath + .* 后能夠匹配pattern, 那么就不為空 if (match != null) {matches.add(match);// 對于有后綴的情況, .* 后 }}Collections.sort(matches, this.pathMatcher.getPatternComparator(lookupPath));return matches; } 最關鍵是這里 getMatchingPatterns : private String getMatchingPattern(String pattern, String lookupPath) {if (pattern.equals(lookupPath)) { return pattern;} else { if (this.useSuffixPatternMatch) {if (!this.fileExtensions.isEmpty() && lookupPath.indexOf(46) != -1) { Iterator var5 = this.fileExtensions.iterator(); while(var5.hasNext()) {String extension = (String)var5.next();if (this.pathMatcher.match(pattern + extension, lookupPath)) { return pattern + extension;} }} else { boolean hasSuffix = pattern.indexOf(46) != -1; if (!hasSuffix && this.pathMatcher.match(pattern + '.*', lookupPath)) {return pattern + '.*'; // 關鍵是這里 }} } if (this.pathMatcher.match(pattern, lookupPath)) {return pattern; } else {return this.useTrailingSlashMatch && !pattern.endsWith('/') && this.pathMatcher.match(pattern + '/', lookupPath) ? pattern + '/' : null; }} }

而對于AbstractUrlHandlerMapping ,匹配不上就是匹配不上, 不會進行 +.* 后在匹配。

關鍵方法是這個:

protected Object lookupHandler(String urlPath, HttpServletRequest request) throws Exception {Object handler = this.handlerMap.get(urlPath);if (handler != null) { if (handler instanceof String) {String handlerName = (String)handler;handler = this.getApplicationContext().getBean(handlerName); } this.validateHandler(handler, request); return this.buildPathExposingHandler(handler, urlPath, urlPath, (Map)null);} else { List<String> matchingPatterns = new ArrayList(); Iterator var5 = this.handlerMap.keySet().iterator(); while(var5.hasNext()) {String registeredPattern = (String)var5.next();if (this.getPathMatcher().match(registeredPattern, urlPath)) { matchingPatterns.add(registeredPattern);} } String bestPatternMatch = null; Comparator<String> patternComparator = this.getPathMatcher().getPatternComparator(urlPath); if (!matchingPatterns.isEmpty()) {Collections.sort(matchingPatterns, patternComparator);if (this.logger.isDebugEnabled()) { this.logger.debug('Matching patterns for request [' + urlPath + '] are ' + matchingPatterns);}bestPatternMatch = (String)matchingPatterns.get(0); } if (bestPatternMatch != null) {handler = this.handlerMap.get(bestPatternMatch);String pathWithinMapping;if (handler instanceof String) { pathWithinMapping = (String)handler; handler = this.getApplicationContext().getBean(pathWithinMapping);}this.validateHandler(handler, request);pathWithinMapping = this.getPathMatcher().extractPathWithinPattern(bestPatternMatch, urlPath);Map<String, String> uriTemplateVariables = new LinkedHashMap();Iterator var9 = matchingPatterns.iterator();while(var9.hasNext()) { String matchingPattern = (String)var9.next(); if (patternComparator.compare(bestPatternMatch, matchingPattern) == 0) {Map<String, String> vars = this.getPathMatcher().extractUriTemplateVariables(matchingPattern, urlPath);Map<String, String> decodedVars = this.getUrlPathHelper().decodePathVariables(request, vars);uriTemplateVariables.putAll(decodedVars); }}if (this.logger.isDebugEnabled()) { this.logger.debug('URI Template variables for request [' + urlPath + '] are ' + uriTemplateVariables);}return this.buildPathExposingHandler(handler, bestPatternMatch, pathWithinMapping, uriTemplateVariables); } else {return null; }} }

當然, 或許我們可以設置自定義的PathMatcher ,從而到達目的。 默認的 是AntPathMatcher 。

以上為個人經驗,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: Spring
相關文章:
成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久
精品一区二区三区视频| 69久久99精品久久久久婷婷 | 香港成人在线视频| 日韩精品一区二区三区三区免费| 成人性生交大片免费看中文网站| 亚洲精品菠萝久久久久久久| 日韩一级高清毛片| 99综合视频| 91麻豆视频网站| 日本亚洲一区二区| 欧美国产激情二区三区| 亚洲区国产区| 亚洲精品激情| 蜜臀a∨国产成人精品| 中文字幕制服丝袜成人av| 日韩亚洲电影在线| 欧美无人高清视频在线观看| 国产亚洲精品v| 国精品一区二区| 91论坛在线播放| 国产白丝网站精品污在线入口| 日韩av在线播放中文字幕| 亚洲黄色片在线观看| 国产精品久久久久一区| 欧美另类一区二区三区| 久久av一区二区三区| 在线观看一区| 精品福利电影| 亚洲精选视频在线| 亚洲精品日韩专区silk| 亚洲欧美日本在线| 亚洲精品免费看| 久久久久久久电影| 久久综合色婷婷| 国产调教视频一区| 欧美国产日韩亚洲一区| 中文字幕av一区 二区| 欧美电影免费观看高清完整版| 欧美日韩国产美| 欧美一区二区网站| 在线播放中文字幕一区| 欧美日韩一区二区三区四区五区 | 欧美午夜精品理论片a级大开眼界| 高清不卡在线观看av| 风间由美一区二区三区在线观看| 国产一区二区精品久久| 成人一区在线观看| 成人午夜电影网站| 麻豆91在线观看| 亚洲电影在线播放| 日韩在线a电影| 一区二区视频免费在线观看| 亚洲国产精品尤物yw在线观看| 美女mm1313爽爽久久久蜜臀| 国产乱码精品一品二品| 91麻豆.com| 免费永久网站黄欧美| 91麻豆精品国产91久久久久| 国产婷婷精品av在线| 国产亚洲成aⅴ人片在线观看 | 国产无人区一区二区三区| 成人免费在线视频| 偷窥国产亚洲免费视频| 狠狠色狠狠色合久久伊人| 成人av中文字幕| 国内精品久久国产| 国产一级精品aaaaa看| 欧美手机在线视频| 久久久影视传媒| 亚洲综合精品久久| 国产成人在线看| 99免费精品视频| 日本欧美一区二区三区乱码| 91美女蜜桃在线| 色哦色哦哦色天天综合| 国产亚洲短视频| 蜜臀av一区二区在线观看| 99精品视频免费在线观看| 亚洲永久免费| www国产成人免费观看视频 深夜成人网| 亚洲精品国产第一综合99久久| 久久99精品久久久久久动态图| 欧美啪啪一区| 91麻豆精品国产自产在线 | 国产精品国产三级国产a| 韩国欧美国产一区| 亚洲一区二区毛片| 国产农村妇女精品| 国产高清精品网站| 色噜噜狠狠一区二区三区果冻| 国产日韩亚洲欧美综合| 久久99国产精品久久| 国产精品社区| 久久奇米777| 日韩电影免费在线| 最新亚洲激情| 国产精品视频第一区| 粉嫩一区二区三区在线看| 色天天综合久久久久综合片| 中文字幕亚洲精品在线观看| 欧美一区二区在线| 久久午夜羞羞影院免费观看| 国产精品资源在线| 欧美日韩国产一级| 九九**精品视频免费播放| 午夜在线精品偷拍| 亚洲免费在线电影| 成人国产在线观看| 欧美三级视频在线观看| 日本不卡一二三| 欧洲生活片亚洲生活在线观看| 午夜影院久久久| 久久亚洲精选| 亚洲欧洲综合另类| 激情综合网址| 亚洲猫色日本管| 一区二区黄色| 亚洲一区二三区| 中文在线一区| 亚洲精品国产无套在线观| 国产日韩一区| 午夜精品在线看| 亚洲高清资源综合久久精品| 国产精品国产三级国产| 在线成人av| 亚洲高清免费一级二级三级| 一本久道中文字幕精品亚洲嫩| 日韩精品1区2区3区| 欧美日韩国产经典色站一区二区三区| 极品少妇xxxx精品少妇| 欧美一区二区免费观在线| 91视频你懂的| 亚洲免费在线视频一区 二区| 99精品国产99久久久久久福利| 性做久久久久久免费观看| 91精品欧美综合在线观看最新| 亚洲午夜久久久久久久久电影院| 国产欧美日韩综合精品二区| 麻豆视频一区二区| 久久在线免费观看| 99成人免费视频| 久久se精品一区二区| 久久久久久久综合| 国产情侣一区| 国产91高潮流白浆在线麻豆| 专区另类欧美日韩| 欧美日本不卡视频| 国产精品一二三| 国产精品乱码久久久久久| 麻豆亚洲精品| 成人性生交大片免费看中文网站| 欧美日韩第一区日日骚| 不卡视频一二三| 亚洲国产精品久久一线不卡| 91精品国产综合久久福利| 黄色成人在线网址| 国产精品综合久久| 亚洲精品老司机| 色综合天天综合网天天狠天天| 亚洲国产aⅴ天堂久久| 日韩欧美区一区二| 一本色道88久久加勒比精品| 国产999精品久久| 日韩精品每日更新| 日本一区二区免费在线| 欧美三级韩国三级日本一级| 成人一区二区三区视频在线观看| 国产精品免费丝袜| 日韩精品在线一区二区| 久久精品天堂| 激情欧美亚洲| 成人激情免费电影网址| 五月综合激情网| 综合欧美亚洲日本| 久久综合色综合88| 欧洲av在线精品| 亚洲美女少妇无套啪啪呻吟| 精品理论电影在线观看 | 91精品国产91久久久久久一区二区| 成人aaaa免费全部观看| 日韩精品高清不卡| 亚洲色图色小说| 日本一区二区不卡视频| 51精品国自产在线| 久久九九免费| 一区精品在线| 欧美+日本+国产+在线a∨观看| 国产精品网站一区| 91精品国产综合久久久蜜臀图片| 亚洲欧美日韩精品久久久| 亚洲国产日韩欧美一区二区三区| 国产毛片一区二区| 亚洲国产三级在线| 亚洲品质自拍视频| 精品乱码亚洲一区二区不卡| 欧美系列亚洲系列| 91久久线看在观草草青青| 91久久精品日日躁夜夜躁欧美| 伊人久久亚洲热| 欧美精品国产一区|