Hi all
What is SQL fault injection
How to perform the sqlinjection
Is there any specific method for the same
Is there any tools available for the same.
How can we protect web application from SQL injection.
Hi all
What is SQL fault injection
How to perform the sqlinjection
Is there any specific method for the same
Is there any tools available for the same.
How can we protect web application from SQL injection.
What is SQL fault injection?
sniwas24x7
SQL fault injection can occur if you take text directly from a text box or other form of user input and use it in a query. Then an attacker can type SQL into the text box and randomly have SQL executed on the server. Some apps then display the results of the SQL in the response.
Here's a good article on it: http://msdn.microsoft.com/msdnmag/issues/04/09/SQLInjection/
Tools: FXCop has a set of security rules that will find places in your code that can have potential SQL injection attacks.
How to protect: good coding practices (scrubbing input, for example), good security model in your app, FXCop, and educate your testers so they know what tests to try.