vote up 2 vote down star

Hey! Has anybody used a good obfuscator for PHP?, I've tried some but they dont work for very big projects. They can't handle variables that are included in one file and used in another, for instance.

Or do you have any other tricks for stopping the spread of your great code? :)

flag
Are you sure you need to? – Cheery Oct 24 '08 at 7:32
from what I've seen of PHP, it's already obfuscated ;-) – Steven A. Lowe Oct 24 '08 at 7:46
Get this prog -> devpro.it/remove_phpcomments It's really good!!! – AntonioCS Jun 4 at 14:09

10 Answers

vote up 0 vote down

Why would you need an obfuscator for code that lives on your own server? (Not that there is any point to an obfuscator in any other circumstance).

link|flag
vote up 0 vote down

Unless you're selling the code to others, why would you need to obfuscate it? It's not visible to the outside world unless you show them.

link|flag
vote up 5 vote down

The best I've seen is Zend Guard.

link|flag
1  
The SD PHP Obfuscator is just as good, and costs about 1/5th. – Ira Baxter Sep 4 at 4:15
vote up 0 vote down

Hello and good day for everyone

You can try PHP Obfuscator from Raizlabs and you can get in on http://www.raizlabs.com/software/phpobfuscator/

the keys ? Encode and obfuscate PHP code, functions and variables

Exclude particular variables, functions or files from obfuscation and encoding

Process large projects with command line tools and project files

Open source and 100% free

Thats all. With no more.... bye bye

link|flag
In the Perl world, most obfuscators are easily defeated by perltidy. PHP's tidy can probably do the same. Looking at what that obfuscator does, it's just an annoyance. – Schwern Oct 24 '08 at 7:43
That obfuscator doesn't work for classes! It doesn't remove the comments when it sees classes, just adds a line at the top saying the file has been obfuscated (when it hasn't) – AntonioCS Jun 4 at 9:22
vote up 19 vote down

People will offer you obfuscators, but no amount of obfuscation can prevent someone from getting at your code. None. If your computer can run it, or in the case of movies and music if it can play it, the user can get at it. Even compiling it to machine code just makes the job a little more difficult. If you use an obfuscator, you are just fooling yourself. Worse, you're also disallowing your users from fixing bugs or making modifications.

Music and movie companies haven't quite come to terms with this yet, they still spend millions on DRM.

In interpreted languages like PHP and Perl it's trivial. Perl used to have lots of code obfuscators, then we realized you can trivially decompile them.

perl -MO=Deparse some_program

My advice? Write a license and get a lawyer. The only other option is to not give out the code and instead run a hosted service.

See also the perlfaq entry on the subject.

link|flag
3  
I mostly agree with you, but the OP asked for a product recommendation, not a lecture on the merits of open source. – Eli Dec 2 '08 at 22:50
Has nothing to do with Open Source, which is about mashing up the code not just being able to see it. The reality is that any code or data which runs on a user's machine is ultimately transparent no matter how you compile or obfuscate or encrypt it, full stop. The OP needs to understand that. – Schwern Dec 7 '08 at 5:50
vote up 0 vote down

Thanks for the answers.

We are a small company so we don't have a server, but maybe thats worth looking at soon, it should solve the problem.

Yeah I don't like to obfuscate and sell the code either. I guess it isn't a real problem if you have a license.

I tried the raizlabs, was not satisfied. Guess I've made a framework that they cant handle.

link|flag
Use a Virtual Private Server instead of shared hosting; it's marginally more, but costs a lot less than co-location. – Nathan Strong Oct 25 '08 at 17:04
vote up 0 vote down

I think the main player in this area is ionCube, which is also first (paid) results in Google: http://www.ioncube.com/sa_encoder.php

link|flag
vote up 7 vote down

Write bad code, then it comes pre-obfuscated ;)

link|flag
Or just switch to Perl ;-) – Ferruccio Oct 24 '08 at 11:56
Good. Language independent obfuscation. – AndrĂ© Pena Oct 22 at 16:06
vote up 0 vote down

I would like to echo Schwern's comment about not being able to fix bugs and make modifications. If you're planning on selling/supporting your software, the obfuscation will just make your life hell as you'll be really limited in any sort of debugging you can do on a live server.

link|flag
vote up 0 vote down

free ones at: http://www.voormedia.com/en/tools/html-obfuscate-scrambler.php

quite good.

link|flag

Your Answer

Get an OpenID
or

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