|
dbellion -> RE: Help please - Block SQL injection? (6.Jul.2008 9:26:18 PM)
|
Hi Yes you can block sql injection strings. If you right click a published website, go to Configure HTTP - there's a lot you can do here to secure your web server. For SQL injection, use the Signatures tab. Add filters for Request URL and Request Body for common strings used in sql injection... eg: select%20 (the %20 represents a space in signature field so type "select ") delete%20 sp_ xp_ create table (type create table in signature field) drop table ;- | ^ .. char( syscolumns -search the web for sql injection to learn more about it to compile a list of strings you would want to block. I also block other strings like "hkey", "c:", "d:", "regedit" etc... Hope that helps as a starting point, worth getting external penatration testing to make sure you're covered.
|
|
|
|