XML - 外部访问
我计划将一些 HTML 网站的内容保存在 XML 文档中。这些 XML 文档将可供公开阅读,但是,是否存在允许外部人员写入我的 XML 文档的漏洞?我将使用 simpleXML(PHP 脚本)来允许登录用户编辑他们自己的 XML 文档。
请告知,谢谢!
I am planning on saving content of some HTML sites in XML docs. These XML docs will be publicly available to read, however, are there vulnerabilities that could allow outsiders to write to my XML docs? I'll be using simpleXML (PHP script) to allow logged in users to edit their own XML doc.
Please let me know, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 XML 文件的权限对公众来说是只读的(最多 775),并且只有登录用户才能通过 PHP 进行编辑,那么您就不必担心。
If the permissions on the XML files are read-only for the public (775 at most), and only logged-in users can edit via PHP, then you shouldn't have anything to worry about.