method to solve the accidental deletion of ASP files by antivirus software

Source: Internet
Author: User
Some anti-virus software often will be some ASP files as a virus deletion, sometimes simply impossible, the program inexplicably can not use, because fewer documents AH ~ ~. This is mainly because the antivirus software will be some ASP code as a trojan keyword, record preservation, so encountered with this keyword, it will prohibit the operation or deletion.


The solution is to take these keywords apart.
Put
Dim Tstream
Set tstream = Server.CreateObject ("ADODB.stream")
Change into
Dim Tstream
Set tstream = Server.CreateObject ("ADO" & "Db.stre" & "AM")
If antivirus software is considered a critical string for a virus is a method or property of an object

Such as
Tstream2.copyto tstream,200
can be changed into
Execute ("Tstream2.cop" & "Yto tstream,200")
Put
Dim Tstream
Set tstream = Server.CreateObject ("ADODB.stream")
Change into
Dim Tstream
Execute ("Set tstream = Ser" & "ver.") Crea "&" Teobject ("ADO" & "Db.stre" & "AM" ")"

Another way is to use encryption software to encrypt the ASP code, such as Microsoft's ASP encryption tool SCRENC.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.