在 Oracle DB 允许所有字符时如何保护 CodeIgniter URI 段
我从 CodeIgniter 获取 URI 段,并使用它们查询 Oracle 数据库。保护这些部分的方法是什么?因为我找不到php的Oracle转义方法(php中的MySQL转义方法是mysql_real_escape_string())。
顺便说一句,CodeIgniter 中的安全性真的像他们在配置文件中试图告诉您的那样非常危险。我认为只要您在使用您正在使用的数据库系统的任何查询中适当地转义这些 URI 段,它就是安全的,但我不知道我是否正确。
谢谢。
I am getting URI segments from CodeIgniter and using them in query to an Oracle database. What is the way to secure these segments? As I cannot find a Oracle escape method for php (MySQL escape method in php is mysql_real_escape_string()).
And on a side note, is the security in CodeIgniter really as insanely dangerous as they try to tell you in the config file. I am of the thinking it is safe so long as you escape these URI segments appropriately in any query with the database system you are using, but I don't know if I am correct.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 CI 查询绑定
I recommend using CI query bindings