Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you hide your php source code?

Tags:

php

hide

I have a php page which contains keys and salts and I would like to hide such information just in case. Anyone know a good free software that could do this?

I have both zend and ion installed on my server, which I heard some source scramblers use. Any ideas?

like image 946
user962449 Avatar asked Sep 25 '11 23:09

user962449


1 Answers

Your PHP source cannot be viewed directly via browser. You can obfuscate the php files on the server for extra protection. Obfuscation makes it more difficult for an attacker to understand your code, if he eventually gets in. Remember to keep an un-obfuscated back-up of your files.

Check Out

Obf

http://www.pipsomania.com/best_php_obfuscator.do

Zend Guard

Or just search for http://www.google.com.ng/search?sourceid=chrome&ie=UTF-8&q=php+obfuscator

like image 165
Mob Avatar answered Sep 23 '22 17:09

Mob