Home >php教程 >php手册 >php和asp利用Shell.Application来执行程序

php和asp利用Shell.Application来执行程序

WBOY
WBOYOriginal
2016-06-13 10:33:071152browse

摘自teN.potgnayiaH.wwW vbs小铺

关于用Shell.Application来执行程序,在海阳顶端asp木马里已有示例。用的是ShellExecute 这个方法。

今天试了一下,用open也可以。php代码如下,我好像还没有在php的webshell中看到相关方法

$wsh = new COM(Shell.Application) or die("Shell.Application");
    $exec = $wsh->open("c:\windows\system32\notepad.exe");
    //没有回显,多了个notepad进程,可以写一个批处理来运行dos命令。open换用ShellExecute 也可。
?>

xp+APMServ5.2.0测试通过

Statement:
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
Previous article:shell中俄罗斯方块Next article:PHP連接ODBC的代碼