禁用多个语句的 SQL 注入?
我正在测试 SQL 注入。我有一个查询:
SELECT * FROM testTable WHERE testVar='
我在一行中禁用了多个语句。攻击者有什么办法可以在其中插入更新或删除并杀死我的数据吗?
注意:我知道参数化我的查询更安全,而且我已经这样做了。但是,我想知道所有的可能性。
I am testing SQL injection. I have a query:
SELECT * FROM testTable WHERE testVar='<USER INPUT HERE>';
I have disabled multiple statements in one line. Is there any way an attacker might slip an UPDATE or DELETE in there and kill my data?
NOTE: I am aware that parameterizing my queries is more secure and I already do so. However, I would like to know of all of the possibilities.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
即使您禁用了多行语句,如果您的用户输入看起来像
我猜这将选择所有行,该怎么办。
你的查询将变成
even if you have disable multiple line statements, what if your user input looks like
I guess this will select all the rows.
your query will become
如果您没有正确转义用户输入中的引号,他们就可以
They can if you do not properly escape quotes in your user input