php 文件公共写入风险

发布于 2024-10-14 16:06:12 字数 146 浏览 2 评论 0原文

我有一个文件,我必须将其设置为公共读取和公共写入才能工作。在下面两种文件类型下,将其设置为“公共写入”有什么风险?

1 - 它是一个文本文件 (.txt)

2 - 它是一个 php 文件 (.php)

黑客可以造成一些损害吗?

I have a file, I have to set it to public read and public write to work. Under the two filetypes below, what are the risks of having it set to "public write"?

1 - Its a text file (.txt)

2 - Its a php file (.php)

Can the hackers do some damage?

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

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

发布评论

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

评论(1

无妨# 2024-10-21 16:06:12

PHP 文件

如果

  1. apache 可以访问 php 文件,并且
  2. apache 配置为处理
  3. 任何人都可写的“*.php”文件,

那么灾难即将发生。尽量不要问可以做什么。

文本文件

如果它是常规的 apache 设置,那么它是相当安全的。

PHP file

If php file is

  1. accessible to apache,
  2. apache is configured to process "*.php" files,
  3. writable by anyone,

then it's a disaster waiting to happen. Try not to ask what may be done.

Text file

If it's a regular apache setup it's rather safe.

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