关于shell_exec的用法
答案:2 悬赏:60 手机版
解决时间 2021-02-24 15:14
- 提问者网友:抽煙菂渘情少年
- 2021-02-24 11:49
关于shell_exec的用法
最佳答案
- 五星知识达人网友:duile
- 2021-02-24 12:54
exec()是用于执行shell命令的函数。它返回执行并返回命令输出的最后一行,但你可以指定一个数组作为第二个参数,这样输出的每一行都会作为一个元素存入数组。使用方式如下:
1.代码如下:
$last = exec('ls', $output, $return);
print_r($output);
echo "Return [$return]";
?>
2.假设ls命令在shell中手工运行时会产生如下输出:
代码如下:
$ ls
total 0
-rw-rw-r-- 1 chris chris 0 May 21 12:34 php-security
-rw-rw-r-- 1 chris chris 0 May 21 12:34 chris-shiflett
3.当通过上例的方法在exec()中运行时,输出结果如下:
代码如下:
Array
(
[0] => total 0
[1] => -rw-rw-r-- 1 chris chris 0 May 21 12:34 php-security
[2] => -rw-rw-r-- 1 chris chris 0 May 21 12:34 chris-shiflett
)
Return [0]
这种运行shell命令的方法方便而有用,但这种方便为你带来了重大的风险。如果使用了被污染数据构造命令串的话,攻击者就能执行任意的命令。
我建议你有可能的话,要避免使用shell命令,如果实在要用的话,就要确保对构造命令串的数据进行过滤,同时必须要对输出进行转义:
4.代码如下:
$clean = array();
$shell = array();
$shell['command'] = escapeshellcmd($clean['command']);
$shell['argument'] = escapeshellarg($clean['argument']);
$last = exec("{$shell['command']} {$shell['argument']}", $output, $return);
?>
1.代码如下:
$last = exec('ls', $output, $return);
print_r($output);
echo "Return [$return]";
?>
2.假设ls命令在shell中手工运行时会产生如下输出:
代码如下:
$ ls
total 0
-rw-rw-r-- 1 chris chris 0 May 21 12:34 php-security
-rw-rw-r-- 1 chris chris 0 May 21 12:34 chris-shiflett
3.当通过上例的方法在exec()中运行时,输出结果如下:
代码如下:
Array
(
[0] => total 0
[1] => -rw-rw-r-- 1 chris chris 0 May 21 12:34 php-security
[2] => -rw-rw-r-- 1 chris chris 0 May 21 12:34 chris-shiflett
)
Return [0]
这种运行shell命令的方法方便而有用,但这种方便为你带来了重大的风险。如果使用了被污染数据构造命令串的话,攻击者就能执行任意的命令。
我建议你有可能的话,要避免使用shell命令,如果实在要用的话,就要确保对构造命令串的数据进行过滤,同时必须要对输出进行转义:
4.代码如下:
$clean = array();
$shell = array();
$shell['command'] = escapeshellcmd($clean['command']);
$shell['argument'] = escapeshellarg($clean['argument']);
$last = exec("{$shell['command']} {$shell['argument']}", $output, $return);
?>
全部回答
- 1楼网友:行路难
- 2021-02-24 13:46
没有看到报错内容, 最好是可以发过来看看?
私信?
私信?
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯