Bir Win32 sistemde bir uzak istemci komutlar göndermek için bir script kurmak için çalışıyor. İşte kod:
$command = $_POST['command'];
$host = $_POST['host'];
$port = $_POST['port'];
$fp = @fsockopen($host, $port, $e, $s, 15);
if (!$fp) {
echo 'Error! Here\'s your problem: ' . $e . ': ' . $s;
}else{
$fw = fwrite($fp, $command);
if (!$fw){
echo 'Failed sending command.';
fclose($fp);
}else{
fclose($fp);
echo 'Successfully sent: ' . $command;
}
}
Benim dostum uzak istemci üzerinde çalışıyor, ve o bu komut ''
gönderdiğini söylüyor
Ancak, benim komut dosyası yankılanır Successfully sent: test
Ben yanlış bir şey yapıyor, ya da onun ucunda bir sorun muyum?