Log in

View Full Version : PHP Encryption Tools



egturnkey
04-15-2009, 02:29 PM
Hello friends,
I've a problem.

My website is a php scripts but nowdays most of hosting are runaway and my stolen my website content and its database

so wt is the best tools to encrpt my php files with no need of

Zend
Ioncube ..ect

i want a tools that like PHPLOCK IT ( it is stand a lone tool ) which means no need to certain setting in hosting servers

but the problem is phplock it is not easily can be decrypt

please share the tool name if you know any >>

thanks in advance

Falkon303
04-15-2009, 05:09 PM
Hello friends,
I've a problem.

My website is a php scripts but nowdays most of hosting are runaway and my stolen my website content and its database

so wt is the best tools to encrpt my php files with no need of

Zend
Ioncube ..ect

i want a tools that like PHPLOCK IT ( it is stand a lone tool ) which means no need to certain setting in hosting servers

but the problem is phplock it is not easily can be decrypt

please share the tool name if you know any >>

thanks in advance

If you are serious about encryption, I would recommend spending some money on it, or writing your own algorithm... That's just my 2 cents.

borikenMedia
04-19-2009, 04:57 PM
quik one!


<?php


function dacript($file){

if(file_exists($file)){

$str = file($file);
$enc = base64_encode($str);
return $enc;

}else{

die("The $file doesn't exists!");

}
}


dacript("c:\bin\yourfile.ext");


?>

borikenMedia
04-19-2009, 07:32 PM
create a .htaccess
write Options -Indexes in it.
if allowed in ur hosting. This will block anyone that try to access any directory.
try a google search about it and get closer to the syntax on the .htaccess files.