Backend Development

How do I obfuscate php code?

Submitted by CryptAlchemy, , Thread ID: 39441

Thread Closed
03-07-2017, 01:22 AM
#1
Hi, there Nulled!

My friend and I are working on a team project, and some PHP code that I need to put into the FTP server is sensitive.

The code contains some private keys that I simply cannot share with him.

I need a way to hide these keys from him.


I think PHPobfuscation is the only way to, and I'm looking to obfuscate a few lines of PHP.

Is there an online tool that I can use to obfuscate PHPcode?

Thanks in Advance!

RE: How do I obfuscate php code?

#2
I found a simple PHP obfuscator online for you.

So i hope it can help ^^

Here is the link:




edit:
Here a simple test:

PHP Code:
<?php function e8301f72f53ef(a=base64_decode('U3RyaW5n'),b=true,c=1){echo a;if(b){echo base64_decode('VGhpcyBpcyBhIFN0cmluZw==');return c;}}?>


The real function was:
PHP Code:
function SimpleFunction(a="String",b=true,c=1
{
// Some Comment
echo a;
if(
b) {
echo 
"This is a String";
return 
c;
}



So your friend maybe dont get the data if he dont get the idea to test a base64 decoder ^^ (maybe it works if you put it again in the obfuscator)

RE: How do I obfuscate php code?

OP
#3
Very nice! Thank you! Smile

RE: How do I obfuscate php code?

#4
Yeah but wouldn't he be able to also use some tool to unobfuscate it if he really wants the keys?

RE: How do I obfuscate php code?

OP
#5
06-07-2017, 06:56 PM
DonLK Wrote:
Yeah but wouldn't he be able to also use some tool to unobfuscate it if he really wants the keys?

He could if the obfuscation was done poorly; however, if the obfuscation was done very well, it would be challenging for him to determine the keys.

RE: How do I obfuscate php code?

#6
ioncube or http://fopo.com.ar/

RE: How do I obfuscate php code?

#7
fopo.com.ar/ is the best right now

RE: How do I obfuscate php code?

#8
Don't do it and you won't have this problem. Wink

RE: How do I obfuscate php code?

#9
Yes, https://www.google.co.uk/url?sa=t&rct=j&...IGEITqILjg

RE: How do I obfuscate php code?

#10
Nice... Thanks for Informations

Users browsing this thread: 6 Guest(s)