1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
| include 'init.php';
function addUser($data,$username,$password){ $ret = array( 'code'=>0, 'message'=>'娣诲姞鎴愬姛' ); if(existsUser($data,$username)==0){ $s = $data.$username.'@'.$password.'|'; file_put_contents(DB_PATH, $s);
}else{ $ret['code']=-1; $ret['message']='鐢ㄦ埛宸插瓨鍦�'; }
return json_encode($ret); }
function updateUser($data,$username,$password){ $ret = array( 'code'=>0, 'message'=>'鏇存柊鎴愬姛' ); if(existsUser($data,$username)>0 && $username!='admin'){ $s = preg_replace('/'.$username.'@[0-9a-zA-Z]+\|/', $username.'@'.$password.'|', $data); file_put_contents(DB_PATH, $s);
}else{ $ret['code']=-1; $ret['message']='鐢ㄦ埛涓嶅瓨鍦ㄦ垨鏃犳潈鏇存柊'; }
return json_encode($ret); }
function delUser($data,$username){ $ret = array( 'code'=>0, 'message'=>'鍒犻櫎鎴愬姛' ); if(existsUser($data,$username)>0 && $username!='admin'){ $s = preg_replace('/'.$username.'@[0-9a-zA-Z]+\|/', '', $data); file_put_contents(DB_PATH, $s);
}else{ $ret['code']=-1; $ret['message']='鐢ㄦ埛涓嶅瓨鍦ㄦ垨鏃犳潈鍒犻櫎'; }
return json_encode($ret);
}
function existsUser($data,$username){ return preg_match('/'.$username.'@[0-9a-zA-Z]+\|/', $data); }
function initCache(){ return file_exists('cache.php')?:file_put_contents('cache.php','<!-- ctfshow-web-cache -->'); }
function clearCache(){ shell_exec('rm -rf cache.php'); return 'ok'; }
function flushCache(){ if(file_exists('cache.php') && file_get_contents('cache.php')===false){ return FLAG646; }else{ return ''; } }
function netTest($cmd){ $ret = array( 'code'=>0, 'message'=>'鍛戒护鎵ц澶辫触' );
if(preg_match('/ping ((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}/', $cmd)){ $res = shell_exec($cmd); stripos(PHP_OS,'WIN')!==FALSE?$ret['message']=iconv("GBK", "UTF-8", $res):$ret['message']=$res; } if(preg_match('/^[A-Za-z]+$/', $cmd)){ $res = shell_exec($cmd); stripos(PHP_OS,'WIN')!==FALSE?$ret['message']=iconv("GBK", "UTF-8", $res):$ret['message']=$res; } return json_encode($ret); }
|