在 Oracle DB 允许所有字符时如何保护 CodeIgniter URI 段

发布于 2024-10-14 11:24:27 字数 253 浏览 2 评论 0原文

我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒儿 2024-10-21 11:24:27

我建议使用 CI 查询绑定

$sql = "SELECT * FROM some_table WHERE id = ? AND status = ? AND author = ?"; 

$this->db->query($sql, array($yourSegment1, $yourSegment2, $yourSegment3));

I recommend using CI query bindings

$sql = "SELECT * FROM some_table WHERE id = ? AND status = ? AND author = ?"; 

$this->db->query($sql, array($yourSegment1, $yourSegment2, $yourSegment3));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文