Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

samboon

New member
Sep 20, 2022
0
0
0
Hello
I install V5-5-4 to step5
Appear
HTTP ERROR 500 error
My database has MySQL 5.6
Even if I manually import shop.sql
Jump to step6
Same as HTTP ERROR 500
What to do
thank you all
 

r3turn_z3r0

Well-known member
Feb 3, 2020
141
175
50
Paradise
Simplest way to null Active eCommerce CMS:

1. Navigate to (and open) this file: vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php. Replace its content with:
PHP:
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
    public static function instantiateShopRepository() {}

    public static function initializeCache() {
        foreach(Addon::all() as $addon){
            if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
                Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
                    return 'yes';
                });
            }
        }
    }
}
That's nicknamed "First line of Defense"


2. Open vendor/laracon21/colorcodeconverter/src/Colorcodeconverter.php, delete the entire if construct from Line 18 to Line 28. We call this one the "Lucky Number 5 Naughty List Lottery" :ROFLMAO:


3. Open vendor/laracon21/combinations/src/routes/web.php, delete the contents of the "token" GET route. It should then look like this:
PHP:
Route::get('/migrate/products/{token}', function($token){});
That one is called "Pirates of the CariJavabbean"


4. Open app/Http/Controllers/IyzicoController.php, find the function named initPayment and delete its contents. When you're done, it should look like this:
PHP:
public function initPayment(Request $request){}
That one is aptly named "Backdoor into your Mom's basement" :ROFLMAO:


5. Enjoy!!



Optional: If you're familiar with the command line, you may run:
Bash:
php artisan ide-helper:generate
Your IDE Helper indices will be regenerated to reflect the changes in CoreComponentRepository class signature. This is an optional step for those doing custom development with Active eCommerce via an IDE (PhpStorm, VS Code, etc.)




BONUS - FOR THOSE USING THE FLUTTER APP

1. Find the function named create_balance_reference in app/Utility/NagadUtility.php and replace it with the following:
PHP:
public static function create_balance_reference($key)
{
    if (Cache::get('app-activation', 'no') == 'no') {
        Cache::rememberForever('app-activation', function () {
            return 'yes';
        });
    }
    return true;
}


2. Find the function named create_wallet_reference in app/Utility/PayhereUtility.php and replace it with the following:
PHP:
public static function create_wallet_reference($key)
{
    if (Cache::get('app-activation', 'no') == 'no') {
        Cache::rememberForever('app-activation', function () {
            return 'yes';
        });
    }
    return true;
}


Now, if there's absolutely anything else you need help with. Anything, and I do mean ANYTHING. Do NOT contact me. Thank you :poop:
 
Last edited:

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,650
26,995
120
Simplest way to null Active eCommerce CMS:

1. Navigate to (and open) this file: vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php

2. Replace its content with:
PHP:
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
    public static function instantiateShopRepository() {}

    public static function initializeCache() {
        foreach(Addon::all() as $addon){
            if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
                Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
                    return 'yes';
                });
            }
        }
    }
}

3. Enjoy!!
Niiiiiiiiiice!!!! Congrats. Please tell us what happens in few days after you up this easy null. ;)
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,650
26,995
120
There is another point in using nulled products: development. But you cannot develop anything when your access gets cut, am I right?
 

r3turn_z3r0

Well-known member
Feb 3, 2020
141
175
50
Paradise
There is another point in using nulled products: development. But you cannot develop anything when your access gets cut, am I right?
Your statement is right, but irrelevant.

The repository in question is located at: https://github(dot)com/mehedi-iitdu/core-component-repository

Anyone who's a developer should be competent enough to fork the repo, make the changes I've previously outlined to their own fork, then set it as the VCS repo to resolve in the root composer.json, Example:

JSON:
"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/slvrsteele/core-component-repository"
    }
],
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,650
26,995
120
It has nothing to do with the repository. That's a secondary protection layer that developer found easy to use and integrated in his script.
Let's have the following example: you try before you buy. Many are using live servers with live domains.
What actually happens:
this piece of code permanently add your domain to "naughty list"
$url = curl_init('http://206.189.81.181/'.'insert_domain/'.$url)

Even if you want to use licensed product on that domain you cannot because you're on the "naughty list". You have to contact the developer to manually remove your domain.

There's another piece of code that actually allows admin access to anyone accessing it. From there is just simple to upload a self-made plugin and get control over whole server/VPS.

Please tell me from your own experience how many users looking for nulled products have a clue about what's happening in the code? And how many are NOT using them in production?

Null doesn't quite mean just to bypass a few functions. And you know what I am talking about.
 
  • Like
Reactions: DatDudeUpStairs

r3turn_z3r0

Well-known member
Feb 3, 2020
141
175
50
Paradise
It has nothing to do with the repository. That's a secondary protection layer that developer found easy to use and integrated in his script.
Let's have the following example: you try before you buy. Many are using live servers with live domains.
What actually happens:
this piece of code permanently add your domain to "naughty list"
$url = curl_init('http://206.189.81.181/'.'insert_domain/'.$url)

Even if you want to use licensed product on that domain you cannot because you're on the "naughty list". You have to contact the developer to manually remove your domain.

There's another piece of code that actually allows admin access to anyone accessing it. From there is just simple to upload a self-made plugin and get control over whole server/VPS.

Please tell me from your own experience how many users looking for nulled products have a clue about what's happening in the code? And how many are NOT using them in production?

Null doesn't quite mean just to bypass a few functions. And you know what I am talking about.
The "Lucky Number 5 Naughty List Lottery" :ROFLMAO:

Not to mention:
PHP:
$zn = "http://206.189.81.181/pirated_contents";

In such a trustless world, I just don't get why anyone would want to deploy a nulled script to production, but I do understand that many persons do it all the same.
 

DatDudeUpStairs

Be the change that you wish to see in the world.
Trusted Uploader
Jun 30, 2019
1,334
786
113
Asgardia
It has nothing to do with the repository. That's a secondary protection layer that developer found easy to use and integrated in his script.
Let's have the following example: you try before you buy. Many are using live servers with live domains.
What actually happens:
this piece of code permanently add your domain to "naughty list"
$url = curl_init('http://206.189.81.181/'.'insert_domain/'.$url)

Even if you want to use licensed product on that domain you cannot because you're on the "naughty list". You have to contact the developer to manually remove your domain.

There's another piece of code that actually allows admin access to anyone accessing it. From there is just simple to upload a self-made plugin and get control over whole server/VPS.

Please tell me from your own experience how many users looking for nulled products have a clue about what's happening in the code? And how many are NOT using them in production?

Null doesn't quite mean just to bypass a few functions. And you know what I am talking about.
S..t that's some....... Stuff there.
 

Prometheus_

Well-known member
Null Master
Trusted Uploader
Sep 28, 2020
587
432
70
Well in Hell
babiato.tech
Hello
I install V5-5-4 to step5
Appear
HTTP ERROR 500 error
My database has MySQL 5.6
Even if I manually import shop.sql
Jump to step6
Same as HTTP ERROR 500
What to do
thank you all
First of all try to read the forum rule before posting comments, go to introduction section and post your introduction first. Maybe then some of us will help you.
 

dany_oli

New member
Sep 15, 2022
0
0
0
i just try to null the script with the given instructions, but is still redirecting me to https://activeitzone.com/activation/ for activation, can some one help me to null the script for me?
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
}
}
}
 

itechtheme

New member
Banned User
Oct 1, 2022
28
17
3
Khulna
yeap i working on the main script to make it null along with the modules
I get regular updates from Codecanyon.
I have purchased it at the release of v3.9
so till now i am getting regular updates
 
  • Like
Reactions: orbitsolutions

r3turn_z3r0

Well-known member
Feb 3, 2020
141
175
50
Paradise
i just try to null the script with the given instructions, but is still redirecting me to https://activeitzone.com/activation/ for activation, can some one help me to null the script for me?
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
}
}
}
Check again. I've edited my post to include a more comprehensive tutorial. @slvrsteele really opened my eyes to the shear number of people who log in to Babiato, download scripts and push to production with ZERO auditing.
 
  • Like
Reactions: DatDudeUpStairs

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu