ASP Forum
ASP SQL Injection
classic_asp | Posted 2:19am 17. October 2010 Server Time |

Hey, I have made a function in ASP for some security in my site.

SQL Injection function

Function mysql_sec(text)

text = Replace(text, chr(34), "")
text = Replace(text, "'", "")
text = Replace(text, "\", "")
  
mysql_sec = text

End function


Is this safe??
Thank you!


Reply to Post ASP SQL Injection



Back to Forum Page