xref
: /
OK3568_Linux_fs
/
buildroot
/
board
/
rockchip
/
rk3566_rk3568
/
fs-overlay
/
usr
/
share
/
matrix-gui-2.0
/
execute-command.php
(revision 4882a59341e53eb6f0b4789bf948001014eff981)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
2
<?php
3
4
$
command
= $
_GET
[
'command'
];
5
$
output
=
shell_exec
($
command
);
6
7
echo
$
output
;
8
9
?>
10