- Joined
- May 29, 2021
- Messages
- 518
- Reaction score
- 1,132
- Points
- 93
- Location
- Server Room
- Website
- localhost
- NullCash
- 9,708
Wa Gateway | Multi device BETA | V3.5.0 MPWA MD v3.5.0 Untouched
This source code is a new build source code and is not an update from the previous mpwa gateway (legacy version), although the layout and appearance is similar to the previous legacy 5 version, but the backend and structure are very different.
Some features of mpwa beta
- Support Multi-Device Beta,
- Multi Number (Can add more than one wa number on one web)
- Send messages, images, documents, buttons, and message templates (button link / call), of course with the API.
- Auto Reply Text messages, image messages, Button messages and message templates.
- List of Contacts / Numbers, grouped by tags.
- Blast text message, image message, button message and message template, Blast based on group / or whole number.
- Calling the name in the blast with the ${name} variable
DOCUMENTATION
Download link:
untouched wa-gateway-multi-device-beta-v350-mpwa-md
MediaFire is a simple to use free service that lets you put all your photos, documents, music, and video in a single place so you can access them anywhere and share them everywhere.
www.mediafire.com
===========================[
How to null it: Do it yourself:
I have tested on both V3.0 and V3.5 and it worked perfectly for me.
Go to foler: App/http/middleware
Edit file : isVerifiedLicence.php
This file includes only javascript, which trackback the m-pedia.co.id for verification of licence.
You can download the file and replace it
https://www.mediafire.com/file/emkkxqgpy8w92fp/isVerifiedLicense.php/file
So, just delete all the contents of this file and insert the code below mentioned and save it, either replace it with file provided above link, the script will be nulled... Enjoy the nulled script without any hidden trackback and nulled by yourself:
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Session;
class isVerifiedLicense
{
private $verified;
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
public function handle(Request $request, Closure $next)
{
return $next($request);
}
}
?>