防止直接访问动态创建的文件

发布于 2024-12-20 07:25:45 字数 166 浏览 0 评论 0原文

我有一个 jsp 文件,它在运行时生成一些文件,这些文件也被另一个页面中的 swfObject 使用。但我想阻止从浏览器直接访问这些文件。由于我的文件是在 jsp 运行时生成的,因此我不知道如何从 .htaccess 配置它。 我想要阻止访问的所有文件都有 .xml 扩展名。

你能提供一个方法给我吗?

I have a jsp file that generates some files at runtime, which are also used by swfObject in another page. But i want to prevent the direct access to those files from browser. Since my files are generated at runtime of my jsp s, i don't know how to configure it from .htaccess.
All the files that i want to prevent access has .xml extension.

Could you offer a method to me ?

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

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

发布评论

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

评论(1

余厌 2024-12-27 07:25:45

这可能是几乎不可能的:
您希望 swfObject/Flash 能够访问这些文件,但运行 swfObject/Flash 的浏览器不应该能够访问相同的 xml 文件。
对于 webserver/.htaccess 来说,这两个访问方之间几乎没有什么区别。

如果 swfObject 直接访问 jsp 而不生成临时文件,您可以使用在返回 xml 之前在 jsp 中检查的“秘密”密钥。当然,每个知道方法的人都会找到这个密钥(用于救援的萤火虫)并因此可以访问您的 xml。

This might be pretty impossible:
You want swfObject/Flash to be able to access the files but the browser in which the swfObject/Flash runs should not be able to access the same xml files.
For the webserver/.htaccess there is little difference between those two accessing parties.

If swfObject were to access the jsp directly without the generation of temporary files you could work with a "secret" key that is checked in the jsp before the xml is returned. But of course everybody that knows his way around will find this key (firebug for the rescue) and can access your xml therefore.

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