php sql防注入

來源:互聯網
上載者:User

標籤:

沒有太多的過濾,主要是針對php和mysql的組合。
一般性的防注入,只要使用php的 addslashes 函數就可以了。

以下是一段copy來的代碼:

PHP代碼
  1. $_POST = sql_injection($_POST);  
  2. $_GET = sql_injection($_GET);  
  3.   
  4. function sql_injection($content)  
  5. {  
  6. if (!get_magic_quotes_gpc()) {  
  7. if (is_array($content)) {  
  8. foreach ($content as $key=>$value) {  
  9. $content[$key] = addslashes($value);  
  10. }  
  11. } else {  
  12. addslashes($content);  
  13. }  
  14. }  
  15. return $content;  
  16. }  

做系統的話,可以用下面的代碼,也是copy來的。

PHP代碼
    1.      
    2. function inject_check($sql_str) {      
    3.   return eregi(‘select|insert|update|delete|\‘|\/\*|\*|\.\.\/|\.\/|union|into|load_file|outfile‘, $sql_str);    // 進行過濾      
    4. }      
    5.      
    6.      
    7. function verify_id($id=null) {      
    8.   if (!$id) { exit(‘沒有提交參數!‘); }    // 是否為空白判斷      
    9.   elseif (inject_check($id)) { exit(‘提交的參數非法!‘); }    // 注射判斷      
    10.   elseif (!is_numeric($id)) { exit(‘提交的參數非法!‘); }    // 數字判斷      
    11.   $id = intval($id);    // 整型化      
    12.      
    13.   return  $id;      
    14. }      
    15.      
    16.      
    17. function str_check( $str ) {      
    18.   if (!get_magic_quotes_gpc()) {    // 判斷magic_quotes_gpc是否開啟      
    19.     $str = addslashes($str);    // 進行過濾      
    20.   }      
    21.   $str = str_replace("_", "\_", $str);    // 把 ‘_‘過濾掉      
    22.   $str = str_replace("%", "\%", $str);    // 把 ‘%‘過濾掉      
    23.      
    24.   return $str;       
    25. }      
    26.      
    27.      
    28. function post_check($post) {      
    29.   if (!get_magic_quotes_gpc()) {    // 判斷magic_quotes_gpc是否為開啟      
    30.     $post = addslashes($post);    // 進行magic_quotes_gpc沒有開啟的情況對提交資料的過濾      
    31.   }      
    32.   $post = str_replace("_", "\_", $post);    // 把 ‘_‘過濾掉      
    33.   $post = str_replace("%", "\%", $post);    // 把 ‘%‘過濾掉      
    34.   $post = nl2br($post);    // 斷行符號轉換      
    35.   $post = htmlspecialchars($post);    // html標記轉換      
    36.      
    37.   return $post;      
    38. }  

php sql防注入

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.