PHP 文件权限

发布于 2024-10-18 05:39:01 字数 190 浏览 2 评论 0原文

我刚刚启动了一个 ec2 服务器并将所有 php 代码放在服务器上,我需要更改权限,以便用户无法访问像 http:example.com/admin 这样的网站并查看列表php 文件....我需要更改整个文件夹或每个文件的权限,还是有一个可以工作的递归 -R 命令...我认为它们目前都是 777 。 ..这很糟糕

I just launched an ec2 server and put all the php code on the server and I need to change the permissions so that a user cant go to the site like http:example.com/admin and see the list of php files....Do I need to change the permissions on the entire folder or each file or is there a recursive -R command that will work ...I think they are all currently 777 ...which is bad

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

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

发布评论

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

评论(3

初懵 2024-10-25 05:39:01

假设您只想禁用文件列表,而不是访问文件本身,那么您需要禁用 Apache 中该文件夹的 INDEXES 选项。 apache 配置中类似的东西可能是最好的。

<Directory /www/somefolder>
    Options -Indexes
    AllowOverride None
</Directory>

Assuming you want to disable just the listing of files, and not access to the files themselves, then you'll want to disable the INDEXES option in Apache for that folder. Something like this in the apache config would probably be best.

<Directory /www/somefolder>
    Options -Indexes
    AllowOverride None
</Directory>
被你宠の有点坏 2024-10-25 05:39:01

如果您的网站位于网络服务器根目录下的 admin 文件夹中,您可以在 admin 根目录中放置一个 .htaccess 文件,其中包含:

IndexIgnore *

If your website is in an admin folder in the root of your webserver you can drop a .htaccess file in the admin root containing:

IndexIgnore *
明明#如月 2024-10-25 05:39:01

尝试插入此 PHP 代码:

<?php
if ($_SERVER['HTTP_CLIENT_IP'] == "insert_your_clientip_here") {
  echo "";
} else {
  return;
}

或使用密码

<?php
$password="mypasswordhere";

if (isset($_GET[$password]);) {
  echo "";
} else {
  return;
}

,然后转到 admin.php?mypasswordhere
(这不是暴力证明,因此请使用非常强的密码)

Try inserting this PHP code:

<?php
if ($_SERVER['HTTP_CLIENT_IP'] == "insert_your_clientip_here") {
  echo "";
} else {
  return;
}

or use a password

<?php
$password="mypasswordhere";

if (isset($_GET[$password]);) {
  echo "";
} else {
  return;
}

then go to admin.php?mypasswordhere
(this isn't brute force proof so use a very strong password)

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