PHP remote shutdown operation code_PHP tutorial

WBOY
Release: 2016-07-21 15:48:40
Original
793 people have browsed it

/**
* Start the computer remotely
* Note: iis/apache needs to have windows/system/cmd.exe execution permissions
* name: Xue Rufei
* qq:6706250
* e-mail:xuerufei @163.com
* blog:http://hi.baidu.com/Feiyungaitian
* date:08.08.28
**/
if (isset($_POST['cmd']))
{
$cmd= stripslashes( $_POST['cmd'] );
exec( $cmd,$out);
var_dump($out);
echo '
';
var_dump($cmd);
}
else
{
?>



CMD











选择:



}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/319712.htmlTechArticle?php /** * 远程启动计算机 * 注意:iis/apache需要有windows/system/cmd.exe执行权限 * name:薛如飞 * qq:6706250 * e-mail:xuerufei@163.com * blog:http://hi.baidu.com/飞...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!