Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement encryption in VBS

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Editor to share with you how to achieve VBS encryption, I believe that most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to understand it!

The encryption of that virus yesterday was really scary. I was not a master and could not write such advanced encryption. But inspired by the first layer of encryption of the virus, it is not difficult to carry out simple encryption. Of course, this low-level encryption can only be used to deceive some junk antivirus software. VBS scripts that use msxml2.xmlhttp and adodb.stream objects can easily be regarded as viruses by antivirus software. Students who do not know the truth will not dare to run them as soon as they see the virus report. After simple encryption, you should be able to bypass the more junk antivirus software.

The following is the encryption program, the principle is very low-level, read all the code of the source file and calculate the ASC value to write, Execute with Chr restored code.

The code is as follows:

On Error Resume Next

Set argv = WScript.Arguments

If argv.Count = 0 Then WScript.Quit

Set fso = CreateObject ("scripting.filesystemobject")

With fso.OpenTextFile (argv (0), 1)

Data = .ReadAll: .close

End With

With fso.OpenTextFile (argv (0) & ".txt", 2Jing True)

.WriteLine "data=" & Chr (34) & ASCdata (data) & Chr (34)

.WriteLine "Function ChrData (Data)"

.WriteLine "MyArray = Split (Data,", ",-1,1)"

.WriteLine "For each OldData in MyArray"

.WriteLine "Newdata=NewData" & Chr (38) & "chr (OldData)"

.WriteLine "Next"

.WriteLine "ChrData=NewData"

.WriteLine "End Function"

.WriteLine "execute Chrdata (data)"

.Close

End With

MsgBox "OK!", "Encrypt"

Function ASCdata (Data)

Num=len (data)

Newdata= ""

For juni1 to num

If j=num then

Newdata=newdata&asc (mid (data,j,1))

Else

Newdata=newdata&asc (mid (data,j,1)) & ","

End If

Next

ASCdata=newdata

End function

How to use it: drag the VBS script that needs to be encrypted directly to the encrypted program file, and the txt file of the encrypted script will be automatically generated.

The above is all the contents of the article "how to encrypt VBS". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report