Jump to content
Bicrypto v4.5.0 + All Plugins
  • Replies 4.1k
  • Views 249.6k
  • 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

  • Author
comment_73017
6 minutes ago, The Billionaire said:

Please can someone help, why do I need to always rescan, before it connects just like the script goes idle time

Yes, this issue is affecting everyone. WhatsApp updated its WebSocket, which led to connection problems with WhiskeySockets. We are all waiting for their new update to be compatible with the latest socket used by WhatsApp. You can follow their news in the issues section on their GitHub page:
(github .com/WhiskeySockets/Baileys/issues)

comment_73018
11 minutes ago, The Billionaire said:

Please can someone help, why do I need to always rescan, before it connects just like the script goes idle time

access: yourweb.com/schedule-run if the page load to blank page with some number inside (show 0 in top left corner), the cron should work, but if the result blank maybe any problem with your server so the cronjob not working properly

comment_73023
1 hour ago, The Billionaire said:

Please can someone help, why do I need to always rescan, before it connects just like the script goes idle time

Cek postingan saya sebelumnya

comment_73025
1 hour ago, Magd Almuntaser said:


Pastikan Anda menggunakan salinan saya di postingan saya di halaman 41. Tentang:
(This version is 7.0.0, Nulled, decoded(PHP and JavaScript), and modified)

image.thumb.png.d6f24bbcd8bd067027eba634e20962f2.png

 

saya menggunakan salinan di halaman 41

comment_73027
3 minutes ago, Magd Almuntaser said:

Coba kirimkan message text biasa dan lihat apakah berhasil.
Kemudian coba auto message setelahnya

teks biasa berhasil

WhatsApp Image 2024-07-22 at 21.32.17.jpeg

  • Author
comment_73029
5 minutes ago, Bajra Al Faruq said:

image.thumb.png.02292da8a4833a902b8f48801e8c0c37.png

 

pesan terjadwal belum jalan

ini cronjob yg digunakan @Magd Almuntaser

 

image.thumb.png.54168006d2bedd79e3e486ead3777d43.png

Sekarang Anda memberi tahu saya bahwa auto message dan campaign tidak berfungsi, masalah ini telah saya perbaiki di versi saya, jadi bagaimana bisa tidak berfungsi dengan Anda?
Buka tautan berikut ini dan beri tahu saya apakah halaman putih dengan angka 0 muncul:
 

yoursite.com/schedule-run

Apakah tautan situs web Anda menggunakan https dan apakah Anda telah menginstal file key.pem dan cert.pem yang telah saya jelaskan sebelumnya? Atau masih menggunakan http?
 

comment_73030
4 minutes ago, Magd Almuntaser said:

Sekarang Anda memberi tahu saya bahwa auto message dan campaign tidak berfungsi, masalah ini telah saya perbaiki di versi saya, jadi bagaimana bisa tidak berfungsi dengan Anda?
Buka tautan berikut ini dan beri tahu saya apakah halaman putih dengan angka 0 muncul:
 

yoursite.com/schedule-run

Apakah tautan situs web Anda menggunakan https dan apakah Anda telah menginstal file key.pem dan cert.pem yang telah saya jelaskan sebelumnya? Atau masih menggunakan http?
 

image.png.5e6616f46ee80a77b68959acfdc274c3.png

 

angka 0 yg keluar

comment_73042
5 hours ago, Gusik Prasetyo said:

access: yourweb.com/schedule-run if the page load to blank page with some number inside (show 0 in top left corner), the cron should work, but if the result blank maybe any problem with your server so the cronjob not working properly

@Gusik Prasetyo image.png.7bea6dc0c70f138a6f5c23e614d7c98d.png this is what am seeing

  • Author
comment_73046
On 7/13/2024 at 4:46 PM, agus amin said:

Replace Server.js and Restart Node.js

"use strict";

// Copyright By Ilman Sunanuddin, M pedia
// Email : Ilmansunannudin2@gmail.com
// website : https://m-pedia.co.id
// Whatsap : 6282298859671
// ------------------------------------------------------------------
// You are not allowed to share or sell this source code without permission.

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();
const http = require("http");
const server = http.createServer(app);

/**
 * SOCKET.IO
 */
const { Server } = require("socket.io");
const io = new Server(server);
const port = process.env.PORT_NODE;
app.use((req, res, next) => {
  res.set("Cache-Control", "no-store");
  req.io = io;
  // res.set('Cache-Control', 'no-store')
  next();
});

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

// parse application/x-www-form-urlencoded
app.use(
  bodyParser.urlencoded({
    extended: false,
    limit: "50mb",
    parameterLimit: 100000,
  })
);
// parse application/json
app.use(bodyParser.json());
app.use(express.static("src/public"));
app.use(require("./server/router"));

// console.log(process.argv)

io.on("connection", (socket) => {
  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);
    wa.connectToWhatsApp(device, io);
  });
});
server.listen(port, console.log(`Server run and listening 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);
      }
    });
});

 

 

27 minutes ago, The Billionaire said:

@agus amin please can you add the link to the post i cant find it

He means this post 👆

  • Author
comment_73048

Google Authenticator (2FA) Plugin v1.0.0
For version (7.0.0)

 

I've programmed a new 2FA plugin so that users on your site can turn on two-step verification protection.
I've added the ability to enable and disable this feature from the control panel

Installation is very easy, download the zip file and unzip it in the root folder path of the script, then open the following link in your browser:

http://yoursite/migrate

If you see a white page and the number 0, it's working, if it's not and you have a vps, you can run this command via SSH:

php artisan migrate

 

You can now access your site and clicking on the image in the top right corner and clicking on Setting:

image.png.5908bdb468f178e7b52ec99f92c66dfd.png

 

You will find a new button called "Enable Authenticator 2FA?" All your users will see this button and can enable or disable it from here.

image.png.f5c287f51f8616e8b32dabdac2fb8fd0.png

 

After pressing this button, a page will open with a QR code for the google authenticator application, if you don't have it on your phone, you can download it from Google Play, scan the QR code and it will show you the number that changes every 10 seconds. Enter it in the box and press confirm

image.png.589cfb81efa61606982cf56fe55303a6.png

 

You can now logout and try logging in again. You will see that after logging in, you are taken to the Authenticator 2FA window, and you need to enter the code from the Authenticator app on your phone each time you login

image.png.0d63afa7d6286985a148ea709edb93b7.png

 

Note: The (Forget?) button is not working at the moment, but I will be releasing the next version with a new feature in this button

2FA-plugin-v1.0.0.zip

comment_73055
1 hour ago, Magd Almuntaser said:

Google Authenticator (2FA) Plugin v1.0.0
For version (7.0.0)

 

I've programmed a new 2FA plugin so that users on your site can turn on two-step verification protection.
I've added the ability to enable and disable this feature from the control panel

 

awesome, many thanks for this plugin brother.

2fa mpwa.jpg

comment_73062
4 hours ago, Magd Almuntaser said:

Plugin Google Authenticator (2FA) v1.0.0
Untuk versi (7.0.0)

 

Saya telah memprogram plugin 2FA baru sehingga pengguna di situs Anda dapat mengaktifkan perlindungan verifikasi dua langkah.
Saya telah menambahkan kemampuan untuk mengaktifkan dan menonaktifkan fitur ini dari panel kontrol

Pemasangannya sangat mudah, unduh file zip dan ekstrak di jalur folder root skrip, lalu buka tautan berikut di peramban Anda:

Jika Anda melihat halaman putih dan angka 0, berarti halaman tersebut berfungsi. Jika tidak, dan Anda memiliki VPS , Anda dapat menjalankan perintah ini melalui SSH:

 

Anda sekarang dapat mengakses situs Anda dan mengklik gambar di sudut kanan atas dan mengklik Pengaturan:

gambar.png.5908bdb468f178e7b52ec99f92c66dfd.png

 

Anda akan menemukan tombol baru yang disebut " Aktifkan Authenticator 2FA? " Semua pengguna Anda akan melihat tombol ini dan dapat mengaktifkan atau menonaktifkannya dari sini.

gambar.png.f5c287f51f8616e8b32dabdac2fb8fd0.png

 

Setelah menekan tombol ini, akan terbuka halaman berisi kode QR untuk aplikasi Google Authenticator, jika belum ada di ponsel Anda, Anda dapat mengunduhnya dari Google Play , pindai kode QR tersebut , dan akan muncul nomor yang berubah setiap 10 detik. Masukkan kode tersebut ke dalam kotak dan tekan konfirmasi.

gambar.png.589cfb81efa61606982cf56fe55303a6.png

 

Sekarang Anda dapat keluar dan mencoba masuk lagi. Anda akan melihat bahwa setelah masuk, Anda akan dibawa ke jendela Authenticator 2FA, dan Anda perlu memasukkan kode dari aplikasi Authenticator di ponsel Anda setiap kali Anda masuk.

gambar.png.0d63afa7d6286985a148ea709edb93b7.png

 

Catatan: Tombol (Lupa?) tidak berfungsi saat ini, tetapi saya akan merilis versi berikutnya dengan fitur baru di tombol ini

Plugin 2FA v1.0.0.zip 827,17 kB Bahasa Indonesia: 4 unduhan

..sangat bermanfaat

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

Recently Browsing 0

  • No registered users viewing this page.

Latest Updated Files