Archive

Posts Tagged ‘obfuscation’

Hey guys!

December 4th, 2009 Dominic Gunn 14 comments

Just wanted to post another quick update, to tell you that updates may not be as frequent over the weekend, jam packed with things to do but i’ll work on this the best I can! Deobfuscation is going great.

I’ve looked at everyones posts regarding a forum and for now have decided to just, ignore them! There is no plans for a forum as yet!

Anyway, might as well give you an example of the deobfuscation so far, this is a snippet of the BigInteger() class!

Obfuscated:

public function _-Bl() : BigInteger
{
	;
	var _loc_1:* = (null * (( <= _loc_1) * null))._-03q();
	_-Pq._-RC(this, _loc_1);
	return _loc_1;
}

Deobfuscated:

public function negate():BigInteger
{
	var r:BigInteger = nbi();
        ZERO.subTo(this, r);
        return r;
}

Expect more in the coming days!

Dominic Gunn