Adodb 不支持安全实践?
我开始使用 ADODB for php5 因为我想从常规 mysql 函数升级我的工具,但令我惊讶的是它根本没有清理来自 sql 注入的查询,这实际上是否受支持以及如何启用它?
感谢任何帮助。
I started using ADODB for php5 as i wanted to upgrade my tools from the regular mysql functions but i'm surprised that it's not cleaning up queries from sql injections at all, is this actually supported and how to enable it?
Appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
准备好的语句可以保护您免受 ADODB 文档中的 SQL 注入:
但是,在使用了 ADODB 和 PDO 后,我强烈建议您考虑学习 PDO。
A prepared statement protects you from SQL injection, from the ADODB docs:
However, having used both ADODB and PDO, I'd highly recommend you look into learning PDO instead.