I have to put a proprietary PHP script on an enemy server in which I know it is going to be copied and used against our company.
I was hoping to obfuscate the PHP, any ideas? The freebies I saw didn't scramble the content and string literals in the code (they just scrambled the function and variable names and tightened up the source code which is not secure enough. Zend would be nice, but I can't be sure this server I will be uploading will have that module (or any other scrambling module).
Any tricks? In theory PHP can use eval(), so I would think the content could be one large garbled encrypted string (one way) that gets dumped into an eval() statement...?
Any help on this subject would be appreciated.