PHP远程重启服务器代码
<?phpif(isset($_GET['action'])){$action = $_GET['action'];$cmd = ”;switch($action){case ‘shutdown’:$cmd = ‘shutdown -s’;break;case ‘abort-shutdown’:$cmd = ‘shutdown -a’;break;case ‘reboot’:$cmd = ‘shutdown -r’;break;default:// do nothingbreak;}if($cmd != ”){system($cmd);}}?><!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><htmlxmlns=”http://www.w3.org/1999/xhtml”><head><metahttp-equiv=”Content-Type” content=”text/html; charset=utf-8″ /><title>Manage Your Cumputer</title></head><body><p><ahref=”?action=shutdown“>Shutdown</a></p><p><ahref=”?action=abort-shutdown“>Abort shutdown</a></p><div class="aritcle_card flexRow">
<div class="artcardd flexRow">
<a class="aritcle_card_img" href="/ai/2143" title="ImgGood"><img
src="https://img.php.cn/upload/ai_manual/000/000/000/175680175245875.png" alt="ImgGood" onerror="this.onerror='';this.src='/static/lhimages/moren/morentu.png'" ></a>
<div class="aritcle_card_info flexColumn">
<a href="/ai/2143" title="ImgGood">ImgGood</a>
<p>免费在线AI照片编辑器</p>
</div>
<a href="/ai/2143" title="ImgGood" class="aritcle_card_btn flexRow flexcenter"><b></b><span>下载</span> </a>
</div>
</div><p><ahref=”?action=reboot“>Reboot</a></p></body></html>?










