Any free way to create unreadable exe file yet?

G

Guest

I have not looked into this for a year or so, but I'm interested again in
such a tool so I'm wondering if anyone knows of somethign out there that
exists..

Basically I want to be able to create an exe out of my C# project like
traditional c++ where the file is simply unreadable. Almost any exe I have
made from .NET I can pop into a simple decompiler and read the source in it's
entirety.

There was some expensive software by RemoteSoft called .NET Protector which
seemed to do what I would like...

Anything like that now but free/open source?
 
W

Winista

Community edition of Dotfuscator gets installed with VS. That can be a
starting point. Otherwise your best would be to get the commercial versions
of this dotfuscator or something like Wise Owl's obfuscator.

http://www.netomatix.com
 
G

Guest

The products that you mention are obfuscators and do not do what MrNobody
refers to. The Protector product he refers to actually compiles the .NET
assembly to the equivalent of machine code, therebly rendering decompilers
completely useless. I haven't seen any non-commercial implementations
however.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
 
S

SP

MrNobody said:
I have not looked into this for a year or so, but I'm interested again in
such a tool so I'm wondering if anyone knows of somethign out there that
exists..

So what have you been doing in the interim?
Basically I want to be able to create an exe out of my C# project like
traditional c++ where the file is simply unreadable. Almost any exe I have
made from .NET I can pop into a simple decompiler and read the source in
it's
entirety.
There was some expensive software by RemoteSoft called .NET Protector
which
seemed to do what I would like...

Are there specific parts of your software that you feel will be copied by
other people? Expensive is a relative term when you consider your investment
of time and money. If this is the product you really want then I would
contact RemoteSoft and see if you can work out the $$$ (especially if it is
a non commercial project). Otherwise look at obfuscation to see if it will
give you the level of protection you feel is required.
Anything like that now but free/open source?

SP
 
S

SP


Quoting the article
"No Intellectual Property Protection. Many people believe that it might be
possible to ship NGend files without shipping the files containing the
original IL code thereby keeping their intellectual property a secret.
Unfortunately, this is not possible. At runtime, the CLR requires access to
the assemblys metadata and the NGend files do not contain the metadata."

SP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top