this helped me kill rogue processes via the url parameter. I thought I would be participating in the discussion in case someone else showed the answers.
download yikes.php. identify the process identifier (this should be the first integer that you get in each index of the array). copy and paste it in url how? pid = XXXXX. and he left.
//http://website.com/yikes.php?pid=668 $pid = $_GET['pid']; exec("ps auxwww|grep name-of-file.php|grep -v grep", $output); echo '<pre>'; print_r($output); echo '</pre>'; // exec("kill $pid");
source share