SQL Injection character Detection Function

Source: Internet
Author: User

A self-written SQL Injection detection function can effectively detect user post and get references for filtering. If you need it, refer to it.

The Code is as follows: Copy code

<? Php
/* SQL Injection character Detection
* All input data, post parameters, and get parameters must be checked.
* If a keyword is matched, this keyword is returned. Otherwise, false is returned.
* This is not the same as sensitive character detection.
*/
Function Filter_ SQL ($ strData)
{
$ StrFilter = $ blnFlag = $ arrayFilter = '';

$ StrFilter = "'| and | (|) | exec | insert | select | delete | update | count | * | % 27 | chr | mid | master | truncate | char | declare | union | or "; // you can add characters to be filtered. "|" is a separator.
$ BlnFlag = false; // filter flag. If a filter is generated, it is true.
 
$ Arr = explode ("|", $ strFilter );
$ Str = "";
 
Foreach ($ arr as $ row)
{
$ Str. = preg_quote ($ row). "| ";
}
 
$ Str = trim ($ str, "| ");
 
If (preg_match ('/'. $ str. '/I', $ strData, $ word ))
{
Return $ word [0];
}
 
Return false;
}

/*
Test
$ String = "fasdf union ";
Echo Filter_ SQL ($ string );
*/

?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.