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 base64 decryption script Code by vbs

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

Share

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

This article mainly introduces vbs how to achieve base64 decryption script code, the article is very detailed, has a certain reference value, interested friends must read it!

The code is as follows:

Function fDecode (sStringToDecode)

'This function will decode a Base64 encoded string and returns the decoded string.

'This becomes usefull when attempting to hide passwords from prying eyes.

Const CharList = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

Dim iDataLength, sOutputString, iGroupInitialCharacter

SStringToDecode = Replace (sStringToDecode, vbCrLf, "), vbTab,"), ",")

IDataLength = Len (sStringToDecode)

If iDataLength Mod 4 0 Then

FDecode = "Bad string passed to fDecode () function."

Exit Function

End If

For iGroupInitialCharacter = 1 To iDataLength Step 4

Dim iDataByteCount, iCharacterCounter, sCharacter, iData, iGroup, sPreliminaryOutString

IDataByteCount = 3

IGroup = 0

For iCharacterCounter = 0 To 3

SCharacter = Mid (sStringToDecode, iGroupInitialCharacter + iCharacterCounter, 1)

If sCharacter = "=" Then

IDataByteCount = iDataByteCount-1

IData = 0

Else

IData = InStr (1, CharList, sCharacter, 0)-1

If iData =-1 Then

FDecode = "Bad string passed to fDecode () function."

Exit Function

End If

End If

IGroup = 64 * iGroup + iData

Next

IGroup = Hex (iGroup)

IGroup = String (6-Len (iGroup), "0") & iGroup

SPreliminaryOutString = Chr (CByte ("& H" & Mid (iGroup, 1,2)) & Chr (CByte ("& H" & Mid (iGroup, 3,2)) & Chr (CByte ("& H" & Mid (iGroup, 5,2)

SOutputString = sOutputString & Left (sPreliminaryOutString, iDataByteCount)

Next

FDecode = sOutputString

End Function

Base64 test code:

The code is as follows:

Function fDecode (sStringToDecode)

'This function will decode a Base64 encoded string and returns the decoded string.

'This becomes usefull when attempting to hide passwords from prying eyes.

Const CharList = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

Dim iDataLength, sOutputString, iGroupInitialCharacter

SStringToDecode = Replace (sStringToDecode, vbCrLf, "), vbTab,"), ",")

IDataLength = Len (sStringToDecode)

If iDataLength Mod 4 0 Then

FDecode = "Bad string passed to fDecode () function."

Exit Function

End If

For iGroupInitialCharacter = 1 To iDataLength Step 4

Dim iDataByteCount, iCharacterCounter, sCharacter, iData, iGroup, sPreliminaryOutString

IDataByteCount = 3

IGroup = 0

For iCharacterCounter = 0 To 3

SCharacter = Mid (sStringToDecode, iGroupInitialCharacter + iCharacterCounter, 1)

If sCharacter = "=" Then

IDataByteCount = iDataByteCount-1

IData = 0

Else

IData = InStr (1, CharList, sCharacter, 0)-1

If iData =-1 Then

FDecode = "Bad string passed to fDecode () function."

Exit Function

End If

End If

IGroup = 64 * iGroup + iData

Next

IGroup = Hex (iGroup)

IGroup = String (6-Len (iGroup), "0") & iGroup

SPreliminaryOutString = Chr (CByte ("& H" & Mid (iGroup, 1,2)) & Chr (CByte ("& H" & Mid (iGroup, 3,2)) & Chr (CByte ("& H" & Mid (iGroup, 5,2)

SOutputString = sOutputString & Left (sPreliminaryOutString, iDataByteCount)

Next

FDecode = sOutputString

End Function

Msgbox fDecode ("d3d3LmpiNTEubmV0")

The above is all the contents of the article "how vbs implements the base64 decryption script code". Thank you for reading! Hope to share the content to help you, more related 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