Are decompilers illegal?

monoman

New Member
Is decompiling software illegal? I found a few programs out there, but I'm curious to know whether they are legal or not - for example would decompiling a copyrighted piece of software, and getting access to the source code be illegal, or is it only illegal to modify the code, and publish it as your own? :confused:

Thanks
 
They are legal to a point. It depends on where you live andwhat copyright/fair use laws exist there and also on what you do with it.

Don't expect to get nice pretty code back either, generally what you are going to get back is some code that more or less does what the executable file did.
 
I should have a look at my local laws then I suppose.

Don't expect to get nice pretty code back either, generally what you are going to get back is some code that more or less does what the executable file did.

So you won't get the exact source code returned?
I'm just gonna have to install the decompiler, and have a good old play around with it I think - In accordance with my local laws of course. :)
 
Is decompiling software illegal? I found a few programs out there, but I'm curious to know whether they are legal or not - for example would decompiling a copyrighted piece of software, and getting access to the source code be illegal, or is it only illegal to modify the code, and publish it as your own? :confused:

Thanks

I probably depends on what you do with the source code...
I'm sure they wouldn't have a problem with you importing your own 3d models and giving them game functions as long as you don't use it in multiplayer...
 
Is decompiling software illegal? I found a few programs out there, but I'm curious to know whether they are legal or not - for example would decompiling a copyrighted piece of software, and getting access to the source code be illegal, or is it only illegal to modify the code, and publish it as your own? :confused:

Thanks

The bolded part is illegal. Also when you sign the EULA, it usually says no modifications are allowed or reverse engineering.
 
Last edited:
The bolded part is illegal. Also when you sign the EULA, it usually says no modifications are allowed or reverse engineering.
Those were my initial suspicions, just curious as to whether the software itself was illegal. I guess decompiling is kind of like certain aspects of torrenting software when it comes to the legitimacy of it - Riddled with loopholes and ambiguity.

Then again I never read an EULA license in my life, I must admit.;)
 
So you won't get the exact source code returned?
Only in a few instances, java bytecodes for example can be decompiled exactly to their source. But most if not all C/C++ decompilers will give you approximate code as it's not really possible to get those back out exactly as they went in
it usually says no modifications are allowed or reverse engineering.
But most also say except to the point allowed by law or something similar.
 
Are you talking about using a key gen to generate a product key to use the software?
No. He's asking about using a program to more or less generate the source code. Most of the time this is done to partially reverse engineer something so that you can offer interoperability with your own software.
 
Decompilers are usually illegal according to the software's EULA or Terms of Agreement.
The user shall not transfer, distribute or dissemble in any way, in whole or in part, any of the software (From my companies Terms of Agreement)

Most companies that produce software have a part this is like this in their Agreements or EULA. The part dissemble means decompile.

Usually by having the software on your computer, you are bound to the EULA or the Agreements, just like a legal contract, so by using a decompiler is therefore illegal, because you are violating the legal contract.

The original point of the decompiler was to help the programmer who owned the program to get their source code back, in case they lost the code.
 
Back
Top