Hello.
I am not some script kiddie trying to steal other’s work, I am just trying to learn new things, and have been trying to deobfuscate some actionscript. I’m actually confused how they did it in the first place, but and example would be:
var \x1 = 375;
while (\x1 == 375)
{
\x1 = \x1 + 519;
break;
} // end while
if (\x1 == 894)
{
\x1 = \x1 - 93;
} // end if
if (\x1 == 801)
{
\x1 = \x1 - 798;
}
else
{
}
I am quite baffled, I have deobbed java before, but never actionscript. Any insight on this?