Struts2攔截SQL注入


<interceptors>
            <!--設置超時攔截器 -->
            <interceptor name="sessionOut" class="com.util.SessionOutCheckInterceptor"></interceptor>
            <!-- 設置攔截去棧 -->
            <interceptor-stack name="session">
                <interceptor-ref name="sessionOut"></interceptor-ref>
                <!-- 引用struts2的默認攔截器棧 -->
                <interceptor-ref name="defaultStack"></interceptor-ref>
            </interceptor-stack>
</interceptors>

 

public class SessionOutCheckInterceptor implements Interceptor {
    public String intercept(ActionInvocation arg0) throws Exception {
        UserSession userSession = AuthorityUtil.getSysUserSession();
        if(userSession != null){
            ActionContext actionContext=arg0.getInvocationContext();
            HttpServletRequest request= (HttpServletRequest) actionContext.get(StrutsStatics.HTTP_REQUEST);
            request.setCharacterEncoding("utf-8");
            
            Map<String, Object> Parameters= actionContext.getParameters();
            String CHECKSQL = "[`~!@#$%^&*()+=|{}':;',\\[\\].<>/?~!@#¥%……&*()——+|{}【】‘;:”“’。,、?]";
            Pattern p = Pattern.compile(CHECKSQL);
            boolean CHECKSQLCODE=false;
            for (Entry<String, Object> entity : Parameters.entrySet()) {
                String []value=(String[])entity.getValue();
                if(value!=null&&value.length>0&&StringUtils.isNotBlank(value[0])) {
                    String decodeValue=URLDecoder.decode(URLDecoder.decode(value[0],"utf-8"),"utf-8");
                    Matcher m = p.matcher(decodeValue);
                    if(m.find()) {
                        CHECKSQLCODE=true;
                        break;
                    }
                }
            }
            if(!CHECKSQLCODE) {
                return arg0.invoke();
            }else {
                return null; 
            }
        }else{
            return "login";
        }
    }

    public void destroy() {
        
    }

    public void init() {
    }

}

 

public class SessionOutCheckInterceptor implements Interceptor {
private static final long serialVersionUID = 1L;
public String intercept(ActionInvocation arg0) throws Exception {UserSession userSession = AuthorityUtil.getSysUserSession();if(userSession != null){ActionContext actionContext=arg0.getInvocationContext();HttpServletRequest request= (HttpServletRequest) actionContext.get(StrutsStatics.HTTP_REQUEST);        request.setCharacterEncoding("utf-8");        Map<String, Object> Parameters= actionContext.getParameters();String CHECKSQL = "[`~!@#$%^&*()+=|{}':;',\\[\\].<>/?~!@#¥%……&*()——+|{}【】‘;:”“’。,、?]";Pattern p = Pattern.compile(CHECKSQL);boolean CHECKSQLCODE=false;for (Entry<String, Object> entity : Parameters.entrySet()) {String []value=(String[])entity.getValue();if(value!=null&&value.length>0&&StringUtils.isNotBlank(value[0])) {String decodeValue=URLDecoder.decode(URLDecoder.decode(value[0],"utf-8"),"utf-8");    Matcher m = p.matcher(decodeValue);if(m.find()) {CHECKSQLCODE=true;break;}}}if(!CHECKSQLCODE) {return arg0.invoke();}else {return null; }}else{return "login";}}
public void destroy() {}
public void init() {}
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM