What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
Karenderia Multiple Restaurant System Premium

NULLED Karenderia Multiple Restaurant System Premium 2.0.4 NULLED

If you do " nulled" versions by urself (not just compare other people's archives), you would know that the author didn't change anything (except obfuscating js one release).
They asked me how to null this, and I saw that you already posted the nulled version. I just got this article to help them — I didn't null it myself because I don't even have the script. I'm only trying to help.
 
cantinho 's signature
Reacted by:
Karenderia+banner.png


here id for you guys nulled v2.0.6

 
Karenderia+banner.png


here id for you guys nulled v2.0.6

*** Hidden text: cannot be quoted. ***
Hi, thanks a lot for sharing. I was able to install it successfully, but when I tried to access the customer login url ( www.domainname.com/account/login ), then it was automatically redirected to this url ( https://bastisapp.com/activation/ ) so as to confirm the purchase code and activate the system. SO IT SEEMS LIKE THIS SCRIPT IS NOT FULLY NULLED. PLEASE TEST FOR YOURSELF, AND SEE IF THIS CAN BE FIXED. Once again, thanks for sharing.
 
Reacted by:
Hi, thanks a lot for sharing. I was able to install it successfully, but when I tried to access the customer login url ( www.domainname.com/account/login ), then it was automatically redirected to this url ( https://bastisapp.com/activation/ ) so as to confirm the purchase code and activate the system. SO IT SEEMS LIKE THIS SCRIPT IS NOT FULLY NULLED. PLEASE TEST FOR YOURSELF, AND SEE IF THIS CAN BE FIXED. Once again, thanks for sharing.
exactly happened to me to . it seems to be not fully nulled
 
Reacted by:
Para anular este script
Mejoraron la protección para esta versión.
Intentaré explicarlo lo mejor que pueda.

Paso 01
Abra el archivo admin.bundle.js, ubicado en ..\backoffice\assets\js\
Vaya a la línea #1005, Luego debe cambiar la última parte de la cadena de texto:

De...


***Texto oculto: no se puede citar.***



Cambiarlo a...

***Texto oculto: no se puede citar.***


Paso 02
El mismo archivo, ubica la línea #1909, Luego debes cambiar la última parte de la cadena de texto:

De...

***Texto oculto: no se puede citar.***



Cambiarlo a...

***Texto oculto: no se puede citar.***



Paso 03
Localice la clase ItemIdentity
Abra el archivo ItemIdentity.php, ubicado en ..\backoffice\protected\components\

Y cambiarlo a...

[CÓDIGO] Función estática privada performCurlRequest($params)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://google.com?" . http_build_query($parámetros));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$resultado = curl_exec($ch);

curl_close($ch);
devolver $resultado;
}

función estática pública initializeIdentity($object)
{
self::instantiateIdentity();
devuelve verdadero;
}

función estática pública instantiateIdentity()
{
$dominio = Yii::app()->solicitud->getServerName();
$params = ['id' => Yii::app()->params->item_identity, 'dominio' => $dominio];
self::performCurlRequest($parámetros);
devuelve verdadero;
}

función estática pública addonIdentity($addon_name = '')
{
$complemento = AR_complementos::modelo()->find("nombre_del_complemento=:nombre_del_complemento", [':nombre_del_complemento' => $nombre_del_complemento]);

si ($addon) {
$dominio = Yii::app()->solicitud->getServerName();
$params = ['id' => $addon->uuid, 'dominio' => $dominio];
self::performCurlRequest($parámetros);
devuelve verdadero;
}

devuelve falso;
}
}[/CÓDIGO]


Paso 04
Abra el archivo BItemInstant.php, ubicado en .. \protected\components\

Localice la clase BItemInstant y cámbiela a...

[CÓDIGO]<?php
require_once 'php-curl/vendor/autoload.php';
clase BItemInstant
{
constante BITEM_IDENTITY = 'UYIiWfAfWx414it65oUbeXf4I1yjDNSZi2UxnBBLQa8hpHAcVlyP+Sx0OL8vmfcwnzSYkw==';

función estática pública instantiateIdentity()
{
$curl = nuevo anlutro\cURL\cURL;
$dominio = Yii::app()->solicitud->getServerName();
$url = $curl->buildUrl('https://google.com', ['id' => self::BITEM_IDENTITY, 'dominio' => $dominio]);

$curl->get($url);

devuelve verdadero;
}
}
/*fin de clase*/[/CÓDIGO]
Gacias por el dato lo necesitaba xq no me funcionó
 
Reacted by:
To null this script
They improved the protection for this version.
I'll try to explain as best I can.

Step 01
Open the file admin.bundle.js, located in ..\backoffice\assets\js\
Go to the line #1005, Then you must change the last part of the text string:

From...


*** Hidden text: cannot be quoted. ***



Change it to...

*** Hidden text: cannot be quoted. ***


Step 02
The same file, locate the line #1909, Then you must change the last part of the text string:

From...

*** Hidden text: cannot be quoted. ***



Change it to...

*** Hidden text: cannot be quoted. ***



Step 03
Locate the class ItemIdentity
Open the file ItemIdentity.php, located in ..\backoffice\protected\components\

And change it, to...

Code:
  private static function performCurlRequest($params)
    {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://google.com?" . http_build_query($params));
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $result = curl_exec($ch);

        curl_close($ch);
        return $result;
    }

    public static function initializeIdentity($object)
    {                  
        self::instantiateIdentity();
        return true;
    }

    public static function instantiateIdentity()
    {
        $domain = Yii::app()->request->getServerName();
        $params = ['id' => Yii::app()->params->item_identity, 'domain' => $domain];
        self::performCurlRequest($params);
        return true;
    }

    public static function addonIdentity($addon_name = '')
    {
        $addon = AR_addons::model()->find("addon_name=:addon_name", [':addon_name' => $addon_name]);

        if ($addon) {
            $domain = Yii::app()->request->getServerName();
            $params = ['id' => $addon->uuid, 'domain' => $domain];
            self::performCurlRequest($params);
            return true;
        }

        return false;
    }
}


Step 04
Open the file BItemInstant.php, located in ..\protected\components\

Locate the class BItemInstant and change it to...

Code:
<?php
require_once 'php-curl/vendor/autoload.php';
class BItemInstant
{
    const BITEM_IDENTITY = 'UYIiWfAfWx414it65oUbeXf4I1yjDNSZi2UxnBBLQa8hpHAcVlyP+Sx0OL8vmfcwnzSYkw==';

    public static function instantiateIdentity()
    {
        $curl = new anlutro\cURL\cURL;  
        $domain = Yii::app()->request->getServerName();  
        $url = $curl->buildUrl('https://google.com', ['id' => self::BITEM_IDENTITY, 'domain' => $domain]);              

        $curl->get($url);

        return true;        
    }
}
/*end class*/


I just find this, I will check if this works, thank you!
 
Reacted by:
Top