I need to filter out characters like /?-^%{}[];$=*`#|&@'\"<>()+,\. I need replace this with empty string if it is there in the query string. Please help me out. I am using this in ASP pages.
|
|
|||
|
|
|
Best idea would be to use a function something along the lines of:
This hasn't been tested and it could probably be made more efficient, but it should get you going. Wherever you execute your sql in your app, just wrap the sql in this function to clean the string before execution: ExecuteSQL(MakeSQLSafe(strSQL)) Hope that helps |
|||
|
|
|
|
I'm using URL Routing and I found this works well, pass each part of your URL to this function. It's more than you need as it converts characters like "&" to "and", but you can modify it to suit:
|
||
|
|
|
|
As with any string sanitisation, you're much better off working with a whitelist that dictates which characters are allowed, rather than a blacklist of characters that aren't. This question about filtering HTML tags resulted in an accepted answer suggesting the use of a regular expression to match against a whitelist: http://stackoverflow.com/questions/307013/how-do-i-filter-all-html-tags-except-a-certain-whitelist - I suggest you do something very similar. |
||
|
|
|
|
Where do you need to filter these values from? The url path or the query string? Where are you doing the filtering? In javascript, in vb or somewhere else (i.e. do you have access to the .NET framework?) When you say ASP pages do you mean ASP or ASP.NET? |
||
|
|
