如何确保包括打开“/”的文件是安全的

发布于 2025-01-03 16:34:46 字数 1432 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情绪操控生活 2025-01-10 16:34:46

是的,肯定有一个。

确保您关闭了 display_errors ,以使用户看不到所有错误消息。

然后通过向其中添加 $_SERVER['DOCUMENT_ROOT'] 或任何其他方式使这些路径成为真实路径。

是的,只要您使用这种

include $_SERVER['DOCUMENT_ROOT'].'/common/lib.php';

不使用动态生成的文件名

的代码,您就可以认为自己是安全的。

Yeah, there is one for sure.

Make sure that you turned display_errors off, to make all the error messages you will get invisible to the user.

Then make these paths real, by adding $_SERVER['DOCUMENT_ROOT'] to them or any other way.

And yes, as long as you are using this kind of code

include $_SERVER['DOCUMENT_ROOT'].'/common/lib.php';

using no dynamically generated filenames

you may consider yourself safe.

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