flow

C++
C#
Java
Python

Reverse Engineering

C#
1for (int i = 0; i < ins.Count; i++) {
2 if (ins[i].OpCode != OpCodes.Call) continue;
3 if (!IsStringResolver(ins[i].Operand as IMethod)) continue;
4 // ldc.i4 x2 - ldsfld <fake> - ldfld <key> - xor - call
5 if (IsFakeLdfld(ins[i - 2], out var key) &&
6 ins[i - 1].OpCode == OpCodes.Xor) {
7 int off = (c0 ^ c1) ^ FieldValue(key);
8 ins[start].OpCode = OpCodes.Ldstr; // splice plaintext
9 ins[start].Operand = GetString(blob, off);
10 Nop(ins, start + 1, i); // delete the math
11 }
12}
MyeReactor - Resolves encrypted strings and patches the IL

Projects

  1. flare

    A focused Windows launcher that keeps supported titles, game-aware tools, features, and release notes together in one fast interface.

    C++
    flare preview
  2. MyeReactor

    A program to automatically unpack and patch the latest MyeTool build (v1.0.5.4), a .NET executable directed towards Xbox 360 Modding, protected by .NET Reactor and other forms of anti-tempering, anti-debugging, and self integrity checks.

    C#Python
  3. TPNE

    Discord bot featuring an economy, casino style games, moderation, music and voice utilities, and role management features.

    Python
  4. Buy Helper

    Discord bot to run them Jarad Higgins buys for those who fear the elites and wish to not be silenced within the community.

    Python