Information Security/Malware

VBscript를 이용하여 역순코드로 만든 난독화 알고리즘

hakawati 2013. 8. 30. 17:29

vbscript


wei = ""

function UnEncode(cc)

for i = 1 to len(cc)

if mid(cc,i,1)<>"มี" then

temp = Mid(cc, i, 1) + temp

else

temp=vbcrlf&temp

end if

next

UnEncode=temp

end function

document.write(UnEncode(wei))

반응형