up vote 20 down vote favorite
7
share [g+] share [fb]

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? :)

link|improve this question
5  
Are you sure you need to? – Cheery Oct 24 '08 at 7:32
40  
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 '09 at 14:09
feedback

protected by Robert Harvey Mar 5 '11 at 6:33

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

10 Answers

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|improve this answer
41  
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
16  
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
3  
@JamShady: Obfuscation does not mean you can't fix bugs or make modifications. If you stupidly obfuscate the source code, throw the original away, and insist on maintaining the obfuscated result, yes, you won't be able to do anything. Good obfuscators insist you retain your code and the mapping to the obufscated result; you can debug/modify your original code, ship obfuscated patches to your customers, and even diagnose his problems by using the map to convert obfuscated complaints back into readable ones. He doesn't have the map, which makes this safe. – Ira Baxter Jul 3 '10 at 16:50
3  
Question:How, Answer: You shouldn't = not helpful – cmc Jul 15 '11 at 15:30
5  
@cmc I'm confident plenty of people will directly answer the question, so there's no loss with my taking a different tack. Half the point of asking an expert is they know when you're asking the wrong question to solve the real problem. This is an application of the "5 Whys". en.wikipedia.org/wiki/5_Whys The real problem/question is "how do I stop people from being able to read/steal my PHP code". The answer is if you ship the code you can't, but you can waste a whole lot of time and money trying and gain a false sense of security. Wasn't that more helpful than a list of obfuscators? – Schwern Jul 15 '11 at 18:48
show 12 more comments
feedback

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

link|improve this answer
19  
Or just switch to Perl ;-) – Ferruccio Oct 24 '08 at 11:56
4  
Good. Language independent obfuscation. – André Pena Oct 22 '09 at 16:06
Funny yet true as it will be a pain to modify, upgrade, or anything even for yourself. – Travis Pessetto Aug 18 '11 at 21:31
For a small one-man-job this might actually work. I once worked for a multi-million dollar company where the entire codebase was like this (while it did meet an unchanging customer need). Based on this experience here are my humble worst-practice recommendations in PHP: (1) Use all global variables (2) use no functions or objects (3) use import_request_variables('gpc') (4) mangle variable names with a regex (5) use constants for literals without external referene, then preprocess the code to replace them with their literal value (6) preprocess the code to produce unnecessary code duplication – cmc Dec 13 '11 at 0:33
feedback

you can try php protect which is a free php obfuscator to obfuscate your php code.

it is very nice and easy to use and its free. as for what others have wrote here about not using obfuscation because it can be broken etc.. i have only one thing to answer them - dont lock you house door because anyone can pick your lock. this is exactly the case , obfuscation is not meant to prevent 100% code theft. it only need to make it a time consuming task so it will be cheaper to pay the original coder. hope this helps.

link|improve this answer
1  
+1 for pointing out the fact that obfuscation is about making it Harder, not impossible. – ashy_32bit Sep 27 '11 at 14:19
Great answer! The good one! – Fernando Nov 24 '11 at 0:40
feedback

The best I've seen is Zend Guard.

link|improve this answer
2  
The SD PHP Obfuscator is just as good, and costs about 1/5th. – Ira Baxter Sep 4 '09 at 4:15
ionCube is better ;) – SalmanPK Mar 21 '11 at 22:20
feedback

I'm not sure you can label obfuscation of an interpreted language as pointless (I'm unable to add a comment to Schwern's post, so here goes a new entry).

I think it's a little shortsighted to assume you know all the possible scenarios where someone would like to obfuscate code, and you assume that anyone will actually be willing to go to whatever necessary lengths to view that code once obfuscated. Consider my current scenario:

I work for a consulting company that is developing a large and fairly sophisticated PHP-based site. The project will be hosted on a client's server that is hosting other sites developed by other consultancies. Technically any code we write is owned by the client, so we can't license it. However, any other consultancy (competitor) with access to the server can copy our code without getting permission from the client first. We therefore have a genuine reason for obfuscation - to make the effort required for a competitor to understand our code more than the effort of creating a copy of our work from scratch.

link|improve this answer
feedback

Nothing will be perfect. If you just want something to stop non-programmers then here's a little script I wrote you can use:

<?php
$infile=$_SERVER['argv'][1];
$outfile=$_SERVER['argv'][2];
if (!$infile || !$outfile) {
    die("Usage: php {$_SERVER['argv'][0]} <input file> <output file>\n");
}
echo "Processing $infile to $outfile\n";
$data="ob_end_clean();?>";
$data.=php_strip_whitespace($infile);
// compress data
$data=gzcompress($data,9);
// encode in base64
$data=base64_encode($data);
// generate output text
$out='<?ob_start();$a=\''.$data.'\';eval(gzuncompress(base64_decode($a)));$v=ob_get_contents();ob_end_clean();?>';
// write output text
file_put_contents($outfile,$out);
link|improve this answer
feedback

Try this one: http://www.pipsomania.com/best_php_obfuscator.do

Recently I wrote it in Java to obfuscate my PHP projects, because I didnt find any good and compatible ready written on the net, I decided to put it online as saas, so everyone use it free. It does not change variable names between different scripts for maximum compatibility, but is obfuscating them very good, with random logic, every instruction too. Strings... everything. I believe its much better then this buggy codeeclipse, that is by the way written in PHP and very slow :)

link|improve this answer
Looks good... but is it secure? I mean, can others decrypt it easily? – dskanth Jan 21 '11 at 10:50
I can assure you that by this moment NOBODY can de-obfuscate the code obfuscated by this obfuscator. – PatlaDJ Jan 23 '11 at 9:56
[citation needed] - homebrew encryption is security through obscurity, which is no security at all. – Chris Jul 20 '11 at 15:50
pipsomania apparantly replaces some variables names by names obfuscated as ${GLOBAL[<randomstring>]}, which isn't much differnt than replacing those variable names with $<randomstring>, except that it slows down code execution. But it doesn't obfuscate function names, class names or member names. It adds some extra assignment statements but they don't seem to be anything except extra assigment statements. – Ira Baxter Jul 30 '11 at 23:09
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in ..... Line 1 o_O – Fernando Nov 24 '11 at 0:52
feedback

See our SD Thicket PHP Obfuscator for an obfuscator that works just fine with arbitrarily large sets of pages.

Yes, it obfuscates identifiers identically across pages; if it didn't do that, the result wouldn't work.

link|improve this answer
feedback

Obfuscation is only adding another layer of potential bugs and security vulnerabilities to your program. Please don't do it.

The kind of people who write obfuscation software usually seem very sketchy and non-skilled anyways...

If your code is "great", crackers will go through great lengths to spread it, regardless of weather or not it is obfuscated. If nobody knows/cares about your code, they probably wont, either.

link|improve this answer
1  
Nonskilled? Based on what evidence? I write them. Check my bio before you go making sweeping generalizations. semanticdesigns.com/Company/People/idbaxter – Ira Baxter May 11 '10 at 0:29
2  
@Ira: My statement still holds. Most obfuscated code can be broken within minutes. I specifically meant, most people who do it are unskilled, not all. First thing that came to mind was Ioncube, and surely enough, it had a vulnerability published: osvdb.org/show/osvdb/41708. Then again you could probably partially blame that on PHP's obscure security requirements. – Longpoke May 11 '10 at 2:16
OK, you are suggesting that people don't use bad products, or those designed by non-skilled people. Hard to disagree with this. – Ira Baxter Jul 3 '10 at 16:47
Nope, I'm suggesting that obfuscation is harmful because it decreases my confidence that a program I'm using works and it massively increases the chance of introducing security vulnerabilities; not something we need more of in today's systems. I really doubt a company's profit is largely influenced by whether or not they use obfuscation. – Longpoke Oct 2 '11 at 16:25
Obfuscation, if done with a reliable tool, changes nothing about the reliability of a program. Binary compilation is a kind of extreme obfuscation, and yet I'd guess you are confident that Zend's PHP engine is reliable. (Obfuscation or compilation done with bad tools shouldn't count). – Ira Baxter Oct 2 '11 at 19:12
show 5 more comments
feedback

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