我想知道将ps aux放入数组然后在网络上显示的这种安全方法吗?或者可以采取哪些措施来改善它?
例:
<table width="900px" border="1">
<tr>
<td> PID </td>
<td> CPU </td>
<td> Mem </td>
<td> Start </td>
<td> Command</td>
</tr>
<?php
exec("ps aux | grep -v grep | grep process.php", $psOutput);
if (count($psOutput) > 0) {
foreach ($psOutput as $ps) {
$ps = preg_split('/ +/', $ps);
$pid = $ps[1];
$cpu = $ps[2];
$mem = $ps[3];
$time = $ps[8];
$command = $ps[10] . " " . $ps[11];
echo "<tr>";
echo "<td>" . $pid . "</td>";
echo "<td>" . $cpu . "</td>";
echo "<td>" . $mem . "</td>";
echo "<td>" . $time . "</td>";
echo "<td>" . $command . "</td>";
echo "</tr>";
}
}
?>
</table>
最佳答案
I am wondering is this safe way to put ps aux into array and then display on the web? Or what could be done to improve it?
就我所知,没有什么.如果这是实际代码并且命令不是从用户输入创建的,那么除了< table width =“900px”>的事实之外,这个代码绝对没有任何问题.通常由CSS控制,而不是HTML.但这就是我能想到的所有批评.
编辑:Quentin提出了一个非常有效的观点,你应该在用HTML显示之前使用htmlspecialchars.