91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vbs腳本中加密需要注意什么

發布時間:2021-10-13 11:42:36 來源:億速云 閱讀:148 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關vbs腳本中加密需要注意什么的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

代碼如下:

學vbs也有一小段時間了,最近看到一本書上講vbs腳本的加密,就自己試了試,可是有一點問題,低級的語法錯誤我都自己修正了,可腳本運行后不起作用.所以想請教你一下.腳本的原理是這樣的:它把代碼轉換成16進制,然后再寫個解密代碼,通過這個解密來執行加密的代碼,將字符串成16進制的代碼如下: 
Function str2hex (Byval strHex) 
For i=1 to Len(strHex) 
sHex = sHex & Hex(Asc(mid(strHex,i,1))) 
 next 
 str2Hex = sHex 
end Function 

解密的代碼如下: 

Function hextostr(data) 
Hextostr = "Execute""""" 
C= "&Chr(&H" 
N= ")" 
Do while Len(data)>1 
if IsNumeric (Left(data,1)) then 
Hextostr=Hextostr&c&Left(data,2)&N 
data=mid(data,3) 
else 
Hextostr=HextoStr&C&Left(data,4)&N 
data=mid(data,5) 
end if 
loop 
end Function 

解密代碼好象有點問題,請幫忙指正,我實在找不出 

整個成品就是: 

on error resume next 
set arg=wscript.arguement '聲明外部參數 
if arg.count=0 Then wscript.quit '若無參數則退出腳本 
set fso=creatobject("Scripting.Filesystem Object") '聲明fso組件 
when fso.opentextfile(arg(0),1,flase) 
data = readall:.close'讀取文本內容 
if err.number<>0 then wscript.quit '如果發生錯誤,則退出 
with fso.opentextfile(arg(0)&"*.vbs",2,true) '將轉換好的寫到一個新的vbs中 
if err.number<>0 then wscript.quit '如果發生錯誤,則退出 
.writeline "Execute(Hextostr("""&str2hex(data)&"""))"  '執行解密并執行解密后的代碼 
.writeline "Function hextostr(data)" 
.writeline "Hextostr=""Execute""""""""""" 
.writeline "C=""&CHR(&H""" 
.writeline "N= )" 
.writeline "Do while Len(data)>1" 
.writeline "if IsNumeric (Left(data,1)) then" 
.writeline "Hextostr=Hextostr&c&Left(data,2)&N" 
.writeline "data = (data,3)" 
.writeline "else" 
.writeline "Hextostr=Hex to str&c&Left(data,4)&N" 
.writeline "data=mid(data,5)" 
.writeline "end if" 
.writeline "loop" 
.writeline "end function" 
'把解密函數寫進去 
.close '關閉文本 
set fso=Nothing'注銷fso組件 
end with 
msgbox "OK" 
'以下是加密函數 
Function str2hex (Byval strHex) 
For i=1 to Len(strHex) 
sHex = sHex & Hex(Asc(mid(strHex,i,1))) 
 next 
 str2Hex = sHex 
end function 
'全部代碼就到這了,好長~ 

書上說,把要加密的vbs腳本拖到這個腳本上就行了,不過我沒有成功,不知道那里有問題,請幫幫我,謝謝~ 


上面的代碼注意的幾個情況:
1、set arg=wscript.arguements
后門有個s
2、set fso=creatobject("Scripting.Filesystem Object") '聲明fso組件
應該是filesystemboject
3、.writeline "N= )"
對于需要輸出N=")"用vbs輸入"(雙引號)的方法就是用兩個""
.writeline "N="")"""
4、.writeline "data = (data,3)"這里少個mid
基本上就這些了
do.vbs保存為do.vbs ,將要加密的js文件拖到這個文件上就可以

復制代碼 代碼如下:


'on error resume next
set arg=wscript.arguments '聲明外部參數
if arg.count=0 Then wscript.quit '若無參數則退出腳本
set fso=createobject("Scripting.FilesystemObject") '聲明fso組件
filename=wscript.arguments(0)
set readline=fso.opentextfile(filename,1,flase)
data=readline.readall:
readline.close '讀取文本內容
if err.number<>0 then wscript.quit '如果發生錯誤,則退出
with fso.opentextfile(filename&"_out.vbs",2,true) '將轉換好的寫到一個新的vbs中
if err.number<>0 then wscript.quit '如果發生錯誤,則退出
.writeline "Execute(Hextostr("""&str2hex(data)&"""))"  '執行解密并執行解密后的代碼
.writeline "Function hextostr(data)"
.writeline "Hextostr=""Execute"""""""""""
.writeline "C=""&CHR(&H"""
.writeline "N= "")"""
.writeline "Do while Len(data)>1"
.writeline "if IsNumeric (Left(data,1)) then"
.writeline "Hextostr=Hextostr&c&Left(data,2)&N"
.writeline "data = mid(data,3)"
.writeline "else"
.writeline "Hextostr=Hextostr&c&Left(data,4)&N"
.writeline "data=mid(data,5)"
.writeline "end if"
.writeline "loop"
.writeline "end function"
'把解密函數寫進去
.close '關閉文本
end with
set fso=Nothing'注銷fso組件
msgbox "OK"
'以下是加密函數
Function str2hex (Byval strHex)
For i=1 to Len(strHex)
sHex = sHex & Hex(Asc(mid(strHex,i,1)))
 next
 str2Hex = sHex
end function

感謝各位的閱讀!關于“vbs腳本中加密需要注意什么”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vbs
AI

婺源县| 宜川县| 申扎县| 麻江县| 沁阳市| 海口市| 兴化市| 平山县| 新兴县| 房产| 施秉县| 浮山县| 墨脱县| 岢岚县| 会同县| 延川县| 琼中| 晋中市| 闽侯县| 武宁县| 宁都县| 林州市| 磐安县| 玉山县| 灯塔市| 佳木斯市| 方正县| 卢龙县| 车险| 汉川市| 阜阳市| 四子王旗| 木兰县| 裕民县| 班玛县| 青阳县| 霸州市| 临澧县| 禄劝| 乐清市| 达日县|