通过apache从perl-CGI脚本运行超级用户命令

时间:2012-12-03 09:50:05

标签: perl apache cgi

我有一个脚本,我可以运行本机操作系统命令(非超级用户命令)

#!/usr/bin/perl
print "Content-type: text/html\n\n";
system("ls -lrt");

这很好用。系统命令输出显示在网页上..

但是,我有自己的二进制文件" get_stats" (具有超级用户权限)放在/ sbin目录中。但是网页显示为空白,系统命令输出不会显示在网页上。

#!/usr/bin/perl
print "Content-type: text/html\n\n";
system("get_stats");

在apache配置或/ etc / sudoers中需要进行哪些更改?

由于 阿布舍克巴克

0 个答案:

没有答案