nulling scripts how do i?

dumdum4gumgum

Power Member
Joined
Oct 16, 2008
Messages
596
Reaction score
345
Any one have a tut on how to null scripts? would be greatly appreciated
php zend script running ion
 
well first you have to dezend. there are some services for this. then you have to null the licensing which means you'll need to be good in php. if you knew php you wouldn't need to ask this question.
 
Look for some cURL functions as most call home functions use them.
 
also, many scripts do their licensing in this sort of way:

PHP:
if (licensecheck() ) {

  //continue with script
} else { die('invalid license'); }

so if that were the case you could simply do:

PHP:
if (!licensecheck() ) {

  //continue with script
} else { die('invalid license'); }

since the ! causes it to evaluate opposite, the script will execute the restricted code if the license is invalid rather than valid.

This is just one of several things you might have to do. hope this helps you.
 
ive tried doing the whole dezending and come back with this error

\\dezenders\\PHP5\\index.php</b> requires the ionCube PHP Loader ".basename( $__ln )." to be installed by the site administrator.";
 
That is because your dezender requires the ioncube loader.
You'll need to download this and put it in the same dir.
 
scripts with ioncube are hard to crack
 
yup, but looks like his dezender is ioncubed itself
 
zend file encrypting is old now, 90% of scipting companies are using ioncube, this is to prevent you from viewing the source code and even harder to find a decoder that works. Very few people will share their program if it works, becareful of scams that charge you $5+ to decode a ioncube file.
 
Back
Top