A Python script that sends bulk messages to a WhatsApp number.
python -m venv libs
source libs/bin/activate
pip install -r requirements.txt
playwright installI'm using kitty terminal, and the command kitten icat to display th QR code, you can use any other image viewer or command if you want.
For example in the page example show how to open the image with the default image viewer in your system
from PIL import Image
img = Image.open('path_to_your_image.jpg')
img.show()But it's weird, I just prefer to see the image in the terminal with kitty.
./boomber.py
usage: boomber.py [-h] [-p PHONE] [-t TARGET] [-n NUMBER] [-m MESSAGE] [-qr QR] [-c CODE]
Whatsapp Boomber
options:
-h, --help show this help message and exit
-p, --phone PHONE Your phone number with country code
-t, --target TARGET Target phone with country code
-n, --number NUMBER Number of messages
-m, --message MESSAGE
Message to send
-qr, --qr QR Login using QR [true/false, Default false]
-c, --code CODE Login using Code [true/false, Default false]You can use QR or a code to login your account.
Using QR
./boomber.py -p $NUMBER -t $NUMBER -n 30 -m 'python boomber' -qr trueIn your terminal should appear the QR to scan
Using code
./boomber.py -p $NUMBER -t $NUMBER -n 30 -m 'python boomber' -c trueYou will receive a message in your phone, then enter the code showed in the terminal
Obviously that's not my phone, it's from some African guy who tried to scam me, so I don't care.
In both cases, the boomber will be effective
If there is an error, probably need to update the selector of the textbox, because whatsappp web is constantly updating.


