Asp SQL Injection Protection Program

Source: Internet
Author: User
Tags sql injection protection

Writing General SQL anti-injection programs generally involves HTTP requests like get and post, so we only need to filter out invalid characters in the parameter information of all post or get requests in the file, therefore, we can filter HTTP request information to determine whether it is being attacked by SQL injection.
IIS passed to ASP. dll get requests are in the form of strings, when passed to the request. after querystring data, the ASP parser analyzes the request. querystring information, and then separate the data in each array according to "&", so the get interception is as follows:
First, we define that the request cannot contain the following characters:

| And | exec | insert | select | Delete | update | count | * | % | CHR | mid | master | truncate | char | declare
 

The characters are separated by "|", and then the request. querystring is determined. The specific code is as follows:

Dim SQL _injdata
SQL _injdata = "'| and | exec | insert | select | Delete | update | count | * | % | CHR | mid | master | truncate | char | declare"
SQL _inj = Split (SQL _injdata, "| ")
If request. querystring <> "then
For each SQL _get in request. querystring
For SQL _data = 0 to ubound (SQL _inj)
If instr (request. querystring (SQL _get), SQL _inj (SQL _data)> 0 then
Response. Write "<script language = ***> alert! '); History. Back (-1) </SCRIPT>"
Response. End
End if
Next
Next
End if

In this way, we implement the GET request injection interception, but we also need to filter the POST request, so we have to continue to consider the request. form, which also exists in the form of an array. We only need to make another round-robin judgment. The Code is as follows:

If request. Form <> "" then
For each SQL _post in request. Form
For SQL _data = 0 to ubound (SQL _inj)
If instr (request. Form (SQL _post), SQL _inj (SQL _data)> 0 then
Response. Write "<script language = ***> alert! Nnhttp: // www.521movie.com '); history. Back (-1) </SCRIPT>"
Response. End
End if
Next
Next
End if

We have implemented information interception for get and post requests. You only need to reference this page before opening database files such as Conn. asp. Continue developing your program with peace of mind. You don't have to worry about whether you will be vulnerable to SQL injection attacks.

Related Article

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.