某些防毒軟體會把正常的asp檔誤認為是asp木馬文件,而自動刪除,影響正常使用。
下面方法可能會有效避免被防毒軟體刪除
把
以下是引用片段:
dim tStream
set tStream = Server.CreateObject("adodb.stream")
改成
以下是引用片段:
dim tStream
set tStream = Server.CreateObject("ado" & "db.stre" & "am")
如果防毒軟體認為是病毒的關鍵字串是一個物件的方法或屬性
如
以下是引用片段:
tStream2.CopyTo tStream,200
可以改成
以下是引用片段:
execute("tStream2.Cop" & "yTo tStream,200")
把
以下是引用片段:
dim tStream
set tStream = Server.CreateObject("adodb.stream")
改成
以下是引用片段:
dim tStream
execute("set tStream = Ser" & "ver.Crea" & "teObject(""ado" & "db.stre" & "am"")")
另一種方法就是用加密軟體對程式碼進行加密。