zoukankan      html  css  js  c++  java
  • 过滤SQL和HTML敏感字符

    /// <summary>过滤SQL和HTML敏感字符
    ///
    /// </summary>
    /// <param name="str"></param>
    /// <returns></returns>
    public static string GetSafeSqlandHtml(string str)
    {
    if (string.IsNullOrEmpty(str))
    return string.Empty;
    str = Regex.Replace(str, @"<applet[^>]*?>.*?</applet>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<body[^>]*?>.*?</body>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<embed[^>]*?>.*?</embed>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<frame[^>]*?>.*?</frame>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<script[^>]*?>.*?</script>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<frameset[^>]*?>.*?</frameset>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<html[^>]*?>.*?</html>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<iframe[^>]*?>.*?</iframe>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<style[^>]*?>.*?</style>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<layer[^>]*?>.*?</layer>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<link[^>]*?>.*?</link>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<ilayer[^>]*?>.*?</ilayer>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<meta[^>]*?>.*?</meta>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<object[^>]*?>.*?</object>", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"-->", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @"<!--.*", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, "eXeC", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, "VaRcHaR", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, "dEcLaRe", "", RegexOptions.IgnoreCase);
    str = Regex.Replace(str, @";", string.Empty);
    str = Regex.Replace(str, @"'", string.Empty);
    str = Regex.Replace(str, @"&", string.Empty);
    str = Regex.Replace(str, @"%20", string.Empty);
    str = Regex.Replace(str, @"--", string.Empty);
    //str = Regex.Replace(str, @"==", string.Empty);
    str = Regex.Replace(str, @"<", string.Empty);
    str = Regex.Replace(str, @">", string.Empty);

    return str;
    }

  • 相关阅读:
    Unicode编码
    第2章 词法结构
    ubuntu thrift
    Django admin 忘记密码
    STL中的优先级队列priority_queue
    哈希表面试题-转载
    C++中基于成员函数是否是const重载成员函数
    printf格式输出知识整理
    Linux dns和网络连接配置方法
    Linux下高效并发服务器的常用方法和案例(转)
  • 原文地址:https://www.cnblogs.com/pangzhixing/p/6596420.html
Copyright © 2011-2022 走看看