Asp.net anti-SQL injection string processing method and MD5 encryption method for important information

Source: Internet
Author: User

Public static bool convertsql (string Str)
{
String [] checkstr = new string [] {"select", "insert", "delete from", "Count (", "Drop table", "Update ", "truncate", "ASC (", "mid (", "char (", "xp_mongoshell", "Exec master", "net localgroup Administrators", "and ", "net user", "or ","'"};
Bool result = true;
Foreach (string temp in checkstr)
{
If (Str. tolower (). indexof (temp )! =-1)
{
Result = false;
}

}

Return result;
}

 

Private Static string convert (string Str)
{
Md5cryptoserviceprovider MD5 = new md5cryptoserviceprovider ();
Return bitconverter. tostring (md5.computehash (encoding. getencoding ("gb2312"). getbytes (STR). Replace ("-","");
}
Public static string getmd5hash (string Str)
{
String temp = convert (STR). substring (8, 16). tolower ();
Return convert (temp). substring (8, 16). tolower ();
}

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.