Programalama > C#

public string KillSqlInjectionWords(string WithBadChars)
{
      string [] SqlInjectionKeywords = {	"select", 
						                                           "drop", 
						                                           ";", 
						                                           "--",
						                                           "insert", 
						                                           "delete", 
					 	                                            "xp_",
						                                            "sp_",
						                                            "exec",
					 	                                             "'"
	                                      };			
     string WithoutBadChars = "" ;
     for (int i = 0; i < SqlInjectionKeywords.Length; i++)
		{
WithoutBadChars = WithBadChars.Replace(SqlInjectionKeywords[i],"");
WithBadChars = WithoutBadChars ;
		}
    return WithoutBadChars;
}


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.