How to make a Whatsapp spam bot in 7 line of code
WHAT IS WHATSAPP?
Whatsapp is an Online messaging - service that uses the internet to send messages, video, audio, and receive the message. It is a totally free App there is no charge in this App. Now, on WhatsApp, a payment feature is also available.
It was made by two friends Brian Acton and Jan Koum who was former employee of Yahoo!. In Jan 2009, they have purchased an iPhone and they realize the Potential of the Application in the App store. By that time only one app was there for Online messaging service which is BBM Enterprises which was made by Blackberry Company, but that app run only in Blackberry Mobile. So both decided to make an app that can run on any OS.
WHAT IS SPAM?
Spam can be defined as an endless repetition and worthless text. In other's words, we can say that it is an unwanted message or E-mails. It is nothing it's just Multiple copies of the same message. It can be sent from any Person or any Organization
Most spam is commercial advertising. It only wastes People's time, and Spam also eats a lot of Network Bandwidth.
WHAT IS A BOT?
A bot is automatic software that is Programmed or designed to do certain tasks. It works without Human interruption. Sometimes it needs to start manually, after that it will work fully automated.
Bots are usually operated over a network it works in, interacting with Webpage, chatting with any users, looking for an attack on somewhere.
WHAT IS WHATSAPP SPAM BOT?
Whatsapp spam bot is a type of automated software that spams in Whatsapp chat, WhatsApp groups. Its main function is to spam something this could be Text, Video, Photos, Links, anything which is given in CODE.
It only Consumes your storage, wastes your internet, and it is most likely you will get irritated after sometimes because you will get again and again messages.
WHAT IS PYCHARM?
Pycharm is Python IDE(Integrated Development Environment). It is Editor which use for writing python codes, in this editor, there are various tools for python developers which help them to work very fast.
In this, you can access the command line, create a virtual environment connect to any database. It supports web development with Django and Data Science with Anaconda.
It was released on 3 Feb 2010, It was developed by JetBrains.
It is available in two version
• Professional
• Community
STEPS TO DOWNLOAD A PYCHARM -
• STEP I: Open your Browser.
• STEP II: Search this " Download Pycharm", After that open the first link which is by JetBrains
• STEP III: Click on Download Button, your download will shortly start.
When Pycharm is Downloaded, After that we will see how to SetUP the Pycharm.....
STEPS TO SETUP A PYCHARM FILE -
• STEP I: Double Click on Pycharm.exe File.
• STEP II: First accept the user T&C, After that click Next.
• STEP III: If you want to read all things you can or you can directly click on Next.
YOUR PYCHARM WILL BE INSTALLED...🥳
NOW WE WILL SEE HOW TO USE THIS CODE AND MAKE YOUR WHATSAPP SPAM BOT
STEPS TO MAKE WHATSAPP SPAM BOT
• STEP I: Firstly, Copy that Code which is Given At The Top Of the Site.
• STEP II: Then go to your Pycharm and firstly make a New Folder or choose any Existing Folder then a create a new file with (.py) extension and also create a txt file in which your spam is there from that file you will be able to spam you can give any content like any movie script, In our case, we are using BEE movie script you can also download and paste that code in your file.
• STEP III: Now Click on the RUN button.
• STEP IV: Quickly, go to your WhatsApp and select the chat or group wherever you want to do spam.
• STEP V: You'll see that spamming is started.
• STEP VI: To stop spamming simply go to Pycharm and Click the stop button.
Now The Source Code
here is the code and be sure to replace the "txtfile" with Your Test File and whatever You Write On the txt file that will do spam
in my case, I spammed a whole movie script on my friend group for fun
import time
import pyautogui
time.sleep(5)
f = open("txtfile", 'r')
for word in f:
pyautogui.typewrite(word)
pyautogui.press("enter")
Post a Comment