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

Infix LMS - Learning Management System

Infix LMS - Learning Management System v6.5.1 Untouched

No permission to download
Hw to null it?

Open the file "InitRepository.php" located in​

Code:
..\vendor\spondonit\service\src\Repositories\

Comment the lines between lines #69 to #75
Code:
//        $url = verifyUrl(config('spondonit.verifier', 'auth')) . '/api/cc?a=verify&u=' . app_url() . '&ac=' . $ac . '&i=' . config('app.item') . '&e=' . $e . '&c=' . $c . '&v=' . $v.'&current='.urlencode(request()->path()).'&ve='.$ve;
//        $response = curlIt($url);
//
//
//        if ($goto = gv($response, 'goto')){
//            return redirect($goto)->send();
//        }

and put this after line #68

Code:
        $url = verifyUrl(config('spondonit.verifier', 'auth')) . '/api/cc?a=verify&u=' . app_url() . '&ac=' . $ac . '&i=' . config('app.item') . '&e=' . $e . '&c=' . $c . '&v=' . $v.'&current='.urlencode(request()->path());
        //$response = curlIt($url);
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment the line #101​

Code:
//        $response = curlIt($url);

Next, put this line after the line #101​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Nex, comment the line #133
Code:
//        $response = curlIt($url);

Next, put this line after the line #133​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Open the file InstallRepository.php, Located in​

Code:
\vendor\spondonit\service\src\Repositories\

Next, comment those lines between #219 to 222​

Code:
//        $response = curlIt($url);
//        if (gv($response, 'goto')) {
//            return $response;
//        }

Next, put this line after the line #223​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment those lines between #275 to 278​

Code:
//        $response = curlIt($url);
//        if ($goto = gv($response, 'goto')) {
//            return redirect($goto)->send();
//        }

Next, put this line after the below the line #274​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment those lines between #411 to 424​

Code:
//        $url = verifyUrl($verifier) . '/api/cc?a=install&u=' . app_url() . '&ac=' . $code . '&i=' . $item_id . '&e=' . $e . '&t=Module&ve=' . $ve . '&name=' . $name . '&row=' . $row . '&file=' . $file.'&current='.str_replace(url('/').'/', '', url()->previous());
//
//        $response = curlIt($url);
//
//        if ($goto = gv($response, 'goto')) {
//
//            if (request()->wantsJson()) {
//                return $response;
//            }
//
//            return redirect($goto)->send();
//
//
//        }

Next, put this line below​

Code:
        $url = verifyUrl($verifier) . '/api/cc?a=install&u=' . app_url() . '&ac=' . $code . '&i=' . $item_id . '&e=' . $e . '&t=Module&ve=' . $ve;

Next, change the line #602, to:
Code:
        //$response = curlIt($url);
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

And The same with the file LicenseRepository.php located in:​

Code:
\vendor\spondonit\service\src\Repositories\

Or Just replace these files and Voilá, This is nulled!


Here is the resource patched​

 

Attachments

  • Infix LMS v6.1.0 null Patched.zip
    461 KB · Views: 116
Hw to null it?

Open the file "InitRepository.php" located in​

Code:
..\vendor\spondonit\service\src\Repositories\

Comment the lines between lines #69 to #75
Code:
//        $url = verifyUrl(config('spondonit.verifier', 'auth')) . '/api/cc?a=verify&u=' . app_url() . '&ac=' . $ac . '&i=' . config('app.item') . '&e=' . $e . '&c=' . $c . '&v=' . $v.'&current='.urlencode(request()->path()).'&ve='.$ve;
//        $response = curlIt($url);
//
//
//        if ($goto = gv($response, 'goto')){
//            return redirect($goto)->send();
//        }

and put this after line #68

Code:
        $url = verifyUrl(config('spondonit.verifier', 'auth')) . '/api/cc?a=verify&u=' . app_url() . '&ac=' . $ac . '&i=' . config('app.item') . '&e=' . $e . '&c=' . $c . '&v=' . $v.'&current='.urlencode(request()->path());
        //$response = curlIt($url);
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment the line #101​

Code:
//        $response = curlIt($url);

Next, put this line after the line #101​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Nex, comment the line #133
Code:
//        $response = curlIt($url);

Next, put this line after the line #133​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Open the file InstallRepository.php, Located in​

Code:
\vendor\spondonit\service\src\Repositories\

Next, comment those lines between #219 to 222​

Code:
//        $response = curlIt($url);
//        if (gv($response, 'goto')) {
//            return $response;
//        }

Next, put this line after the line #223​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment those lines between #275 to 278​

Code:
//        $response = curlIt($url);
//        if ($goto = gv($response, 'goto')) {
//            return redirect($goto)->send();
//        }

Next, put this line after the below the line #274​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment those lines between #411 to 424​

Code:
//        $url = verifyUrl($verifier) . '/api/cc?a=install&u=' . app_url() . '&ac=' . $code . '&i=' . $item_id . '&e=' . $e . '&t=Module&ve=' . $ve . '&name=' . $name . '&row=' . $row . '&file=' . $file.'&current='.str_replace(url('/').'/', '', url()->previous());
//
//        $response = curlIt($url);
//
//        if ($goto = gv($response, 'goto')) {
//
//            if (request()->wantsJson()) {
//                return $response;
//            }
//
//            return redirect($goto)->send();
//
//
//        }

Next, put this line below​

Code:
        $url = verifyUrl($verifier) . '/api/cc?a=install&u=' . app_url() . '&ac=' . $code . '&i=' . $item_id . '&e=' . $e . '&t=Module&ve=' . $ve;

Next, change the line #602, to:
Code:
        //$response = curlIt($url);
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

And The same with the file LicenseRepository.php located in:​

Code:
\vendor\spondonit\service\src\Repositories\

Or Just replace these files and Voilá, This is nulled!


Here is the resource patched​

*** Hidden text: cannot be quoted. ***
🥰
 
Babak updated Infix LMS - Learning Management System with a new update entry:

Infix LMS v6.2.0 Untouched

Download Infix LMS v6.2.0 - Open Source Learning Management System VueJs Nulled Free
v6.2.0 (17 July 2023)

Bug Fixed
: Minor issue fixing
Feature
: Sidebar section Added & reorder menu
: Student can now blog post if give permission
: Multi-Currency system
: Profile page redesign
: Installment Module compatible
: Bunny Storage Module compatible
: 2FA Module compatible

Read the rest of this update entry...
 
  • Like
Reactions: Naksu
Hw to null it?

Open the file "InitRepository.php" located in​

Code:
..\vendor\spondonit\service\src\Repositories\

Comment the lines between lines #69 to #75
Code:
//        $url = verifyUrl(config('spondonit.verifier', 'auth')) . '/api/cc?a=verify&u=' . app_url() . '&ac=' . $ac . '&i=' . config('app.item') . '&e=' . $e . '&c=' . $c . '&v=' . $v.'&current='.urlencode(request()->path()).'&ve='.$ve;
//        $response = curlIt($url);
//
//
//        if ($goto = gv($response, 'goto')){
//            return redirect($goto)->send();
//        }

and put this after line #68

Code:
        $url = verifyUrl(config('spondonit.verifier', 'auth')) . '/api/cc?a=verify&u=' . app_url() . '&ac=' . $ac . '&i=' . config('app.item') . '&e=' . $e . '&c=' . $c . '&v=' . $v.'&current='.urlencode(request()->path());
        //$response = curlIt($url);
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment the line #101​

Code:
//        $response = curlIt($url);

Next, put this line after the line #101​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Nex, comment the line #133
Code:
//        $response = curlIt($url);

Next, put this line after the line #133​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Open the file InstallRepository.php, Located in​

Code:
\vendor\spondonit\service\src\Repositories\

Next, comment those lines between #219 to 222​

Code:
//        $response = curlIt($url);
//        if (gv($response, 'goto')) {
//            return $response;
//        }

Next, put this line after the line #223​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment those lines between #275 to 278​

Code:
//        $response = curlIt($url);
//        if ($goto = gv($response, 'goto')) {
//            return redirect($goto)->send();
//        }

Next, put this line after the below the line #274​

Code:
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

Next, comment those lines between #411 to 424​

Code:
//        $url = verifyUrl($verifier) . '/api/cc?a=install&u=' . app_url() . '&ac=' . $code . '&i=' . $item_id . '&e=' . $e . '&t=Module&ve=' . $ve . '&name=' . $name . '&row=' . $row . '&file=' . $file.'&current='.str_replace(url('/').'/', '', url()->previous());
//
//        $response = curlIt($url);
//
//        if ($goto = gv($response, 'goto')) {
//
//            if (request()->wantsJson()) {
//                return $response;
//            }
//
//            return redirect($goto)->send();
//
//
//        }

Next, put this line below​

Code:
        $url = verifyUrl($verifier) . '/api/cc?a=install&u=' . app_url() . '&ac=' . $code . '&i=' . $item_id . '&e=' . $e . '&t=Module&ve=' . $ve;

Next, change the line #602, to:
Code:
        //$response = curlIt($url);
        $response = array('status' => 1, 'message' => 'Valid!' , 'checksum' => 'checksum', 'license_code' => 'license_code');

And The same with the file LicenseRepository.php located in:​

Code:
\vendor\spondonit\service\src\Repositories\

Or Just replace these files and Voilá, This is nulled!


Here is the resource patched​

*** Hidden text: cannot be quoted. ***
please, can i have the password? i will appreciate a lot. thankyou
 
  • Haha
Reactions: enigmahernandez
Hello, here I leave the nulled version

Infix LMS v6.1.0 - Learning Management System - nulled​

 

Attachments

  • infixlms-610nulled.zip
    67.2 MB · Views: 107
  • Haha
Reactions: enigmahernandez
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