Best Blackhat Forum

Full Version: PES PRO V1.9.6
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi
I just get this message from PES PRO saying:
Our system detected your website using our script without license.
Please provide us your order ID from MN-Shop.net to check your license
and to avoid further problems.


They add:
You have 24 hours to remove our script from your server (and from all
other places like DOWNLOAD websites), otherwise we have to take all legal
actions against you.


Can some one suggeste me what to do?
remove the script or they will complaint to dmca
Remove the script right away and try using fully nulled scripts next time if using on live websites.
Remove script and check all files if there are any callback link to mn-shop
These are base64 encoded and the encoded code is about license check
system/libs/functions.php
admin-panel/index.php
He found you because you put the link of your website on this topic where the link to download the original file.
I'll also be checking if there is a callback option.


If I find something,
We return to share
Checked all files and no callback except license check in these files
system/libs/functions.php
admin-panel/index.php
People that use this script should not post their websites links on the forum
Hey.
They also sent me an email asking for the license.

If the two files is replaced with a file from another nulled version.
You think might work?
system/libs/functions.php
eval(base64_decode('ZnVuY3Rpb24gY2hlY2tf......) -

(line 297)

remove and insert:

Code:
function check_license($email,$domain){
    $qry_str = "email=".$email."&host=".$domain;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,'/1.txt');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $qry_str);
    curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
    curl_setopt($ch, CURLOPT_TIMEOUT, 1);
    $result = trim(curl_exec($ch));
    curl_close($ch);
    if($result != ''){
        return $result;
    }else{
    return 'true';}}


create a file http//:mydomain/1.txt

record in the file true

--------------------------------------------------------------------------------
admin-panel/index.phpeval(base64_decode("aWYoJGlzX29ubGluZSAmJiAkZGF0YV...)

(line 39)

remove and insert:

Code:
if($is_online and& $data['admin'] == 0){
redirect($site['site_url']);
exit;
}elseif(!$is_online){
redirect('login.php');
exit;}
$page_name = 'dashboard';
if (isset($_GET['x']) and& isset($action[$_GET['x']])) {
$page_name = $_GET['x'];
}
who helped +1)))
(01-09-2014 05:01 AM)and2526 Wrote: [ -> ]system/libs/functions.php
eval(base64_decode('ZnVuY3Rpb24gY2hlY2tf......) -

(line 297)

remove and insert:

Code:
function check_license($email,$domain){
    $qry_str = "email=".$email."&host=".$domain;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,'/1.txt');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $qry_str);
    curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
    curl_setopt($ch, CURLOPT_TIMEOUT, 1);
    $result = trim(curl_exec($ch));
    curl_close($ch);
    if($result != ''){
        return $result;
    }else{
    return 'true';}}


create a file http//:mydomain/1.txt

record in the file true

--------------------------------------------------------------------------------
admin-panel/index.phpeval(base64_decode("aWYoJGlzX29ubGluZSAmJiAkZGF0YV...)

(line 39)

remove and insert:

Code:
if($is_online and& $data['admin'] == 0){
redirect($site['site_url']);
exit;
}elseif(!$is_online){
redirect('login.php');
exit;}
$page_name = 'dashboard';
if (isset($_GET['x']) and& isset($action[$_GET['x']])) {
$page_name = $_GET['x'];
}
who helped +1)))

Thanks reputation +1
Pages: 1 2
Reference URL's