vote up 2 vote down star

What is the best way of protecting my source code from being distributed without permission.

I've thought of perhaps moving my source to another server. Also toyed with the idea of obfuscating my code, but this might make it a pain to alter at a later date.

Has anyone any better ideas?

flag

6  
Not worthy of a comment, but obfuscation doesn't solve anything in my opinion. Security by obscurity only keeps the junior hacks away. – Randolph Potter Oct 19 at 10:38
What do you mean by "moving source to another server" and what would you like to achieve by doing this? – Adam Byrtek Oct 19 at 10:55
Some people have access to the current server, If I was to move it to another server they would have no access. – sfusion Oct 19 at 14:25
Is your code THAT awesome for you to keep it to yourself instead of open-sourcing it? Because if it is, you might as well deploy it on a trusted server and earn revenue from it. – Randell Oct 20 at 9:49

7 Answers

vote up 2 vote down

Use Zend, and keep hopes that byte code can't be disassembled into readable source code..

link|flag
3  
If there's a will, there's a way. – Chris Charabaruk Oct 19 at 10:55
vote up 1 vote down

There is a PHP Compiler called PHC. It's still in early development but it has very talented people on board.

link|flag
vote up 1 vote down

Another popular one is ioncube. Requires the ioncube software to be installed on your server though. It's also quite expensive at $199 for the standalone version.

I've just noticed their online version may be much cheaper (although having never used it I'm not sure how expensive it would eventually work out)

See here for cost: http://www.ioncube.com/pricing.php

link|flag
vote up 1 vote down

You could check this list of php obfuscation solutions.

link|flag
vote up 4 vote down

You cant really stop people if they really want to steal your code, you can only make it harder. Even without the source they can still study and copy your ideas to some extent. The nice source just makes it easier as they have a starting point.

link|flag
vote up 1 vote down

If you can host the software you can keep it under-wraps. Any software you distribute must be able to unencrypt itself so the OS can run it. At that point, it can often be reverse-engineered, de-compiled, etc..

The other alternative is to write really bad code or an uninteresting program. In that cases no one will want to copy it, if you you make it available to download for free. For example of such projects, see the last page on Ohloh.

link|flag
Excellent point, now - for the first time - I understand why the Java distribution model was based on the code staying on a server and fee for service being the method of distribution. Should still work even though Java is open for discussion. That's an idea I will keep in mind as I thought about this for years and decided the only solution was to have an operative that runs a disk on target machine and build in detectors. Any ( like you say ) – Nicholas Jordan Oct 20 at 6:48
vote up 0 vote down

Maybe the new Phar file format is a cheap solution?

link|flag

Your Answer

Get an OpenID
or

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