XenocodeRCE / Noisette-Obfuscator

An Obfuscator for .NET assembly
GNU General Public License v3.0
252 stars 76 forks source link

What is Constant Melting? #15

Closed marknefedov closed 7 years ago

marknefedov commented 7 years ago

I don't quite understand what it is doing.

XenocodeRCE commented 7 years ago
string markusgod = "test_123";

will become :

string gg54d6f54g;
string iuo646;
[...]
iuo646 = "test_123";
gg54d6f54g = iuo646;
string markusgod = gg54d6f54g;
marknefedov commented 7 years ago

Oh. thanks!