How to protect enigma form dump file

Post here any topics that related to Enigma Protector, its functionality, your misunderstanding, offers to improvements etc etc etc
Post Reply
webcms
Posts: 4
Joined: Wed Sep 04, 2013 4:07 pm

How to protect enigma form dump file

Post by webcms »

Dear Sir.
Could you guide me how to protect enigma form dump file?
I found the exe that protect with enigma protector can dump in memory and all engima protector gone.
Thank You.
Enigma
Site Admin
Posts: 2939
Joined: Wed Aug 20, 2008 2:24 pm

Re: How to protect enigma form dump file

Post by Enigma »

Hi webcms,

If the file can be dumped after protection, and it keeps working, then the file was protected incorrectly, or not enough, no protection features are used.
webcms
Posts: 4
Joined: Wed Sep 04, 2013 4:07 pm

Re: How to protect enigma form dump file

Post by webcms »

can you suggest best setting in protection features should i set it?
Enigma
Site Admin
Posts: 2939
Joined: Wed Aug 20, 2008 2:24 pm

Re: How to protect enigma form dump file

Post by Enigma »

Do you protect a .NET application?
webcms
Posts: 4
Joined: Wed Sep 04, 2013 4:07 pm

Re: How to protect enigma form dump file

Post by webcms »

Yes.

i'm protect .net app and buy use splashscreen.
so it can't use reflector or sae after protect it.
but if i'am use DotnetDumper.
it can dump this exe.
After dump it. engima protector is gone.
and can use reflector or sae.

Do i'm make video to show you?
zop
Posts: 14
Joined: Tue Aug 27, 2013 9:52 pm

Re: How to protect enigma form dump file

Post by zop »

Well, I've added many EP_CheckupIsEnigmaOk() and EP_CheckupIsProtected() in my code, like:

Code: Select all

#if RELEASE
if (EP_CheckupIsEnigmaOk())
    InitializeComponent();
else
    Environment.Exit(0);
#else
    InitializeComponent();
#endif
And something like that in my if-else-while statements:

Code: Select all

#if RELEASE
     if (content.IndexOf("Ok", StringComparison.Ordinal) > 0 && EP_CheckupIsEnigmaOk())
#else
     if (content.IndexOf("Ok", StringComparison.Ordinal) > 0)
#endif
So app do not work after dump.
Also, I recommend to obfuscate your code before protecting it. So those steps are helpful against non-professional reverser.

P.S. Found good topic HERE
Enigma
Site Admin
Posts: 2939
Joined: Wed Aug 20, 2008 2:24 pm

Re: How to protect enigma form dump file

Post by Enigma »

Thanks Zop, yes, this topic is pretty well! http://forum.enigmaprotector.com/viewto ... f=6&t=7952
Post Reply