Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 71 results for
decompilation
- Page 1
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by kvprajapati
…;how to protect .NET exe and dlls against
decompilation
?.[/b] Some kind of
decompilation
will always be possible using reflection and similar…
protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by VIeditorlover
… some ways how to protect .NET exe and dlls against
decompilation
. [B]I am not interested in any form of obfuscation…
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by sknake
Sign your assemblies and don't distribute your application. The .NET assemblies are in MSIL so they can always be decompiled.
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by VIeditorlover
Well, I am looking forward to some tool which woukld work like NGEN.exe and convert managed s..t into true machine code ???
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by Narue
[B]>the only goal is strong protection.[/B] Why does your code need to be protected? Usually when someone asks for this, they're under the false impression that not being able to (easily) reverse engineer the code somehow makes the application more secure.
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by ddanbe
Way back in the previous century there was a saying that code that was TOP SECRET so that nobody could view it, was mostly code that was so badly written that it was a shame to show it to other people...
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by kplcjl
There has never EVER been a way to stop decompiling code. (You can ALWAYS get the assembler code.) Strong naming or using Authenticode on a strong named assembly WON'T protect you from someone decompiling your code. The only thing both will do is authenticate your modified stolen code didn't come from you. All you need is someone who cares enough …
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by kplcjl
[QUOTE=VIeditorlover;1096735]Well, I am looking forward to some tool which woukld work like NGEN.exe and convert managed s..t into true machine code ???[/QUOTE] As I said before you still haven't stopped anyone from decompiling your code. My nephew has written an assembler routine that turbo-charges C# code. I don't know how it works and I …
Re: protecting .NET code against decompilation
Programming
Software Development
15 Years Ago
by ghimangi
Some protection is better than no protection. Obfuscation of .Net code is a very good obstacle which a hacker will need to overcome. Some obfuscators such as Crypto Obfuscator ( [URL="http://www.ssware.com/cryptoobfuscator/obfuscator-net.htm"]http://www.ssware.com/cryptoobfuscator/obfuscator-net.htm[/URL] ) use multiple levels of …
Re: protecting .NET code against decompilation
Programming
Software Development
13 Years Ago
by NetDeveloper
You can try [URL="http://www.vgrsoft.com/en/products/ilp"]ILProtector[/URL] [QUOTE]ILProtector protects your .NET code against reverse engineering, decompiling and modifying. ILProtector transforms Intermediate Language (MSIL) code into a Virtual Machine ("VM") specific form that is not recognized by disassemblers and …
Re: protecting .NET code against decompilation
Programming
Software Development
13 Years Ago
by jbennet
Just obsfucate. Dotsfucator comes free with VS pro.
Re: protecting .NET code against decompilation
Programming
Software Development
13 Years Ago
by skatamatic
The only way to prevent someone from reverse engineering your code is to [B]not give them your program[/B]. This might sound like an oxymoron, but it really isn't. Think about client/server apps - the client only knows its inputs and outputs and not [B]how the inputs got transformed into the outputs[/B]. That part is the server's job, and …
Re: protecting .NET code against decompilation
Programming
Software Development
13 Years Ago
by thines01
Making it web-only also creates some distance between the user/hacker and the source code.
Re: protecting .NET code against decompilation
Programming
Software Development
10 Years Ago
by alex.s.gap
Managed code can be virtualized. That makes it as strong as the native code if not stronger. Take a look at [Code Virtualization](http://www.gapotchenko.com/eazfuscator.net/features/virtualization)
Re: protecting .NET code against decompilation
Programming
Software Development
10 Years Ago
by JOSheaIV
There are tool to obfuscate out there, which I can confirm do scramble the code up to prevent decompiling. There are free ones out there, but well they are free, so you get what you get (I personally haven't used any yet). We use one at my work, but it was rather expensive if I recall right. That being said I can confirm it works very well. Also…
Driver help Needed!!
Hardware and Software
Microsoft Windows
19 Years Ago
by simonetheridge
…..Video memory: C000:0080 1 MB Device Revision: 0.0..
DECOMPILATION
OR DISASSEMBLY PROHIB C000:00C0 ITED.....Copyright (C) 1999 Intel…
VB6 Decompile for Native Code
Programming
Software Development
17 Years Ago
by winInMFC
… think of packing my .exe with a shell to avoid
decompilation
.:icon_sad:
.NET licensing system and protection
Programming
Software Development
16 Years Ago
by jan1024188
… also looking for good .NET code protection system, which makes
decompilation
of .NET program impossible (again, easy to use). The price…
Deploy .NET 3.5 Apps With No Framework Update
Hardware and Software
Microsoft Windows
16 Years Ago
by EddieC
… available method. Intellectual property is protected from reverse engineering or
decompilation
by means of code obfuscation included with the product. Packaged…
Protecting a password to a database
Programming
Software Development
15 Years Ago
by gisek
… in the code, to prevent it from being captured during
decompilation
, or something like that? I must point that the password…
Protecting code from decompilation
Programming
Software Development
15 Years Ago
by dchunt
Is there any language or way to write a program that is about 10000 lines in such a way that it can't be re-engineered by decompiling it ? What options are available to pursue ? Thank you for your time..
Re: Protecting code from decompilation
Programming
Software Development
15 Years Ago
by William Hemsworth
[QUOTE=dchunt;1054313]Is there any language or way to write a program that is about 10000 lines in such a way that it can't be re-engineered by decompiling it ? What options are available to pursue ? Thank you for your time..[/QUOTE]C++ isn't really decompilable, it's possible to turn the machine code back to C-Instructions with meaningless …
Re: Protecting code from decompilation
Programming
Software Development
15 Years Ago
by Clinton Portis
In my opinion, I think it's possible to decompile an .exe into a somewhat hackish assembly code.... where if a person has a lot of time on their hands, could do a translation from assembly to a higher level lanaguage. (which of course, would probably not even be close to the original code... even if the person knew which language it was coded in…
Re: Protecting code from decompilation
Programming
Software Development
15 Years Ago
by kolosick.m188
Why would they want to decompile it anyway?
Protecting sensitive data from decompilation
Programming
Software Development
15 Years Ago
by reanopp
Hi guys, We have some sensitive information in a Visual C#.NET app (an app that needs to be distributed to end-users). Examples of this information would be a connection string for a MySQL database on our servers, and encryption keys that the program uses to decrypt some datafiles. When the program is compiled, even using something as simple …
Re: Protecting sensitive data from decompilation
Programming
Software Development
15 Years Ago
by Salem
Arrange to distribute the sensitive information by another channel to known individuals at each client site.
Re: Protecting sensitive data from decompilation
Programming
Software Development
15 Years Ago
by reanopp
That's unfortunately not an option, since most of the targeted end-users (it's a commercial product) wouldn't know what an encryption key or db connection string even is.
Re: Protecting sensitive data from decompilation
Programming
Software Development
15 Years Ago
by Salem
Consider it an opportunity to sell some training then.
Re: Protecting sensitive data from decompilation
Programming
Software Development
15 Years Ago
by reanopp
I rather see this as an opportunity to find out how other people protect certain pieces of information inside their source code :P
Re: Viewing java classes
Programming
Software Development
20 Years Ago
by jwenting
Nothing will stop
decompilation
but the usefulness to human readers of the generated code …
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC