激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊(cè)有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補(bǔ)償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁(yè) > 幫助中心>文章內(nèi)容

        Java防止SQL注入的幾個(gè)途徑

        發(fā)布時(shí)間:  2012/8/28 20:44:00

        java防SQL注入,最簡(jiǎn)單的辦法是杜絕SQL拼接,SQL注入攻擊能得逞是因?yàn)樵谠蠸QL語(yǔ)句中加入了新的邏輯,如果使用PreparedStatement來代替Statement來執(zhí)行SQL語(yǔ)句,其后只是輸入?yún)?shù),SQL注入攻擊手段將無效,這是因?yàn)镻reparedStatement不允許在不同的插入時(shí)間改變查詢的邏輯結(jié)構(gòu) ,大部分的SQL注入已經(jīng)擋住了, 在WEB層我們可以過濾用戶的輸入來防止SQL注入比如用Filter來過濾全局的表單參數(shù)
        01  import java.io.IOException;
        02  import java.util.Iterator;
        03  import javax.servlet.Filter;
        04  import javax.servlet.FilterChain;
        05  import javax.servlet.FilterConfig;
        06  import javax.servlet.ServletException;
        07  import javax.servlet.ServletRequest;
        08  import javax.servlet.ServletResponse;
        09  import javax.servlet.http.HttpServletRequest;
        10  import javax.servlet.http.HttpServletResponse;
        11  /**
        12  * 通過Filter過濾器來防SQL注入攻擊
        13  *

        14  */
        15  public class SQLFilter implements Filter {
        16  private String inj_str = "'|and|exec|insert|select|delete|update|count|*|%|chr|mid|master|truncate|char|declare|; |or|-|+|,";
        17  protected FilterConfig filterConfig = null;
        18  /**
        19  * Should a character encoding specified by the client be ignored?
        20  */
        21  protected boolean ignore = true;
        22  public void init(FilterConfig config) throws ServletException {
        23  this.filterConfig = config;
        24  this.inj_str = filterConfig.getInitParameter("keywords");
        25  }
        26  public void doFilter(ServletRequest request, ServletResponse response,
        27  FilterChain chain) throws IOException, ServletException {
        28  HttpServletRequest req = (HttpServletRequest)request;
        29  HttpServletResponse res = (HttpServletResponse)response;
        30  Iterator values = req.getParameterMap().values().iterator();//獲取所有的表單參數(shù)
        31  while(values.hasNext()){
        32  String[] value = (String[])values.next();
        33  for(int i = 0;i < value.length;i++){
        34  if(sql_inj(value[i])){
        35  //TODO這里發(fā)現(xiàn)sql注入代碼的業(yè)務(wù)邏輯代碼
        36  return;
        37  }
        38  }
        39  }
        40  chain.doFilter(request, response);
        41  }
        42  public boolean sql_inj(String str)
        43  {
        44  String[] inj_stra=inj_str.split("\\|");
        45  for (int i=0 ; i < inj_stra.length ; i++ )
        46  {
        47  if (str.indexOf(" "+inj_stra[i]+" ")>=0)
        48  {
        49  return true;
        50  }
        51  }
        52  return false;
        53  }
        54  }
         
        也可以單獨(dú)在需要防范SQL注入的JavaBean的字段上過濾:
        1   /**
        2   * 防止sql注入
        3   *
        4   * @param sql
        5   * @return
        6   */
        7   public static String TransactSQLInjection(String sql) {
        8   return sql.replaceAll(".*([';]+|(--)+).*", " ");
        9   }


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營(yíng)性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營(yíng)性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營(yíng)性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機(jī) 24小時(shí)售后服務(wù)電話:0371-60135900
      10. 虛擬主機(jī)/智能建站 24小時(shí)售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號(hào)
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號(hào)總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號(hào)
          0
         
         
         
         

        0371-60135900
        7*24小時(shí)客服服務(wù)熱線