Jump to content
View in the app

A better way to browse. Learn more.

DoniaWeB

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
     

Whatsapp Gateway | Multi Device v12.0.1

Featured Replies

  • Replies 7.6k
  • Views 836.8k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Magd Almuntaser
    Magd Almuntaser

    What's new in version 11.0.0 (so far): - Added Chat System (Customer Service). - Fixed Connection problems With WhatsApp. - Fixed Generate QR Via API. - Fixed Delete Sections From Edit List Page. - Fi

  • Magd Almuntaser
    Magd Almuntaser

    Version 11.0.1 has been released What's new in version 11.0.1: - Fixed Stop/Start AI In Conversations. - Fixed Chat Date (Database). - Fixed Migrate To Database. - Fixed Plans Page.

  • Magd Almuntaser
    Magd Almuntaser

    English Bexa AI will be released in the coming days, very soon. Everyone will be amazed by its speed, intelligence, and the way it interacts with users. It will not compete with ChatGPT, Gemini, or De

Most Helpful Posts

  • Magd Almuntaser
    Magd Almuntaser

    English (EN) I have already informed you that WhatsApp is rolling out new updates. These updates are being sent to some numbers first and will gradually reach all numbers worldwide. The first update i

  • Magd Almuntaser
    Magd Almuntaser

    What will be available in version 11.0.0: - A chat system will be added. - A customer service system will be added (integrated with chat). - Some Indian payment gateways will be added. - Order design

  • Magd Almuntaser
    Magd Almuntaser

    Yes you can use it as a messaging service/ SaaS without asking my permission, the new version 9.0.0 directly contains people who want to use it as a messaging service/ SaaS.. What's new so far in ver

Posted Images

hi semua,

belum ada kah fitur untuk campaign dengan variable yang kita tentukan, misal kode voucher, mengambil dari data yang kita import, berarti untuk data phonebook disisipkan variable juga (misal kode voucher)

karena ada kebutuhan untuk campaign kirim kode voucher yang di tentukan customer, karena voucher tersebut nilai nya berbeda.

terima kasih

42 minutes ago, achelmidz said:

hi semua,

belum ada kah fitur untuk campaign dengan variable yang kita tentukan, misal kode voucher, mengambil dari data yang kita import, berarti untuk data phonebook disisipkan variable juga (misal kode voucher)

karena ada kebutuhan untuk campaign kirim kode voucher yang di tentukan customer, karena voucher tersebut nilai nya berbeda.

terima kasih

Pakai MPWA + Appsheet /n8n baru bisa bang

14 minutes ago, IT The Explorer said:

Pakai MPWA + Appsheet /n8n baru bisa bang

sementara tak akalin sih blast via api, bikin db lagi untuk tampung data kode voucher, dan bikin script kecil buat kirim lewat api

Min,aku install di cloudpanel untuk untuk autoreply type list ngk muncul & di Create New Template Message Type * list message saat di buat dan digunakan yang berhasil terkirim hanya Message ,add sectionnya tidak terkirim.

Has anyone encountered a problem with sign-in email alerts not being sent? Users successfully receive password reset emails, but no emails are delivered when they sign in.

@achelmidz pakai hook, tinggal

6 minutes ago, IT The Explorer said:

Mas, pada autoreplay utk List Message juga ternyata ga bisa ditambah list buttonnya, apakah ada file utk replacenya?

Ada

Scroll up aja. Formatnya sama kok.

On 11/9/2025 at 9:46 AM, jjsons said:

I think a lot of people are getting connection error. You can do the below steps and thank me later if it worked for you. I am not a professional developer and it took me almost 2 days to reach this point. This is a very simple 2 step process even a non-tech can do this; So, Let's start.

Step 1
Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.d.ts" and replace the whole code of this file with below code

import { proto } from '../../WAProto';

import type { AuthenticationCreds, SignalCreds, SocketConfig } from '../Types';

import { BinaryNode } from '../WABinary';

export declare const generateLoginNode: (userJid: string, config: SocketConfig) => proto.ClientPayload;

export declare const generateRegistrationNode: (

creds: SignalCreds,

config: SocketConfig

) => proto.ClientPayload;

export declare const configureSuccessfulPairing: (

stanza: BinaryNode,

opts: Pick<AuthenticationCreds, 'advSecretKey' | 'signedIdentityKey' | 'signalIdentities'>

) => {

creds: Partial<AuthenticationCreds>;

reply: BinaryNode;

};

export declare const encodeSignedDeviceIdentity: (

account: proto.IADVSignedDeviceIdentity,

includeSignatureKey: boolean

) => Uint8Array;




Step 2:

Go to this dir ==> "node_modules/@onexgen/baileys/lib/Utils/validate-connection.js" and replace the whole code of this file with below code
"use strict";

Object.defineProperty(exports, "__esModule", { value: true });

exports.encodeSignedDeviceIdentity = exports.configureSuccessfulPairing = exports.generateRegistrationNode = exports.generateLoginNode = void 0;

const boom_1 = require("@hapi/boom");

const crypto_1 = require("crypto");

const WAProto_1 = require("../../WAProto");

const Defaults_1 = require("../Defaults");

const WABinary_1 = require("../WABinary");

const crypto_2 = require("./crypto");

const generics_1 = require("./generics");

const signal_1 = require("./signal");

const getUserAgent = (config) => ({

appVersion: {

primary: config.version[0],

secondary: config.version[1],

tertiary: config.version[2],

},

platform: WAProto_1.proto.ClientPayload.UserAgent.Platform.WEB,

releaseChannel: WAProto_1.proto.ClientPayload.UserAgent.ReleaseChannel.RELEASE,

osVersion: '0.1',

device: 'Desktop',

osBuildNumber: '0.1',

localeLanguageIso6391: 'en',

mnc: '000',

mcc: '000',

localeCountryIso31661Alpha2: config.countryCode,

});

const PLATFORM_MAP = {

'Mac OS': WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.DARWIN,

Windows: WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.WIN32,

};

const getWebInfo = (config) => {

let webSubPlatform = WAProto_1.proto.ClientPayload.WebInfo.WebSubPlatform.WEB_BROWSER;

if (config.syncFullHistory && PLATFORM_MAP[config.browser[0]]) {

webSubPlatform = PLATFORM_MAP[config.browser[0]];

}

return { webSubPlatform };

};

const getClientPayload = (config) => {

const payload = {

connectType: WAProto_1.proto.ClientPayload.ConnectType.WIFI_UNKNOWN,

connectReason: WAProto_1.proto.ClientPayload.ConnectReason.USER_ACTIVATED,

userAgent: getUserAgent(config),

};

payload.webInfo = getWebInfo(config);

return payload;

};

const generateLoginNode = (userJid, config) => {

const { user, device } = (0, WABinary_1.jidDecode)(userJid);

const payload = {

...getClientPayload(config),

passive: false,

pull: true,

username: +user,

device: device,

};

return WAProto_1.proto.ClientPayload.fromObject(payload);

};

exports.generateLoginNode = generateLoginNode;

const getPlatformType = (platform) => {

const platformType = platform.toUpperCase();

return WAProto_1.proto.DeviceProps.PlatformType[platformType] || WAProto_1.proto.DeviceProps.PlatformType.DESKTOP;

};

const generateRegistrationNode = ({ registrationId, signedPreKey, signedIdentityKey }, config) => {

const appVersionBuf = (0, crypto_1.createHash)('md5').update(config.version.join('.')).digest();

const companion = {

os: config.browser[0],

platformType: getPlatformType(config.browser[1]),

requireFullSync: config.syncFullHistory,

historySyncConfig: {

storageQuotaMb: 10240,

inlineInitialPayloadInE2EeMsg: true,

recentSyncDaysLimit: undefined,

supportCallLogHistory: false,

supportBotUserAgentChatHistory: true,

supportCagReactionsAndPolls: true,

supportBizHostedMsg: true,

supportRecentSyncChunkMessageCountTuning: true,

supportHostedGroupMsg: true,

supportFbidBotChatHistory: true,

supportAddOnHistorySyncMigration: undefined,

supportMessageAssociation: true,

},

};

const companionProto = WAProto_1.proto.DeviceProps.encode(companion).finish();

const registerPayload = {

...getClientPayload(config),

passive: false,

pull: false,

devicePairingData: {

buildHash: appVersionBuf,

deviceProps: companionProto,

eRegid: (0, generics_1.encodeBigEndian)(registrationId),

eKeytype: Defaults_1.KEY_BUNDLE_TYPE,

eIdent: signedIdentityKey.public,

eSkeyId: (0, generics_1.encodeBigEndian)(signedPreKey.keyId, 3),

eSkeyVal: signedPreKey.keyPair.public,

eSkeySig: signedPreKey.signature,

},

};

return WAProto_1.proto.ClientPayload.fromObject(registerPayload);

};

exports.generateRegistrationNode = generateRegistrationNode;

const configureSuccessfulPairing = (stanza, { advSecretKey, signedIdentityKey, signalIdentities }) => {

const msgId = stanza.attrs.id;

const pairSuccessNode = (0, WABinary_1.getBinaryNodeChild)(stanza, 'pair-success');

const deviceIdentityNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'device-identity');

const platformNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'platform');

const deviceNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'device');

const businessNode = (0, WABinary_1.getBinaryNodeChild)(pairSuccessNode, 'biz');

if (!deviceIdentityNode || !deviceNode) {

throw new boom_1.Boom('Missing device-identity or device in pair success node', { data: stanza });

}

const bizName = businessNode?.attrs.name;

const jid = deviceNode.attrs.jid;

const { details, hmac, accountType } = WAProto_1.proto.ADVSignedDeviceIdentityHMAC.decode(deviceIdentityNode.content);

const isHostedAccount = accountType === WAProto_1.proto.ADVEncryptionType.HOSTED;

const hmacPrefix = isHostedAccount ? Buffer.from([6, 5]) : Buffer.alloc(0);

const advSign = (0, crypto_2.hmacSign)(Buffer.concat([hmacPrefix, details]), Buffer.from(advSecretKey, 'base64'));

if (Buffer.compare(hmac, advSign) !== 0) {

throw new boom_1.Boom('Invalid account signature');

}

const account = WAProto_1.proto.ADVSignedDeviceIdentity.decode(details);

const { accountSignatureKey, accountSignature, details: deviceDetails } = account;

const accountMsg = Buffer.concat([Buffer.from([6, 0]), deviceDetails, signedIdentityKey.public]);

if (!crypto_2.Curve.verify(accountSignatureKey, accountMsg, accountSignature)) {

throw new boom_1.Boom('Failed to verify account signature');

}

const devicePrefix = isHostedAccount ? Buffer.from([6, 6]) : Buffer.from([6, 1]);

const deviceMsg = Buffer.concat([devicePrefix, deviceDetails, signedIdentityKey.public, accountSignatureKey]);

account.deviceSignature = crypto_2.Curve.sign(signedIdentityKey.private, deviceMsg);

const identity = (0, signal_1.createSignalIdentity)(jid, accountSignatureKey);

const accountEnc = exports.encodeSignedDeviceIdentity(account, false);

const deviceIdentity = WAProto_1.proto.ADVDeviceIdentity.decode(account.details);

const reply = {

tag: 'iq',

attrs: { to: WABinary_1.S_WHATSAPP_NET, type: 'result', id: msgId },

content: [{ tag: 'pair-device-sign', attrs: {}, content: [{ tag: 'device-identity', attrs: { 'key-index': deviceIdentity.keyIndex.toString() }, content: accountEnc }] }],

};

const authUpdate = {

account,

me: { id: jid, name: bizName },

signalIdentities: [...(signalIdentities || []), identity],

platform: platformNode?.attrs.name,

};

return { creds: authUpdate, reply };

};

exports.configureSuccessfulPairing = configureSuccessfulPairing;

const encodeSignedDeviceIdentity = (account, includeSignatureKey) => {

account = { ...account };

if (!includeSignatureKey || !account.accountSignatureKey?.length) account.accountSignatureKey = null;

return WAProto_1.proto.ADVSignedDeviceIdentity.encode(account).finish();

};

exports.encodeSignedDeviceIdentity = encodeSignedDeviceIdentity;

thanks alot it worked :D

On 10/24/2025 at 5:00 AM, Magd Almuntaser said:

Version 12.0.1 has been released

What's new in version 12.0.1:
- Fixed Templates Page.

there a issue coming as whatsapp had flagged the mpwa Version 12.0.1 its not allowing to scan the qr code plz check once , i think we need to update it now

27 minutes ago, Bulky Data said:

there a issue coming as whatsapp had flagged the mpwa Version 12.0.1 its not allowing to scan the qr code plz check once , i think we need to update it now

read other comments... you will find a solution whatsapp is updating nothing is being flagged

@Azhar Azziz 

15 hours ago, Azhar Azziz said:

Do you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.

@Azhar Azziz 

15 hours ago, Azhar Azziz said:

Do you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.

"I'm experiencing this issue on V12.0.1 installed on aapanel. This condition occurs with the error shown in the log I've attached, and it causes nodejs to always stop.

What I'd like to ask, sir @Magd Almuntaser , is whether this is an error from the script or from aapanel itself. Could you please shed some light on this, sir? Thank you in advance for your willingness to answer. Or if any friends can help with this matter.

📝 Log Error

agentRemove: [Function: onRemove],
          data: undefined,
          drain: [Function: ondrain]
        },
        _eventsCount: 11,
        connecting: false,
        _hadError: true,
        _parent: null,
        _host: 'web.whatsapp.net',
        _closeAfterHandlingError: false,
        _readableState: ReadableState {
          highWaterMark: 65536,
          buffer: [],
          bufferIndex: 0,
          length: 0,
          pipes: [],
          awaitDrainWriters: null,
          [Symbol(kState)]: 59779574,
          [Symbol(kErroredValue)]: Error: getaddrinfo ENOTFOUND web.whatsapp.net
              at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26) {
            errno: -3008,
            code: 'ENOTFOUND',
            syscall: 'getaddrinfo',
            hostname: 'web.whatsapp.net'
          }
        },
        _writableState: WritableState {
          highWaterMark: 65536,
          length: 215,
          corked: 0,
          onwrite: [Function: bound onwrite],
          writelen: 215,
          bufferedIndex: 0,
          pendingcb: 1,
          [Symbol(kState)]: 118260214,
          [Symbol(kBufferedValue)]: null,
          [Symbol(kWriteCbValue)]: [Function: bound onFinish],
          [Symbol(kErroredValue)]: Error: getaddrinfo ENOTFOUND web.whatsapp.net
              at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26) {
            errno: -3008,
            code: 'ENOTFOUND',
            syscall: 'getaddrinfo',
            hostname: 'web.whatsapp.net'
          }
        },
        allowHalfOpen: false,
        _maxListeners: undefined,
        _sockname: null,
        _pendingData: 'GET / HTTP/1.1\r\n' +
          'Accept: application/json, text/plain, */*\r\n' +
          'Origin: https://web.whatsapp.com\r\n' +
          'User-Agent: axios/1.12.2\r\n' +
          'Accept-Encoding: gzip, compress, deflate, br\r\n' +
          'Host: web.whatsapp.net\r\n' +
          'Connection: keep-alive\r\n' +
          '\r\n',
        _pendingEncoding: 'latin1',
        server: undefined,
        _server: null,
        ssl: null,
        _requestCert: true,
        _rejectUnauthorized: true,
        timeout: 5000,
        parser: null,
        _httpMessage: [Circular *2],
        [Symbol(alpncallback)]: null,
        [Symbol(res)]: TLSWrap {
          _parent: TCP {
            reading: [Getter/Setter],
            onconnection: null,
            [Symbol(owner_symbol)]: [Circular *3],
            [Symbol(handle_onclose)]: [Function: done]
          },
          _parentWrap: null,
          _secureContext: SecureContext { context: SecureContext {} },
          reading: false,
          onkeylog: [Function: onkeylog],
          onhandshakestart: [Function: noop],
          onhandshakedone: [Function (anonymous)],
          onocspresponse: [Function: onocspresponse],
          onnewsession: [Function: onnewsessionclient],
          onerror: [Function: onerror],
          [Symbol(owner_symbol)]: [Circular *3]
        },
        [Symbol(verified)]: false,
        [Symbol(pendingSession)]: null,
        [Symbol(async_id_symbol)]: 97162,
        [Symbol(kHandle)]: null,
        [Symbol(lastWriteQueueSize)]: 0,
        [Symbol(timeout)]: Timeout {
          _idleTimeout: -1,
          _idlePrev: null,
          _idleNext: null,
          _idleStart: 3675320,
          _onTimeout: null,
          _timerArgs: undefined,
          _repeat: null,
          _destroyed: true,
          [Symbol(refed)]: false,
          [Symbol(kHasPrimitive)]: false,
          [Symbol(asyncId)]: 97164,
          [Symbol(triggerId)]: 0,
          [Symbol(kAsyncContextFrame)]: undefined
        },
        [Symbol(kBuffer)]: null,
        [Symbol(kBufferCb)]: null,
        [Symbol(kBufferGen)]: null,
        [Symbol(shapeMode)]: true,
        [Symbol(kCapture)]: false,
        [Symbol(kSetNoDelay)]: false,
        [Symbol(kSetKeepAlive)]: true,
        [Symbol(kSetKeepAliveInitialDelay)]: 60,
        [Symbol(kBytesRead)]: 0,
        [Symbol(kBytesWritten)]: 0,
        [Symbol(connect-options)]: {
          rejectUnauthorized: true,
          ciphers: 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:DHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA256:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!SRP:!CAMELLIA',
          checkServerIdentity: [Function: checkServerIdentity],
          minDHSize: 1024,
          maxRedirects: 21,
          maxBodyLength: Infinity,
          protocol: 'https:',
          path: null,
          method: 'GET',
          headers: [Object: null prototype] {
            Accept: 'application/json, text/plain, */*',
            Origin: 'https://web.whatsapp.com',
            'User-Agent': 'axios/1.12.2',
            'Accept-Encoding': 'gzip, compress, deflate, br'
          },
          agents: { http: undefined, https: undefined },
          auth: undefined,
          family: undefined,
          beforeRedirect: [Function: dispatchBeforeRedirect],
          beforeRedirects: { proxy: [Function: beforeRedirect] },
          hostname: 'web.whatsapp.net',
          port: 443,
          agent: undefined,
          nativeProtocols: { 'http:': [Object], 'https:': [Object] },
          pathname: '/',
          _defaultAgent: Agent {
            _events: [Object: null prototype],
            _eventsCount: 2,
            _maxListeners: undefined,
            defaultPort: 443,
            protocol: 'https:',
            options: [Object: null prototype],
            requests: [Object: null prototype] {},
            sockets: [Object: null prototype],
            freeSockets: [Object: null prototype],
            keepAliveMsecs: 1000,
            keepAlive: true,
            maxSockets: Infinity,
            maxFreeSockets: 256,
            scheduling: 'lifo',
            maxTotalSockets: Infinity,
            totalSocketCount: 3,
            maxCachedSessions: 100,
            _sessionCache: [Object],
            [Symbol(shapeMode)]: false,
            [Symbol(kCapture)]: false
          },
          host: 'web.whatsapp.net',
          keepAlive: true,
          scheduling: 'lifo',
          timeout: 5000,
          noDelay: true,
          servername: 'web.whatsapp.net',
          _agentKey: 'web.whatsapp.net:443:::::::::::::::::::::',
          encoding: null,
          keepAliveInitialDelay: 1000
        }
      },
      [Symbol(kOutHeaders)]: [Object: null prototype] {
        accept: [ 'Accept', 'application/json, text/plain, */*' ],
        origin: [ 'Origin', 'https://web.whatsapp.com' ],
        'user-agent': [ 'User-Agent', 'axios/1.12.2' ],
        'accept-encoding': [ 'Accept-Encoding', 'gzip, compress, deflate, br' ],
        host: [ 'Host', 'web.whatsapp.net' ]
      },
      [Symbol(errored)]: null,
      [Symbol(kHighWaterMark)]: 65536,
      [Symbol(kRejectNonStandardBodyWrites)]: false,
      [Symbol(kUniqueHeaders)]: null
    },
    _currentUrl: 'https://web.whatsapp.net/',
    [Symbol(shapeMode)]: true,
    [Symbol(kCapture)]: false
  },
  [cause]: Error: getaddrinfo ENOTFOUND web.whatsapp.net
      at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26) {
    errno: -3008,
    code: 'ENOTFOUND',
    syscall: 'getaddrinfo',
    hostname: 'web.whatsapp.net'
  }
}

Node.js v22.17.1

Edited by Ilhamstore

17 hours ago, jjsons said:

@Azhar Azziz 

Do you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.

@Azhar Azziz 

Do you have solution for Button Message. When we try to create button message it also does not show the button section and also give error while adding the auto reply.

On 10/26/2025 at 8:44 AM, Azhar Azziz said:

replace this file in this path:
resources/themes/vuexy/views/ajax/messages

formbutton.blade.php

55 minutes ago, Azhar Azziz said:
  18 hours ago, jjsons said:
  On 10/26/2025 at 6:44 AM, Azhar Azziz said:

replace this file in this path:
resources/themes/vuexy/views/ajax/messages

It worked, thanks for the help.

3:06:24 PM - Requesting pairing code.
3:06:26 PM - Pairing code received.
3:06:26 PM - Rate limit exceeded.

susah banget sekarang pairingnya dc mulu

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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...

Recently Browsing 0

  • No registered users viewing this page.

Latest Updated Files


DoniaWeB © 2018-2025 | Made with

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.