Backend Development

How do I obfuscate php code?

Submitted by CryptAlchemy, , Thread ID: 39441

Thread Closed

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)

Users browsing this thread: 1 Guest(s)