Wa Gateway | Multi device BETA | MPWA MD

Wa Gateway | Multi device BETA | MPWA MD v8.0.0 ( Extended License )

No permission to download

average_coder

Member
Banned User
Jul 28, 2022
30
52
18

Hello everyone 🙋‍♂️

Hope you are doing well😄

As I promised before, I am almost done the the JavaScript DeObfuscator,​

I would have shared the whole code with you but the code is so confusing for some users.​
So I have made a simple web page where you can decrypt your javascript files with 2 manual steps.​
If the instructions on web page are confusing then don't worry, I will be posting proper instructions on how you can decrypt the file step by step, till then if you think you are smart enough, then give it a try​
here is the link to website-​

(Note- I have temporarily hosted the page on one of my testing code so dont panik😁 | Also I will share the algorithm in coming days, Please hit like and show some support if you want me to continue this work)

(Important: decrypt one person at a time)


 
Last edited:

average_coder

Member
Banned User
Jul 28, 2022
30
52
18

Hello everyone 🙋‍♂️

Hope you are doing well😄

As I promised before, I am almost done the the JavaScript DeObfuscator,​

I would have shared the whole code with you but the code is so confusing for some users.​
So I have made a simple web page where you can decrypt your javascript files with 2 manual steps.​
If the instructions on web page are confusing then don't worry, I will be posting proper instructions on how you can decrypt the file step by step, till then if you think you are smart enough, then give it a try​
here is the link to website-​

(Note- I have temporarily hosted the page on one of my testing code so dont panik😁 | Also I will share the algorithm in coming days, Please hit like and show some support if you want me to continue this work)

(Important: decrypt one person at a time)


@Morehere
View hidden content is available for registered users!
 

Raydar

Member
Jan 21, 2021
50
13
8
Immagine 2022-07-11 193200.png


Ultimate solution without restarting server.js every time.


Step 1: Install Nodejs and NPM in Linux​



1. To install most recent version of Node.js and NPM, first you need to enable official NodeSource repository under your Linux distribution and then install Node.js and NPM packages as shown.

On Debian/Ubuntu​

---------- Install Node.js v11.x ----------
$ curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
$ sudo apt-get install -y nodejs

---------- Install Node.js v10.x ----------
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
$ sudo apt-get install -y nodejs


On CentOS/RHEL and Fedora​

---------- Install Node.js v11.x ----------
$ curl -sL https://rpm.nodesource.com/setup_11.x | bash -

---------- Install Node.js v10.x ----------
$ curl -sL https://rpm.nodesource.com/setup_10.x | bash -


Step 2: Install PM2 Product Process Manager in Linux​

3. The latest stable version of PM2 is available to install via NPM as shown.
$ sudo npm i -g pm2



Step 3: Start Node.js Applications/Processes​

Next, you want to start your Node.js applications using PM2 as follows. If you already have them up and running, started via PM2, you can skip this step:

# cd /patch/you/script/server.js
# pm2 start /patch/you/script/server.js -n server

later you will manage the name "server"
$ sudo pm2 start server
$ sudo pm2 restart server
$ sudo pm2 stop server

Step 4: How to Manage Node Apps Using PM2 in Linux​

9. The following is a list of some common process (single or all) management commands you should take note
$ sudo pm2 stop all ________________________________ #stop all apps
$ sudo pm2 stop 0________________________________ #stop process with ID 0
$ sudo pm2 restart all________________________________ #restart all apps
$ sudo pm2 reset 0________________________________ #reset all counters
$ sudo pm2 delete all ________________________________ #kill and remove all apps
$ sudo pm2 delete 1 ________________________________ #kill and delete app with ID 1

10. To manage application logs, use the following commands.

$ sudo pm2 logs ________________________________ #view logs for all processes
$ sudo pm2 logs 1________________________________ #view logs for app 1
$ sudo pm2 logs --json________________________________ #view logs for all processes in JSON format
$ sudo pm2 flush________________________________ #flush all logs

11. To manage the PM2 process, use the following commands.

$ sudo pm2 startup________________________________ #enable PM2 to start at system boot
$ sudo pm2 startup systemd __________________ #or explicitly specify systemd as startup system
$ sudo pm2 save________________________________ #save current process list on reboot
$ sudo pm2 unstartup________________________________ #disable PM2 from starting at system boot
$ sudo pm2 update________________________________ #update PM2 package

Step 6: Access Node Apps From Web Browser​

12. To access all your node application from a remote web browser, first you need to open following ports on your system firewall, to allow client connections to the apps as shown.

NB: the port 3000 must be opened according to the one you choose to open


-------- Debian and Ubuntu --------
$ sudo ufw allow 3000/tcp
$ sudo ufw reload

-------- RHEL and CentOS --------
# firewall-cmd --permanent --add-port=3000/tcp
# firewall-cmd --reload

Step 7: Enable cron for restart server.js every 5 minutes​


$ crontab -e

paste this code


5 * * * * /usr/local/bin/pm2 restart server >/dev/null 2>&1 >/dev/null 2>&1
thanks
 

vivos1

Active member
May 8, 2022
111
194
43

Hello everyone 🙋‍♂️

Hope you are doing well😄

As I promised before, I am almost done the the JavaScript DeObfuscator,​

I would have shared the whole code with you but the code is so confusing for some users.​
So I have made a simple web page where you can decrypt your javascript files with 2 manual steps.​
If the instructions on web page are confusing then don't worry, I will be posting proper instructions on how you can decrypt the file step by step, till then if you think you are smart enough, then give it a try​
here is the link to website-​

(Note- I have temporarily hosted the page on one of my testing code so dont panik😁 | Also I will share the algorithm in coming days, Please hit like and show some support if you want me to continue this work)

(Important: decrypt one person at a time)


hello i have tried you solution with this file its not working for me can you help ?

 
  • Like
Reactions: hgdgfckhvjyhfvj

average_coder

Member
Banned User
Jul 28, 2022
30
52
18
hello i have tried you solution with this file its not working for me can you help ?

Hello mate​

Thanks for reaching out
  1. This file is wa.js from waziper module and contains more than 17,000+ lines of code
  2. Readability of the entire code is 0% (not a single variable make sense)
  3. This one file will require 20x modification to current algorithm to decrypt it automatically in 10 seconds,
  4. So the tool only supports MPWA js files for now,
  5. But I can decode it manually in 3 to 5 days but only if I am getting paid :p
 

Morehere

Well-known member
Null Master
Trusted Uploader
Jan 13, 2020
965
959
93
Morehere updated Wa Gateway | Multi device BETA | V4.0.0 MPWA MD with a new update entry:

Update v4.1.1 Nulled (24th Aug 2022)

Change logs:
- Update the library to the latest 4.4.0 version
- fix automatic connection via cronjob
- Fix button, list message (following whatsapp updates)


Zip Password:
Don't share password to anyone if they are eligible then they will see password.

View hidden content is available for registered users!

Read the rest of this update entry...
 

Morehere

Well-known member
Null Master
Trusted Uploader
Jan 13, 2020
965
959
93
hello i have tried you solution with this file its not working for me can you help ?

Please post resource related posts.
 

hassan2050

Member
May 15, 2021
35
8
8
when run cronjob
/usr/bin/php7.4 /var/www/whatsapp/artisan schedule:run /dev/null 2>&1
show error

No arguments expected for "schedule:run" command, got "/dev/null".

plase help me
 

Latest posts

Forum statistics

Threads
69,226
Messages
908,438
Members
237,027
Latest member
YoGGe

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu