Jump to content

Recommended Posts

  • 2 weeks later...
  • 2 months later...
  • 1 month later...
  • 3 weeks later...
  • 4 weeks later...
  • 4 weeks later...
  • 1 month later...
Posted (edited)

This is Not Nulled You can Nulled this script by just changing few lines of code

Script\Application\vironeer\License\app\Http\Controllers\InstallController.php

change the line from 105 to 135 and replace with this code     after change this line of code you can use Pas_2312@ 

as your License code it will work 100%  or replace the attach file with current file and use Pas_2312@  as your code Enjoy

   public function licenceAction(Request $request)
{
    if (!in_array(parse_url(url('/'))['host'], ['localhost', '127.0.0.1'])) {
        if (empty($request->purchase_code) && $request->purchase_code !== 'Pas_2312@') {
            return redirect()->back()->withErrors(['Purchase code is required']);
        }
        if ($request->purchase_code !== 'Pas_2312@' && !preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $request->purchase_code)) {
            return redirect()->back()->withErrors(['Invalid purchase code']);
        }
        if ($request->purchase_code === 'Pas_2312@') {
            setEnv('LICENCE_TYPE', 'special');
            setEnv('VIRONEER_LICENCE', 1);
            return redirect()->route('install.information.database');
        }
        try {
            $purchaseCode = $request->purchase_code;
            $website = url('/');
            $symbol = config('vironeer.item.alias');
            $version = config('vironeer.item.version');
            $client = new \GuzzleHttp\Client();
            $request = $client->get(config('vironeer.api.license') . "?purchaseCode={$purchaseCode}&website={$website}&symbol={$symbol}&version={$version}");
            $response = json_decode($request->getBody());
            if ($response->status == "error") {
                return redirect()->back()->withErrors([$response->message]);
            }
            setEnv('LICENCE_TYPE', $response->data->licence_type);
            setEnv('VIRONEER_LICENCE', 1);
            return redirect()->route('install.information.database');
        } catch (\GuzzleHttp\Exception\RequestException $e) {
            return redirect()->back()->withErrors(['Request error, please try again']);
        }
    } else {
        setEnv('VIRONEER_LICENCE', 1);
        return redirect()->route('install.information.database');
    }
}

InstallController.php

Edited by TIGER CODE YT
I Nulled By My Self
  • Love 1
  • 3 months later...
  • 4 weeks later...
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
  • Create New...