Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI
I want to ask what are the to tool that i can use with sql quaries to check if a spacific sq quary statment is vunerable to sql injaction

thanks and best regards

mina remon

What I have tried:

i tried some links online but all of them need me to add the sql to form usind asp.net
Posted
Updated 16-Sep-19 16:53pm

 
Share this answer
 
v2
Specific TSQL statements themselves are not prone to SQL Injection; this is usually caused by concatenating a SQL command statement with direct user input in some application or website.

If you would use the Improve Question widget and post the block of code with the query and command objects I am sure someone will let you know; if not, I will
 
Share this answer
 
Quote:
I want to ask what are the to tool that i can use with sql quaries to check if a spacific sq quary statment is vunerable to sql injaction

I don't use any tool to see if a query is vulnerable to injection or not. I think the best tool is my/your head with a good understanding of what is an injection and how it work.

More or less, injection is anything where a user input literal end up in the text of a query.

A few links about SQL injection and solution:
SQL injection - Wikipedia[^]
SQL Injection[^]
SQL Injection Attacks by Example[^]
PHP: SQL Injection - Manual[^]
SQL Injection Prevention Cheat Sheet - OWASP[^]
How can I explain SQL injection without technical jargon? - Information Security Stack Exchange[^]
 
Share this answer
 
Comments
Member 14479161 19-Sep-19 11:16am    
thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900