I just needed some help regarding validating links for sql injection automatically.
For instance: There is a site so called as
http://www.example.com/news.php?id=13
After inserting quotation at the end we get an MySql error like this
http://www.example.com/news.php?id=13'
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\' order by Sort DESC Limit 0,12' at line 1
So i was wondering is there any way by which i can check these links for errors automated. Like before the injected url execution it should show normal status but after injection it should show abnormal status.
NOTE: I am not talking about my website. I am developing an application online that will be free for developers for checking there site security.
Any help will be appreciated :)