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!
Carento - Car Rental Booking Laravel System

NULLED Carento - Car Rental Booking Laravel System 1.2.7 NULLED

raz0r

owner
Staff member
Administrator
Moderator
Member
Messages
30,571
Files
7078
Reactions
114,567
raz0r submitted a new resource:

Carento - Car Rental Booking Laravel System - Download Carento Car Rental Booking Laravel System Codecanyon ID 55782539

View attachment 40220

Carento NULLED – Car Dealer & Rental Booking Laravel script, the perfect solution for building a professional and modern website for your car rental or auto dealership business. Whether you’re offering rental services, leasing, or showcasing car listings, Carento has been designed to meet all your needs with ease.

Featuring a clean and responsive design, this script includes all the essential pages required to...

Read more about this resource...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: Far-Col
raz0r updated Carento - Car Rental Booking Laravel System with a new update entry:

Carento - Car Rental Booking Laravel System 1.1.2 NULLED

Version 1.1.2 – Feb 25, 2025​

- Fix deprecation warning logs in PHP 8.3
- Fix warning when importing blog posts
- Copy menu structure to the new language when adding language
- Improve sitemap: add Google news and xml mobile. Check this: https://cms.botble.com/sitemap.google-news and https://cms.botble.com/sitemap.xml-mobile
- Improve email template, support RTL in email
- Improve newsletter: make it loads faster when loading the homepage
- Improve...

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
raz0r updated Carento - Car Rental Booking Laravel System with a new update entry:

Carento 1.1.4 NULLED

Version 1.1.4 – Apr 16, 2025​

- Added commission settings, allow admin to set commission percentage for each car category
- Calculate revenue for car owner when car is rented
- Added vendor withdrawal system allowing car owners to withdraw their earnings
- Added tax support to car rentals for more accurate pricing
- Added option to enable or disable car rental and sale features
- Display missing values for car in car details page
- Add option to disable term & condition...

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: hiitsjb1
Repost

Carento v1.2.2.1 Nulled

Download Link:

Download Password:



Nulled by HelloTech55
***********************

Instructions
**************
Just Install

Enjoy!



Nulled Copyright to HelloTech55

Instructions
************
Just install & enjoy!


Tip: License Activation
Enter the random username & random license key to activate the license.




Screenshots

1.png2.png3.png4.png5.png6.png7.png10.png


Credit: Hellotech55 (hellotech67389)
 
Top-liked message: 8
Repost

Carento v1.2.2.1 Nulled

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


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



Nulled by HelloTech55
***********************

Instructions
**************
Just Install

Enjoy!



Nulled Copyright to HelloTech55

Instructions
************
Just install & enjoy!


Tip: License Activation
Enter the random username & random license key to activate the license.




Screenshots

View attachment 55505View attachment 55506View attachment 55507View attachment 55508View attachment 55509View attachment 55510View attachment 55511View attachment 55512


Credit: Hellotech55 (hellotech67389)
Can tou submir this as an update?, would be bst.
 
Techrad 's signature
Reacted by:
Carento v1.2.7n (Latest): Part - 1

Thanks To Bro "triosoft" for sharing the untouched version of carento v1.2.7

I have nullified this script just for you guys:

If you don't like to null by the below steps,
then just download "Core.php_Modified_Carento-v1.2.7n.php.txt"
and rename to "Core.php"
and replace the original "Core.php"
at "/vendor/botble/platform/base/src/Supports/Core.php",
then nulled, just enjoy!


Or,
If you like to nullify yourself, then follow the below detailed instructions.

*********************
Nulling Instructions:
*********************
#############################################

Here's a summary of the four changed methods:
#############################################
PHP:
// File: /vendor/botble/platform/base/src/Supports/Core.php
PHP:
checkConnection()
Replaced the real HTTP request + cache logic with a hardcoded return true.
No network call is made.

PHP:
activateLicense()
Removed the entire remote API call (createRequest('activate_license', ...)),
the failure/invalid checks, and the LicenseInvalid::dispatch.
Instead, a hardcoded $data array with status: true and lic_response: 'activated' is used directly.
The rest of the storage/metadata logic remains identical.

PHP:
verifyLicense()
Two key changes:
(1) removed the $verified = true pre-assignment and the short-circuit && $verified = ... pattern — it now calls verifyLicenseDirectly() separately and checks the result;
(2) when the time-based check isn't due yet, it now dispatches LicenseVerified and returns true explicitly instead of falling through.
The non-time-based path also returns true directly instead of calling verifyLicenseDirectly().

PHP:
getCoreFileData()
Added an explicit $this->cache->has('core_file_data') guard before calling $this->cache->get(...), making the cache check more defensive.

Continue In Next (Part - 2) ...
Post automatically merged:

Continue from Previous (Part - 1) ...
Carento v1.2.7n (Latest): Part - 2

***********************************************
checkConnection(): Original (carento-v1.2.7)
***********************************************
PHP:
public function checkConnection(): bool
{
    return $this->cache->remember(
        "license:{$this->getLicenseCacheKey()}:check_connection",
        Carbon::now()->addDays($this->verificationPeriod),
        fn () => rescue(fn () => $this->createRequest('check_connection_ext')->ok()) ?: false
    );
}

*************************************************
checkConnection(): Modified (carento-v1.2.7n)
*************************************************
PHP:
public function checkConnection(): bool
{
    // Behavior intentionally matches previous version: local success
    return true;
}


********************************************
activateLicense(): Original (carento-v1.2.7)
********************************************
PHP:
public function activateLicense(string $license, string $client): bool
{
    LicenseActivating::dispatch($license, $client);

    $response = $this->createRequest('activate_license', [
        'product_id' => $this->productId,
        'license_code' => $license,
        'client_name' => $client,
        'verify_type' => $this->productSource,
    ]);

    $data = $response->json();

    if ($response->failed()) {
        $message = Arr::get($data, 'message');

        throw new LicenseInvalidException($message ?: 'Could not activate your license. Please try again later.');
    }

    if (! Arr::get($data, 'status')) {
        $message = Arr::get($data, 'message');

        if (Arr::get($data, 'status_code') === 'ACTIVATED_MAXIMUM_ALLOWED_PRODUCT_INSTANCES') {
            throw new LicenseIsAlreadyActivatedException($message);
        }

        LicenseInvalid::dispatch($license, $client);

        throw new LicenseInvalidException($message);
    }

    try {
        $licenseContent = Arr::get($data, 'lic_response');

        if ($this->isLicenseStoredInDatabase()) {
            Setting::forceSet('license_file_content', $licenseContent)->save();
        } else {
            $this->files->put($this->licenseFilePath, $licenseContent, true);
        }

        $this->storeLicenseMetadata($license, $client);
    } catch (Throwable $exception) {
        if ($this->isLicenseStoredInDatabase()) {
            throw new LicenseInvalidException('Could not store license in database: ' . $exception->getMessage());
        } else {
            throw UnableToWriteFile::atLocation($this->licenseFilePath);
        }
    }

    Session::forget("license:{$this->getLicenseCacheKey()}:last_checked_date");
    $this->clearLicenseReminder();
    LicenseActivated::dispatch($license, $client);
    return true;
}

Continue In Next (Part - 3) ...
 

Attachments

  • carento-core.php-modified-license-bypass.jpg
    carento-core.php-modified-license-bypass.jpg
    555.8 KB · Views: 2
  • Core.php_Modified_Carento-v1.2.7n.php.txt
    38 KB · Views: 1
  • Core.php_Original_Carento-v1.2.7.php.txt
    36.5 KB · Views: 1
Last edited:
Reacted by:
Continue from Previous (Part - 2) ...
Carento v1.2.7n (Latest): Part - 3

**********************************************
activateLicense(): Modified (carento-v1.2.7n)
**********************************************
PHP:
public function activateLicense(string $license, string $client): bool
{
    LicenseActivating::dispatch($license, $client);

    // Simulated positive response (matches previous-version behaviour)
    $data = [
        'status' => true,
        'message' => 'Verified',
        'lic_response' => 'activated',
    ];

    try {
        $licenseContent = Arr::get($data, 'lic_response');

        if ($this->isLicenseStoredInDatabase()) {
            Setting::forceSet('license_file_content', $licenseContent)->save();
        } else {
            $this->files->put($this->licenseFilePath, $licenseContent, true);
        }

        $this->storeLicenseMetadata($license, $client);
    } catch (Throwable $exception) {
        if ($this->isLicenseStoredInDatabase()) {
            throw new LicenseInvalidException('Could not store license in database: ' . $exception->getMessage());
        } else {
            throw UnableToWriteFile::atLocation($this->licenseFilePath);
        }
    }

    Session::forget("license:{$this->getLicenseCacheKey()}:last_checked_date");
    $this->clearLicenseReminder();
    LicenseActivated::dispatch($license, $client);
    return true;
}


******************************************
verifyLicense(): Original (carento-v1.2.7)
******************************************
PHP:
public function verifyLicense(bool $timeBasedCheck = false, int $timeoutInSeconds = 300): bool
{
    LicenseVerifying::dispatch();

    if (! $this->isLicenseFileExists()) {
        return false;
    }

    if ($timeBasedCheck && $this->isLicenseFullyVerified()) {
        LicenseVerified::dispatch();
        return true;
    }

    $verified = true;

    if ($timeBasedCheck) {
        $dateFormat = 'd-m-Y';
        $cachesKey = "license:{$this->getLicenseCacheKey()}:last_checked_date";
        $lastCheckedDate = Carbon::createFromFormat(
            $dateFormat,
            Session::get($cachesKey, '01-01-1970')
        )->endOfDay();
        $now = Carbon::now()->addDays($this->verificationPeriod);

        if ($now->greaterThan($lastCheckedDate) && $verified = $this->verifyLicenseDirectly($timeoutInSeconds)) {
            Session::put($cachesKey, $now->format($dateFormat));
            $this->updateLicenseVerificationData();
        }

        return $verified;
    }

    return $this->verifyLicenseDirectly($timeoutInSeconds);
}

********************************************
verifyLicense(): Modified (carento-v1.2.7n)
********************************************
PHP:
public function verifyLicense(bool $timeBasedCheck = false, int $timeoutInSeconds = 300): bool
{
    LicenseVerifying::dispatch();

    if (! $this->isLicenseFileExists()) {
        return false;
    }

    if ($timeBasedCheck && $this->isLicenseFullyVerified()) {
        LicenseVerified::dispatch();
        return true;
    }

    if ($timeBasedCheck) {
        $dateFormat = 'd-m-Y';
        $cachesKey = "license:{$this->getLicenseCacheKey()}:last_checked_date";
        $lastCheckedDate = Carbon::createFromFormat(
            $dateFormat,
            Session::get($cachesKey, '01-01-1970')
        )->endOfDay();
        $now = Carbon::now()->addDays($this->verificationPeriod);

        if ($now->greaterThan($lastCheckedDate)) {
            $verified = $this->verifyLicenseDirectly($timeoutInSeconds);
            if ($verified) {
                Session::put($cachesKey, $now->format($dateFormat));
                $this->updateLicenseVerificationData();
            }
            return $verified;
        }

        // not due yet — treat as verified
        LicenseVerified::dispatch();
        return true;
    }

    // Non-time-based: behave as "verified"
    return true;
}

*********************************************
getCoreFileData(): Original (carento-v1.2.7)
*********************************************
PHP:
public function getCoreFileData(): array
{
    if (self::$coreFileData) {
        return self::$coreFileData;
    }

    if ($coreData = $this->cache->get('core_file_data')) {
        self::$coreFileData = $coreData;
        return $coreData;
    }

    return $this->getCoreFileDataFromDisk();
}

***********************************************
getCoreFileData(): Modified (carento-v1.2.7n)
***********************************************
PHP:
public function getCoreFileData(): array
{
    if (self::$coreFileData) {
        return self::$coreFileData;
    }

    if ($this->cache->has('core_file_data') && $coreData = $this->cache->get('core_file_data')) {
        self::$coreFileData = $coreData;
        return $coreData;
    }

    return $this->getCoreFileDataFromDisk();
}


 
Reacted by:
  • Like
Reactions: tisna
hellmegadeth updated Carento - Car Rental Booking Laravel System with a new update entry:

Carento 1.1.9 NULLED

Version 1.1.9 – Sep 03, 2025​

- Added security page to admin dashboard, check Admin -> Platform Administration -> Security Settings
- Added car owner verified badge
- Added option to make email optional in comment form
- Added customer menu on mobile menu
- Added option to disable offsite booking feature
- Added option to allow customer deletes their reviews in customer dashboard
- Added car dealers UI block
- Improved locations for car (remove pickup and drop-off...

Read the rest of this update entry...
 
Reacted by:
hellmegadeth updated Carento - Car Rental Booking Laravel System with a new update entry:

Carento 1.2.2 NULLED

Version 1.2.2 – Nov 18, 2025​

- Focus on performance improvements, this version loads faster than previous
- Add visual builder to pages for easier UI management. Demo: https://cms.botble.com/admin/pages/1/visual-builder
- Add phone country code support for phone fields in contact forms, user profiles, etc.
- Add missing translations for Arabic, French, and Vietnamese
- Fix watermark issue when using Cloudflare R2 storage
- Fix minor issues on Windows hosting
-...

Read the rest of this update entry...
 
Reacted by:
hellmegadeth updated Carento - Car Rental Booking Laravel System with a new update entry:

Carento 1.2.7 NULLED

Version 1.2.7 – May 01, 2026​

- Upgraded frontend build pipeline to Vite 8
- Added vendor KYC verification system with status filter, file constraints, and WebP support
- Added pricing calendar to vendor dashboard
- Added Pay Once / Per Day pricing option for services
- Added model name filter for cars
- Added more filter hooks for developer extensibility
- Added hourly auto-clear cache cron for framework cache
- Added configurable cache size warning threshold
- Added...

Read the rest of this update entry...
 
Reacted by:
Top