• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

MonsterTools: The All-in-One SEO & Web Toolkit, like a Swiss Army Knife

MonsterTools: The All-in-One SEO & Web Toolkit, like a Swiss Army Knife V2.1.0

No permission to download
you dont need to update to v2.0 as new tools are not visible in new version. i mean not in nulled versions. 1.4.5 is best option yet. so stay with this previous version. but if you still wanna use the latest version i can provide you if you wanna play with the codes and make tools working.

Ok thanks for the reply. I would like to update so I can temporarily turn of the login enabled option in menu settings, as well as a couple other features not present in earlier versions.

Feel free to give link for v2, I'll stick it on my localhost and have a play with it in the next day or two.
 
Ok thanks for the reply. I would like to update so I can temporarily turn of the login enabled option in menu settings, as well as a couple other features not present in earlier versions.

Feel free to give link for v2, I'll stick it on my localhost and have a play with it in the next day or two.
okay Here is the working version nulled and working.

You can check the working version here::
Code:
https://test.rd350.info

also you can check the version 1.4.5 here:

Hope you can make version 2.0 working with new tools. all new tools files are available in every folders, they just do not appears in admin panel nor in the webpage.
 
Seems all coders are on vacation or they just dont wanna find the way to display tools on page and in admin panel.
Here i am to try null it... So let's go

Step 01​

Open the file purchase.blade.php located in​

Code:
..\resources\themes\default\install\

Change the text because we need to avoid confusion, in the line #10​

From:​

Code:
Before you continue with installation we need to verify your license. Please signin with Envato for validation.

To​

Code:
Verification done successfull.

Step 02​

We nedd change the jumps for avoid the "Catch" from the developers... This is a bit difficult to explain​

Open the file ArtisanApi.php located in​

Code:
..\app\Helpers\Classes\

Delete the lines #17 and #18​

Change the line #19 from​

Code:
        $request->validate(["\143\x6f\144\145" => "\162\x65\x71\x75\x69\x72\145\x64\x7c\165\165\151\x64"], ["\143\x6f\144\x65\x2e\x2a" => "\x50\154\145\141\163\145\40\x65\x6e\x74\145\162\40\x76\141\154\151\x64\40\x70\165\162\x63\150\x61\x73\145\40\x63\157\144\x65\56"]);

To​

Code:
$request->validate(['code' => 'required|uuid'], ['code.*' => 'Please enter valid purchase code.']);

Delete the lines #20 and #21​

Delete the lines Between #23 until #47​

Insert Below the line #48, this line​

Code:
            $jsonData = $response->json();

Delete the line #49​

Write these lines below the line #49​

Code:
            if (isset($jsonData['status']) && $jsonData['status'] === true) {
                $code = $request->input('code');

                try {
                    $content = artisanCrypt()->encrypt($code);
                } catch (\Exception $e) {
                    throw new \Exception("Couldn't register product, please contact support.");
                }

                Setting::set('purchase_code', $code);
                Setting::save();

                Storage::disk('local')->put(".{$this->product}", $content);

Delete the lines Between #51 until #54​

Delete the lines Between #56 and #57​

Delete the lines Between #59 until #60​

Delete the lines Between #64 until #68​

Delete the lines Between #70 until #74​

Delete the lines Between #78 until #79​


Change the line #80 from​

Code:
        $file = storage_path("\141\160\x70\57\56{$this->product}");

to​

Code:
        $file = storage_path("app/.{$this->product}");

Delete the lines Between #81 until #82​

Change the line #93 from​

Code:
        if (!file_exists($file)) {

To​

Code:
        if (file_exists($file)) {

Delete the lines Between #94 until #106​

Delete the lines Between #108 until #125​


Insert this code below the line #125​

Code:
           try {
                $code = artisanCrypt()->decrypt($content);
            } catch (\Exception $e) {
                $code = null;
            }

            if (config('artisan.installed') && setting('purchase_code', null) === $code) {
                return $code;
            } else if (!config('artisan.installed')) {
                return $code;
            }

            return null;

Delete the lines Between #127 until #131​

Insert below the line #134 this line:​

Code:
        return 'eHh4eHh4eHg=';

Delete the line #140​

Insert Below the line #140, this code:​

Code:
return true;
        $verify = Validator::make(['code' => $this->verify()], ['code' => 'required|uuid']);

Step 02​

Open the file UpdatesManager.php located in​

Code:
..\app\Helpers\Classes\

Here must to delete the Server Verification between the lines #17 until #20​

Code:
protected $register_endpoint = '';
    protected $check_updates = '';
    protected $update_links = '';
    protected $patch_links = '';

Step 03​

Open the file HomeController.php located in​

Code:
..\app\Http\Controllers\

Delete the line #16​


Step 04​

Open the file AdminTheme.php located in​

Code:
..\app\Http\Middleware\

Delete the lines between #39 until #46​


Step 04​

Open the file SettingsRequest.php located in​

Code:
..\app\Http\Requests\

Delete the line #72​


Step 05​

Open the file App.php located in​

Code:
..\app\Install\

Change the lines between #55 until #57 from​

Code:
if (Session::has('purchase_code')) {
            Setting::set('purchase_code', Session::get('purchase_code'));
        }

To​

Code:
        Setting::set('purchase_code', 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx');
 

Step 06​

Open the file VerifyPurchase.php located in​

Code:
..\app\Install\

Change the lines between #14 until #15 for these code​

Code:
protected $provider = 'https://verify.bcstatic.com/api-provider';
    protected $product = 'monster-tools';

Delete the lines between #19 until #26​

Change the lines between #27 until #28 for these code​

Code:
        if (!isset($this->provider)) {
            abort(401, 'Something went wrong, please contact support.');

Delete the lines between #30 until #31​

Change the line #32 for these code:​

Code:
        $this->key_path = storage_path('app/.' . $this->product);

Delete the lines between #33 until #34​

Insert below the line #37 this code:​

Code:
        return true;

Change the lines between #42 until #48 for this code​

Code:
        $authorized = Request::input('authorized');
        $message = Request::input('message');
        $authorized_key = Request::input('authorized_key', null);

        if ($authorized === 'success' && $authorized_key) {
            return $this->generate_key($authorized_key, $message);
        } else {
            return redirect('/install/verify')->withErrors($message);

Delete the lines between #50 until #72​

Change the line #76 for this code​

Code:
$redirect = $this->provider . '?item=' . $this->product . '&return_uri=' . urlencode(URL::route('verify.return'));

Change the lines between #81 until #104 from​

Code:
        goto fe39f;
        d4aa8:
        Storage::disk("\154\157\x63\x61\x6c")->put($filename, artisanCrypt()->encrypt($code));
        goto Ef92a;
        C2f9a:
        $filename = "\x2e" . $this->product;
        goto bec35;
        Ef92a:
        D3bda:
        goto D8abb;
        D8abb:
        return redirect("\x2f\x69\x6e\163\164\141\x6c\x6c\57\x76\x65\162\151\146\x79")->withSuccess($message);
        goto c7db9;
        fe39f:
        if ($this->satisfied()) {
            goto D3bda;
        }
        goto C2f9a;
        bec35:
        Session::put("\x70\165\x72\143\x68\x61\x73\x65\x5f\x63\x6f\144\x65", $code);
        goto d4aa8;
        c7db9:
    }
}

To​

Code:
        if (!$this->satisfied()) {
            $filename = '.' . $this->product;
            Session::put('purchase_code', $code);
            Storage::disk('local')->put($filename, artisanCrypt()->encrypt($code));
        }

        return redirect('/install/verify')->withSuccess($message);
    }
}
 

Step 07​

Open the file SettingsTableSeeder.php located in​

Code:
 ..\database\seeders\

Change the line #78 as you like​

Code:
            ['key' => 'purchase_code', 'value' => ''],

Example​

Code:
['key' => 'purchase_code', 'value' => 'ABCDE-EFGHI-JKLMN-OPQRS-TUVWXYZ'],

Step 08​

Open the file purchase.blade.php located in​

Code:
..\resources\themes\default\install\

Change the message showed in the line #10 as like example​

Code:
                Verification done. Thanks for install it

and finally after so much obfuscating the code, it has been nulled...​

Could be the same nulled procedure in future versions​

 
Kudos to the developer, he is an excellent programmer trying to protect his code.
and just replace this files wit your script to null it

Password to open zipped file:

*** Hidden text: cannot be quoted. ***
The main problem is that New Tools are not visible in nulled version. There is an option in Admin>Patches which makes the new tools visible to the webpage and in admin panel.. even tho all tools files are already available in folders b ut still they not visible to pages
 
  • Haha
Reactions: enigmahernandez
okay Here is the working version nulled and working.

You can check the working version here::
Code:
https://test.rd350.info

also you can check the version 1.4.5 here:

Hope you can make version 2.0 working with new tools. all new tools files are available in every folders, they just do not appears in admin panel nor in the webpage.
No benefit, New Tools not showing,
 
The main problem is that New Tools are not visible in nulled version. There is an option in Admin>Patches which makes the new tools visible to the webpage and in admin panel.. even tho all tools files are already available in folders b ut still they not visible to pages
Yes, it is the main issue, But experts not taking is serious
 
Perhaps database need to update as there is no new tools in database table under Tools section. i wanna try if a nyone who is using the working copy of this. or we can create a table for new tools.
 
  • Haha
Reactions: enigmahernandez
Okay I created a new table for Tools, just to check if it helps. Table created and so the tools started showing in Admin panel.:
Screenshot 2023-08-19 at 20-12-16 Tools - test.png

Tool showing without name ofcourse we can add name for sure. thn i clicked in View icon withing admin panel and error comes:
error.JPG
but yeah Tool Doesnt visible in the Page yet. so my guess this is all about SQL tables. PATCHES perhaps updates the table structure. You also can play with this. Perhaps someone can fi nd out the solution
 
  • Like
Reactions: enigmahernandez
Okay I created a new table for Tools, just to check if it helps. Table created and so the tools started showing in Admin panel.:
Screenshot 2023-08-19 at 20-12-16 Tools - test.png

Tool showing without name ofcourse we can add name for sure. thn i clicked in View icon withing admin panel and error comes:
error.JPG
but yeah Tool Doesnt visible in the Page yet. so my guess this is all about SQL tables. PATCHES perhaps updates the table structure. You also can play with this. Perhaps someone can fi nd out the solution
I also waiting someone to resolve it, May be a good developer can done it.
 
Ideally, I would have the purchase code to install it in production, then export the database and share it with all of you
If someone share the License data I ll try to make a patch so it can work nicely. Or may be if you have time to check both files with Winmerge to check both packages and identify the difference between codes.
 
  • Like
Reactions: enigmahernandez
hey
okay Here is the working version nulled and working.

You can check the working version here::
Code:
https://test.rd350.info

also you can check the version 1.4.5 here:

Hope you can make version 2.0 working with new tools. all new tools files are available in every folders, they just do not appears in admin panel nor in the webpage.
is this working fine?
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock