最常用的 SQL 注入攻击
我正在开发一个新的应用程序,我想测试它是否容易受到攻击。我知道一些常见的攻击,但也许您可以提供更多攻击,以使我的应用程序更安全。
谢谢!
I'm developing a new application and i want to test if it's vulnerable. I know some common attacks, but maybe you can provide some more to make my app safer.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看这篇文章:http://ferruh.mavituna.com/sql-injection-cheatsheet -奥/
还有一个名为 SQL Inject Me 的 Firefox 附加组件,但目前它不适用于 Firefox 6
Check out this post: http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/
Also there's a Firefox add-on named SQL Inject Me but right now it doesn't work with Firefox 6
没有理由测试多个攻击向量。如果它对 SQL 注入开放,那么简单地传递用于引用字符串的字符(通常是
'
)就会导致语法错误 - 除非您有 IDS 或某些基于签名的检测阻碍您。There's no reason to test for multiple attack vectors. Simply passing the character used to quote strings (usually,
'
) should cause a syntax error if its open to SQL injection -- unless you have an IDS or some signature-based detection standing in your way.如果您遵循此操作,您就不会受到 SQL 注入的攻击(前提是您不要忘记转义某些内容)。
If you follow this you are not vulnerable to SQL injection (provided that you don't forget to escape something).