• 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"

JustFans - Premium Content Creators SaaS platform

JustFans - Premium Content Creators SaaS platform v5.9.0 Untouched

No permission to download
To null the script, copy the code below and replace in app/Providers/InstallerServiceProvider.php
Then just enter any value when requesting the license

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;

class InstallerServiceProvider extends ServiceProvider
{

    /**
     * @var string
     */
    public static $lockCode = 'g9mZ)j5(GGGHsf';
    public static $activationService = 'https://license.qdev.tech/';

    /*
     *
     */
    public static $acError = 'Failed to connect to License Server. Please try again or contact us if the error persists.';

    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Return lock code
     * @return mixed
     */
    public static function getLockCode(){
        return getLockCode();
    }

    /**
     * Returns list of script required extensions.
     *
     * @return array
     */
    public static function getRequiredExtensions()
    {
        return [
            'bcmath',
            'Ctype',
            'Fileinfo',
            'JSON',
            'Mbstring',
            'OpenSSL',
            'PDO',
            'Tokenizer',
            'XML',
            'cURL',
            'exif',
            'GD'
        ];
    }

    /**
     * GLK fn()
     */
    public static function glck(){
        return true;
    }

    /**
     * Check if server passes the script requirements.
     *
     * @return bool
     */
    public static function passesRequirements()
    {
        $extensions = self::getRequiredExtensions();
        $passes = true;
        foreach ($extensions as $extension) {
            if (! extension_loaded($extension)) {
                $passes = false;
            }
        }
        if (! (version_compare(phpversion(), '7.2.5') >= 0)) {
            $passes = false;
        }

        return $passes;
    }

    /**
     * Checks if script is already installed.
     * @return bool
     */
    public static function checkIfInstalled()
    {
        if (Storage::disk('local')->exists('installed')) {
            return true;
        }

        return false;
    }

    /**
     * Appends values to the env file during the installation.
     * @param $line
     */
    public static function appendToEnv($line)
    {
        file_put_contents(base_path().'/'.'.env', file_get_contents(base_path().'/'.'.env').$line."\r\n");
    }


    /**
     * Setting up the lock code
     * @return bool
     */
    public static function setLockCode(){
        return setLockCode(self::$lockCode);
    }

    /**
     * Checks if envato license key is valid.
     * @param string $code
     * @return bool
     */
    public static function gld($code = '')
    {
        return (object)['success' => true];
    }

    /**
     * Curl based license fetching method fallback
     * @param $URL
     * @return bool|string
     */
    public static function curlGetContent($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE );
        curl_setopt($ch, CURLOPT_HEADER, 0 );
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt($ch, CURLOPT_URL, $url );
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE );
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec( $ch );
        curl_close( $ch );
        return $data;
    }

}
 
  • Like
Reactions: brackbk
To null the script, copy the code below and replace in app/Providers/InstallerServiceProvider.php
Then just enter any value when requesting the license

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;

class InstallerServiceProvider extends ServiceProvider
{

    /**
     * @var string
     */
    public static $lockCode = 'g9mZ)j5(GGGHsf';
    public static $activationService = 'https://license.qdev.tech/';

    /*
     *
     */
    public static $acError = 'Failed to connect to License Server. Please try again or contact us if the error persists.';

    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Return lock code
     * @return mixed
     */
    public static function getLockCode(){
        return getLockCode();
    }

    /**
     * Returns list of script required extensions.
     *
     * @return array
     */
    public static function getRequiredExtensions()
    {
        return [
            'bcmath',
            'Ctype',
            'Fileinfo',
            'JSON',
            'Mbstring',
            'OpenSSL',
            'PDO',
            'Tokenizer',
            'XML',
            'cURL',
            'exif',
            'GD'
        ];
    }

    /**
     * GLK fn()
     */
    public static function glck(){
        return true;
    }

    /**
     * Check if server passes the script requirements.
     *
     * @return bool
     */
    public static function passesRequirements()
    {
        $extensions = self::getRequiredExtensions();
        $passes = true;
        foreach ($extensions as $extension) {
            if (! extension_loaded($extension)) {
                $passes = false;
            }
        }
        if (! (version_compare(phpversion(), '7.2.5') >= 0)) {
            $passes = false;
        }

        return $passes;
    }

    /**
     * Checks if script is already installed.
     * @return bool
     */
    public static function checkIfInstalled()
    {
        if (Storage::disk('local')->exists('installed')) {
            return true;
        }

        return false;
    }

    /**
     * Appends values to the env file during the installation.
     * @param $line
     */
    public static function appendToEnv($line)
    {
        file_put_contents(base_path().'/'.'.env', file_get_contents(base_path().'/'.'.env').$line."\r\n");
    }


    /**
     * Setting up the lock code
     * @return bool
     */
    public static function setLockCode(){
        return setLockCode(self::$lockCode);
    }

    /**
     * Checks if envato license key is valid.
     * @param string $code
     * @return bool
     */
    public static function gld($code = '')
    {
        return (object)['success' => true];
    }

    /**
     * Curl based license fetching method fallback
     * @param $URL
     * @return bool|string
     */
    public static function curlGetContent($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE );
        curl_setopt($ch, CURLOPT_HEADER, 0 );
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt($ch, CURLOPT_URL, $url );
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE );
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec( $ch );
        curl_close( $ch );
        return $data;
    }

}
the installation worked and the software worked fine 30 minutes later in the control panel these errors appear 🔽 can you help me to solve them?
 

Attachments

  • justfansnull.PNG
    justfansnull.PNG
    46.4 KB · Views: 15
Did you make any other changes? I tested the whole system for days, including the live stream and payment methods and I didn't have any problems, everything is working perfectly
 
To null the script, copy the code below and replace in app/Providers/InstallerServiceProvider.php
Then just enter any value when requesting the license

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;

class InstallerServiceProvider extends ServiceProvider
{

    /**
     * @var string
     */
    public static $lockCode = 'g9mZ)j5(GGGHsf';
    public static $activationService = 'https://license.qdev.tech/';

    /*
     *
     */
    public static $acError = 'Failed to connect to License Server. Please try again or contact us if the error persists.';

    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Return lock code
     * @return mixed
     */
    public static function getLockCode(){
        return getLockCode();
    }

    /**
     * Returns list of script required extensions.
     *
     * @return array
     */
    public static function getRequiredExtensions()
    {
        return [
            'bcmath',
            'Ctype',
            'Fileinfo',
            'JSON',
            'Mbstring',
            'OpenSSL',
            'PDO',
            'Tokenizer',
            'XML',
            'cURL',
            'exif',
            'GD'
        ];
    }

    /**
     * GLK fn()
     */
    public static function glck(){
        return true;
    }

    /**
     * Check if server passes the script requirements.
     *
     * @return bool
     */
    public static function passesRequirements()
    {
        $extensions = self::getRequiredExtensions();
        $passes = true;
        foreach ($extensions as $extension) {
            if (! extension_loaded($extension)) {
                $passes = false;
            }
        }
        if (! (version_compare(phpversion(), '7.2.5') >= 0)) {
            $passes = false;
        }

        return $passes;
    }

    /**
     * Checks if script is already installed.
     * @return bool
     */
    public static function checkIfInstalled()
    {
        if (Storage::disk('local')->exists('installed')) {
            return true;
        }

        return false;
    }

    /**
     * Appends values to the env file during the installation.
     * @param $line
     */
    public static function appendToEnv($line)
    {
        file_put_contents(base_path().'/'.'.env', file_get_contents(base_path().'/'.'.env').$line."\r\n");
    }


    /**
     * Setting up the lock code
     * @return bool
     */
    public static function setLockCode(){
        return setLockCode(self::$lockCode);
    }

    /**
     * Checks if envato license key is valid.
     * @param string $code
     * @return bool
     */
    public static function gld($code = '')
    {
        return (object)['success' => true];
    }

    /**
     * Curl based license fetching method fallback
     * @param $URL
     * @return bool|string
     */
    public static function curlGetContent($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE );
        curl_setopt($ch, CURLOPT_HEADER, 0 );
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt($ch, CURLOPT_URL, $url );
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE );
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec( $ch );
        curl_close( $ch );
        return $data;
    }

}
All I get when trying to do the install and replacing the code in
InstallerServiceProvider.php
with yours I just get, Failed to connect to License Server. Please try again or contact us if the error persists.

Any ideas?
 
I can see information about my fake license (which I wrote (invented) when installing the nulled script (before adding the latest version) on the repository/app/installed. And I see a license check request in the app\Providers\InstallerServiceProvider.php file (line 15).

Now I will think about what to do with this information and experiment.
Can you explain?

/**
* @var string
*/
public static $lockCode = 'g9mZ)j5(GGGHsf';
public static $activationService = 'https://license.qdev.tech/';

What do I do to this strings? (or what?)
 
To null the script, copy the code below and replace in app/Providers/InstallerServiceProvider.php
Then just enter any value when requesting the license

Code:
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;

class InstallerServiceProvider extends ServiceProvider
{

    /**
     * @var string
     */
    public static $lockCode = 'g9mZ)j5(GGGHsf';
    public static $activationService = 'https://license.qdev.tech/';

    /*
     *
     */
    public static $acError = 'Failed to connect to License Server. Please try again or contact us if the error persists.';

    /**
     * Register services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap services.
     *
     * @return void
     */
    public function boot()
    {
        //
    }

    /**
     * Return lock code
     * @return mixed
     */
    public static function getLockCode(){
        return getLockCode();
    }

    /**
     * Returns list of script required extensions.
     *
     * @return array
     */
    public static function getRequiredExtensions()
    {
        return [
            'bcmath',
            'Ctype',
            'Fileinfo',
            'JSON',
            'Mbstring',
            'OpenSSL',
            'PDO',
            'Tokenizer',
            'XML',
            'cURL',
            'exif',
            'GD'
        ];
    }

    /**
     * GLK fn()
     */
    public static function glck(){
        return true;
    }

    /**
     * Check if server passes the script requirements.
     *
     * @return bool
     */
    public static function passesRequirements()
    {
        $extensions = self::getRequiredExtensions();
        $passes = true;
        foreach ($extensions as $extension) {
            if (! extension_loaded($extension)) {
                $passes = false;
            }
        }
        if (! (version_compare(phpversion(), '7.2.5') >= 0)) {
            $passes = false;
        }

        return $passes;
    }

    /**
     * Checks if script is already installed.
     * @return bool
     */
    public static function checkIfInstalled()
    {
        if (Storage::disk('local')->exists('installed')) {
            return true;
        }

        return false;
    }

    /**
     * Appends values to the env file during the installation.
     * @param $line
     */
    public static function appendToEnv($line)
    {
        file_put_contents(base_path().'/'.'.env', file_get_contents(base_path().'/'.'.env').$line."\r\n");
    }


    /**
     * Setting up the lock code
     * @return bool
     */
    public static function setLockCode(){
        return setLockCode(self::$lockCode);
    }

    /**
     * Checks if envato license key is valid.
     * @param string $code
     * @return bool
     */
    public static function gld($code = '')
    {
        return (object)['success' => true];
    }

    /**
     * Curl based license fetching method fallback
     * @param $URL
     * @return bool|string
     */
    public static function curlGetContent($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_AUTOREFERER, TRUE );
        curl_setopt($ch, CURLOPT_HEADER, 0 );
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt($ch, CURLOPT_URL, $url );
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE );
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec( $ch );
        curl_close( $ch );
        return $data;
    }

}
Pasted this, same error.
BTW, I check the code above with the original = SAME?
What am I missing?
Any help... Pls.
 
I see that it has not been updated for a long time, take my 6.2.0 untouched.
You can add @Babak
But from what I see, there is no one willing to null this script
Pls, our warrior heroes here pls do something... I am frustrated ... thinking of coverting myself to a frog instaed... pls. help.
 
extended version i am looking anyone help me 6.0.0
You're an "expert in devops", yet you don't know how to null this script?
Come on, show us you're a real expert... I can offer you some works if you could at least show us you know some stuffs... I am an idiot when it comes to PHP
 
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