Tell me more ×
Answers OnStartups is a question and answer site for entrepreneurs looking to start or run a new business. It's 100% free, no registration required.

Are there any well-known cases of open source piracy?

By that I mean cases where a developer releases their project with an open source license and someone else takes their product and markets it successfully, to the detriment of the original developer. It seems like raiding GitHub for code and pumping out cheap software is a possible business model; I'm wondering if there are well known cases of people doing that.

Note after answer 1

An example of the kind of scenario I'm thinking of: Company A develops their amazing open-source software (for example, WordPress) and publishes code on GitHub during development. During the alpha release of the software company B takes the code, makes a couple superficial changes, re-brands it, and then commercializes the software. Company A then has to compete with company B, and this seriously affects their bottom line.

Are there any known examples of this happening?

share|improve this question
Linux distros? But then again, they charge for the auxiliary services, not the actual open-source code. – littleadv Nov 16 '12 at 19:46
Hm, that's an interesting example worth looking into. – ted.strauss Nov 16 '12 at 21:42

1 Answer

up vote 3 down vote accepted

It depends on the licensing included in the open source project if this is legally possible or not. Some licenses leave open the possibility of taking the source and packaging it as a binary and distributing it for money without really providing any extra value.

4.5 How does the BSD license differ from the GNU Public license? Linux is available under the GNU General Public License (GPL), which is designed to eliminate closed source software. In particular, any derivative work of a product released under the GPL must also be supplied with source code if requested. By contrast, the BSD license is less restrictive: binary-only distributions are allowed. This is particularly attractive for embedded applications.

Taken from http://www.freebsd.org/doc/en/articles/explaining-bsd/comparing-bsd-and-linux.html

I can't really think of any cases of software that has an open source license that does not permit redistribution as a binary without source like GPL licensed software being stolen. If that were to happen the thief could be prosecuted though assuming the license is deemed valid by whatever body enforces rules where they live.

Also a developer who is attempting to protect their work doesn't need to post it to GitHub (or can pay for a private account). It's fairly cheap to setup a Git server (or other Subversion system) at home with RAID (mirroring the data for backup) and have a secure solution for code that you want to keep private. If someone is using GitHub, they are generally okay with people taking the code, and those who want to try and take legal recourse if someone else benefits from their work and gives them no credit then a license just needs to be included.

share|improve this answer
Thanks for your comments. Your answer is slightly tangential to the question I intended, but a valuable perspective nonetheless. I'll try to post some mroe details of what i mean in the question body later today. Cheers – ted.strauss Nov 19 '12 at 15:01
@ted.strauss no problem. Yeah I know this isn't really a direct answer because like I said I haven't heard of any cases of this really, but just trying to get out some info about why this is probably not generally going to happen. Most software worth a grain of salt has some sort of license associated with it, which may or may not allow re-use. There are cases of companies like Oracle going after Google for using source from Java but it's not exactly what you're getting at either I don't think. – shaunhusain Nov 20 '12 at 0:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.