
Originally Posted by
godsfshrmn
How/what exactly does this script do?
It makes your scripts safe from editing, and optionally can limit the use of the
script to ONE host/IP address.
It does this by encrypting/scrambling the script, then (optionally) compressing it, then encoding it to base64
this script
PHP Code:
<?php
echo "This is an unprotected script.";
?>
Looks like this after you run freelock on it :
PHP Code:
<?php $use_zlib='y'; if(!file_exists('freelock.php')) { echo "freelock not found -
exiting"; exit; }
$s1="Ny3nsSnafix3GBZdArhgqVebgRuegUJgh9lOrIrmmLpNqP07tg7auxX3q7TWO5Vc
Hqp3/hY0V7XOD1x9xnuV6QtTFxLxQvFmBQduaL+WVwoOj69hCrZP0XR0hnimQXvuC
Bl/gzNCd5icc9aFOhkZQC8hBzVMSD0+7jPFZdEU18gfpdTg542JaDnPHimMJ6gpfoqkkh
3Q2ct02UoDdE0tsmarHGAj1i1IP8CsEAA9GtGBRrRGwrZ5nYqEJ03d0b2pmKxNrz6TB38
a"; include_once('freelock.php'); freelock_run($s1); ?>
All you need to distribute with your script is freelock.php (which is also encoded)
Does that help?
Bookmarks