Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.39 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.39 KB

TransformiceSWFExtractor

Extracts useful information (version, connection key..) from browser game called Transformice (www.transformice.com).

Getting Started

You can intitialize TransformiceSWF object from either url or byte[]:

new TransformiceSWF(); // will download fresh swf from transformice.com/Transformice.swf
new TransformiceSWF(File.ReadAllBytes("../path/to/Transformice.swf"));
...
swf.parseData();

After calling parseData() you can access theese parameters:

  • swf
  • version
  • connectionKey
  • xorKey
  • securityIntKey

Perfomance

In current state this tool takes about 6s to find values on my high-end PC (i5-4460, SSD). You can improve perfomance by breaking main searching loop earlier.

Dependencies

Authors

  • Ruslan Devsaider - Initial work - devsaider

See also the list of contributors who participated in this project.

License

This project is licensed under the GNU GPL License - see the LICENSE file for details