SQL注入工具
我目前使用 firefox SQL Inject Me - 来测试表单数据 SQL 注入,是否有任何工具可以测试相同的功能,但对于动态站点(即 URL 查询字符串)。
I currently use firefox SQL Inject Me - to test for form data SQL Injection, Is there any tools that tests the same but for dynamic Sites i.e. URL querystrings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正确使用准备好的语句应该可以消除 SQL 注入测试的需要。
我知道这不是您问题的直接答案,但我确实希望您能够控制正在测试的代码,因为如果您使用 prep,您的问题就会消失。语句而不是使用带有字符串连接的常规语句。
免责声明:我一生中从未写过一行 PHP 代码,所以如果我把这个答案搞砸了;我很高兴听到更多的意见。
Using prepared statements properly should eliminate need for sql injection testing.
I know this isn't the direct answer to your question, but I do hope you have control over code that you're testing, because your problem will disappear if you use prep. statements instead of using regular ones with string concatenation.
Disclaimer: I've never written a line of PHP code in my life, so if I've messed up this answer horifficaly; I'd be glad to hear more opinions.
sqlninja - 我自己没有使用过,但看起来像是您正在寻找的工具。
sqlninja - didn't used myself, but looks like tool you`re looking for.
您应该检查 sqlmap 进行自动检查,尽管您应该熟悉过去的技术能够解决问题并在将来避免它。
You should check sqlmap for automated check, although you should get familiar with the techniques used to be able to solve de problem and avoid it in the future.