Jump to content
Bicrypto v4.5.0 + All Plugins
Posted
  • Popular Post
comment_35854

Whatsapp Gateway | Multi Device


This script has been completely modified and many important features and fixes have been added by @Magd Almuntaser
He is now responsible for the updates of this script and has full intellectual property rights
So no one will violate the terms of use that he has set

Latest Features:
1. WhatsApp Account Connectivity

All types of WhatsApp Accounts to be able to connect with WhatsApp Gateway (Multi Number & Multi Device);
Ease of the WhatsApp Account connectivity process with a QRcode Scan or with an Authentication Code directly from your device.

2. Message

Availability of various types of (text messages, media, polls, lists, locations, VCard) can easily be used by you;
You can send mass messages for your marketing campaign activities, promotions or business programs easily and on a scheduled basis;
Setup automatic message replies with more natural (alami) and selected keywords for operational optimization of use;
Manage sent message history with automatic and scheduled deletions.

4. Integration

You can easily integrate your WhatsApp Account with various (AI) artificial intelligence services, namely ChatGPT, DALL-E, Gemini, and Cloude with API authentication codes only;
You can easily activate Ai for Single or Multiple use on your WhatsApp Account;
You can easily select Ai in your WhatsApp messages for WhatsApp Group, Private, or Both types;
You can easily setup call rejection automatically if there is a (Call) call and provide a specific response or information;
Setup your WhatsApp and Ai accounts more naturally (alami) with "Already read" status";
Setup your WhatsApp and Ai accounts more naturally (natural) with the status "Typing...".
You can easily integrate and communicate your services with the Webhook mechanism of WhatsApp Gateway | Multi Device.

5. Application Settings

Nowadays you can easily and quickly carry out the process of setting up the WhatsApp Gateway | Multi Device* application by Magd Almuntaser with the settings panel;
You can easily set up applications based on server ecosystem, smtp, etc quickly;
Multi language support (english, Indonesian, Indian, Spanish and Arabic) for easy use.

6. Developer Options

Currently WhatsApp Gateway | Multi Device* by Magd Almuntaser has provided various API services for your easy development consisting of:
        1). Send Message API
        2). Send Media API
        3). Send Poll API
        4). API Send Button
        5). Send API Templates
        6). Send List message API
        7). Send Location API
        8). Send VCard API
        9). Generate QR API
        10). Disconnect devices
        11). Create User API
        12). User Info API
        13). Device Info API
        14). Check Number API
        15). Webhook Example

Ease of setup and availability of the (API Key) API Key for authentication and authorization of your development process.

7. Security

Currently there is a 2 factor authentication (2FA) service available to maintain the security and comfort of application access;
A password reset service is available if you forget your account login information.


Coming Soon:

1. Landing page for Software as Service services (Subscription Services);
2. Payment gateway page management (QRIS, BCA virtual account, PayPal, Stripe);
3. Added user account management;
4. (ticket) obstacle reporting service for users and managers;
.. And many more.


 

  • Replies 4.1k
  • Views 249.2k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Magd Almuntaser
    Magd Almuntaser

    What's new in version 9.0.0 so far: - Added landing page (welcome page). - Added plans system. - Added cronjob page. - Added Multi-Keyword in autoreply. - Added send message with footer. -

  • Magd Almuntaser
    Magd Almuntaser

    This version will not be released soon, because there are many people who violate rights without permission.. I told everyone to use the script for free, but if you want to sell the version or redev

  • Magd Almuntaser
    Magd Almuntaser

    Today the version will be released, and this is what's new in version 8.5.0: - Added send sticker feature. - Added wysiwyg whatsapp (text editing tools). - Added location, vcard, sticker in camp

Posted Images

Featured Replies

comment_81436
On 10/16/2024 at 1:18 PM, Jei Grey said:

Whatsapp saya sering Disconnect padahal tiap 5 menit antar 5 nomor tersebut saling kirim chat dan saling jawab.. kira-kira kenapa ya? 
image.png.2c5154a0fc26d8186bf5293b99fdfbaa.png

Memang gitu banyak problem🥲

skrg aku pake yg lain walaupun minim fitur tp stabil

comment_81454
2 minutes ago, Unicode said:

Pake walazy. Aman no dc2 club, no idle, no logout. Cuman minim fitur.

wasender juga lumayan tp rada berat dan menu ribet

ooo, kendala DC DC gitu ya Om? Ane pakai ini sejak versi 7, dan baru 2 minggu lalu update. Baru jalan scriptnya dapat dari Om Gusik sama Om Dammah. Wkwkwk.
Tapi kalau DC sama idle engga pernah sih Om. Log out juga engga pernah. Sejauh ini aman sih. Mau nyobain walazy juga nanti.

comment_81460
7 minutes ago, adhiete said:

ooo, kendala DC DC gitu ya Om? Ane pakai ini sejak versi 7, dan baru 2 minggu lalu update. Baru jalan scriptnya dapat dari Om Gusik sama Om Dammah. Wkwkwk.
Tapi kalau DC sama idle engga pernah sih Om. Log out juga engga pernah. Sejauh ini aman sih. Mau nyobain walazy juga nanti.

Ya semoga aman terus.

menurutku mpwa belum bisa diajak buat kerja, soalnya webku ngasih notif pembelian ke buyer aja kadang pas idle jadi gk masuk.

kalo pake wasender / walazy aman gk pernah idle.

comment_81493
39 minutes ago, Unicode said:

Ya semoga aman terus.

menurutku mpwa belum bisa diajak buat kerja, soalnya webku ngasih notif pembelian ke buyer aja kadang pas idle jadi gk masuk.

kalo pake wasender / walazy aman gk pernah idle.

bedanya apa Om Wasender sama Walazy? script juga?

comment_81839

Node server not connaction and Qr alson not shoing

and othser screenshots attaced 

my server.js

'use strict';

const wa = require("./server/whatsapp");
const fs = require("fs");
const dbs = require('./server/database/index');
require("dotenv").config();
const lib = require("./server/lib");
global.log = lib.log;

/**
 * EXPRESS FOR ROUTING
 */
const express = require("express");
const app = express();

/**
 * HTTPS CONFIGURATION
 */
const https = require("https");
const privateKey = fs.readFileSync('mydomain/key.pem');
const certificate = fs.readFileSync('mydoinin/cert.pem');
const ca = fs.readFileSync('whatsapp.anmoll.in/csr.pem');

const credentials = {
  key: privateKey,
  cert: certificate,
  ca: ca
};

const server = https.createServer(credentials, app);


/**
 * SOCKET.IO
 */
const { Server } = require("socket.io");
const io = new Server(server, {
  pingInterval: 25000,
  pingTimeout: 10000,
});
const port = process.env.PORT_NODE;

app.use((req, res, next) => {
  res.set("Cache-Control", "no-store");
  req.io = io;
  next();
});

const bodyParser = require("body-parser");

app.use(
  bodyParser.urlencoded({
    extended: false,
    limit: "50mb",
    parameterLimit: 100000,
  })
);

app.use(bodyParser.json());
app.use(express.static("src/public"));
app.use(require("./server/router"));

io.on("connection", (socket) => {
  console.log("A user connected");

  socket.on("StartConnection", (data) => {
    wa.connectToWhatsApp(data, io);
  });

  socket.on("ConnectViaCode", (data) => {
    wa.connectToWhatsApp(data, io, true);
  });

  socket.on("LogoutDevice", (device) => {
    wa.deleteCredentials(device, io);
  });

  socket.on("disconnect", () => {
    console.log("A user disconnected");
  });
});

server.listen(port, () => {
    console.log(`Server running and listening on port: ${port}`);
});

dbs.db.query("SELECT * FROM devices WHERE status = 'Connected'", (err, results) => {
  if (err) {
    console.error('Error executing query:', err);
  }
  results.forEach(row => {
    const number = row.body;
    if (/^\d+$/.test(number)) {
      wa.connectToWhatsApp(number);
    }
  });
});
 

env.png

node.png

Screenshot 2024-10-21 190345.png

comment_81843

Error ID:

d756904d

Details:

Web application could not be started by the Phusion Passenger(R) application server.

Please read the Passenger log file (search for the Error ID) to find the details of the error.

You can also get a detailed report to appear directly on this page, but for security reasons it is only provided if Phusion Passenger(R) is run with environment set to development and/or with the friendly error pages option set to on.

For more information about configuring environment and friendly error pages, see:

comment_81877
On 9/28/2024 at 3:15 PM, Magd Almuntaser said:

What's new in version 9.0.0 so far:
- Added landing page (welcome page).
-
Added plans system.
-
Added cronjob page.
-
Added Multi-Keyword in autoreply.
-
Added send message with footer.
-
Fixed create campaign view.
-
Fixed connect method for shared hosting.
-
Fixed force using ipv4.
-
Fixed create & import phonebook.
-
Fixed connect via code & qrcode changed quick when linking.
-
Removed unused librares.
-
Re-order installtion page.

Remaining to finish this version:
Add payment gateways (paypal, stripe, virtual indonesian banks, qris, debit/credit card...etc).
-
Add ticket system.
-
Add user management.
-
Add (landing page) edit page.
-
Add language edit page.
=======
Ability to control the appearance of the landing page for people who use the script as a personal

Whe u published this 

  • Author
comment_81883
2 hours ago, GAMING TADKA said:

Whe u published this 

This version will not be released soon, because there are many people who violate rights without permission..
I told everyone to use the script for free, but if you want to sell the version or redevelop it, you must take my permission before that.. But there are many who did not follow these conditions, so this version 9.0.0 will be delayed until the DMCA cases that I filed against them are completed.

To be more clear, there are two people who violated the rights by erasing all the rights and reselling the version under another name without taking my permission.

There are thousands of modifications that I made in version 9.0.0, which have completely met everyone's needs, with many features, and I have not announced these updates yet.

comment_81886
2 hours ago, Magd Almuntaser said:

This version will not be released soon, because there are many people who violate rights without permission..
I told everyone to use the script for free, but if you want to sell the version or redevelop it, you must take my permission before that.. But there are many who did not follow these conditions, so this version 9.0.0 will be delayed until the DMCA cases that I filed against them are completed.

To be more clear, there are two people who violated the rights by erasing all the rights and reselling the version under another name without taking my permission.

There are thousands of modifications that I made in version 9.0.0, which have completely met everyone's needs, with many features, and I have not announced these updates yet.

If this is exclusive I dare to pay it sir

comment_81893
5 hours ago, Magd Almuntaser said:

This version will not be released soon, because there are many people who violate rights without permission..
I told everyone to use the script for free, but if you want to sell the version or redevelop it, you must take my permission before that.. But there are many who did not follow these conditions, so this version 9.0.0 will be delayed until the DMCA cases that I filed against them are completed.

To be more clear, there are two people who violated the rights by erasing all the rights and reselling the version under another name without taking my permission.

There are thousands of modifications that I made in version 9.0.0, which have completely met everyone's needs, with many features, and I have not announced these updates yet.

before it throw to far, i want to ask permission to modified this script, but im sure not to sell your modifications, i modif it for my usage or personal usage, here i modified for AI reply method by my self and some other functions, the big think is i did not selling your effort and i dont want to, just customize base on my needs. hope you allow me to do that mate 

  • Author
comment_81895
2 minutes ago, Jajan Dari Android said:

before it throw to far, i want to ask permission to modified this script, but im sure not to sell your modifications, i modif it for my usage or personal usage, here i modified for AI reply method by my self and some other functions, the big think is i did not selling your effort and i dont want to, just customize base on my needs. hope you allow me to do that mate 

I give you all permission to modify, add or remove the copyright or modify the name for personal use. If you want to sell the copy, please contact me first.
This permission is for everyone, not just you, provided that the use is personal. However, if you want to sell the version, please contact me first.

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

Latest Updated Files