通过 root chown 文件并通过组执行

发布于 2024-11-27 04:43:38 字数 1459 浏览 2 评论 0原文

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

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

发布评论

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

评论(2

挽袖吟 2024-12-04 04:43:38

你应该自己尝试一下。要了解它为什么不起作用:

/etc/shadow 通常具有如下权限:

[cnicutar@fresh ~]$ ls -l /etc/shadow
-rw------- 1 root root 316 Jul 20 09:36 /etc/shadow

当您执行脚本时,谁拥有它并不重要(除非使用 setuid ,您可以无论如何,不​​适用于脚本)。
重要的一件事是谁执行它。因此 apache 将执行该脚本,并且它将被视为“其他”:没有权限。

You should try it yourself. To understand why it doesn't work:

/etc/shadow usually has permissions like this:

[cnicutar@fresh ~]$ ls -l /etc/shadow
-rw------- 1 root root 316 Jul 20 09:36 /etc/shadow

When you execute your script it doesn't matter who owns it (except when using setuid which you can't for scripts anyway).
The one thing that maters is who is executing it. So apache will execute the script and it will be considered "others": no permissions.

抽个烟儿 2024-12-04 04:43:38

不,因为perl代码(CGI脚本?)将在apache用户的权限下执行。但是,如果您的 sudo 文件中有 apache 用户(或者您的网络服务器的用户或任何正在执行您的代码的用户,如果它是守护进程),那么您可以执行 system("sudo cat /etc/shadow");那会起作用的。

No, because the perl code (CGI script?) will be executed with the permissions of the apache user. However if you have apache user (or the user of your webserver or whatever is executing your code, if it is a daemon) is in the sudo file then you could do system("sudo cat /etc/shadow"); and that would work.

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