Mind looking at this malware dropper I found?
Note: this isn’t actually malware, it just borrows obfuscation techniques from low quality malware.
Using PEiD we identified it was a .NET Binary, let’s use Reflector or another decompiler to inspect the C# code:
It seems the binary is loading itself and split into 3 parts which can be extracted with the following script:
Here we are with :
a binary which do the splitting
an another PE
some encrypted text
Once again we run Reflector on the second PE to discover what it does.
It appears the string was only “gzipped” after extracting it we have another .NET PE..
With the source code I recompiled it online using ideone, the output was the flag :D