Introduction: Simple Spam Bot - VB.net
This is a quick tutorial I made on how to make a spam bot. What is a spam bot? A Spam bot is basically used to send a repetitive message over one hundred times over. Spam is a great to get the attention of somebody, or just really annoy them. This tutorial can be used for other reasons besides a spam bot by using the same code with different put outs.
Step 1: Step 1: Make a New Windows Form
This tutorial will be created and designed in Visual Studio 2010 which can be downloaded here.
Step 2: Step 2: Add Form Items
Add the Following form items: Button x3 and a single Textbox.
Step 3: Step 3: Make the Textbox Multiline
This will allow the Textbox to be stretched out large, and not in a long line.
Step 4: Step 4: Move Your Items Around
Move your items around how you would like them. Not much to say here.
Step 5: Step 5: Make It Look Pretty
I made the Form look pretty.
Step 6: Step 6: Add the Timer
The timer is the magic of the Spammer, Without the timer you have a form with 3 buttons and a textbox on it.
Step 7: Step 7: Double Tap the Timer1 on the Button of the Window
Step 8: Step 8: Copy the Code As Shown for Timer1
Code:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick SendKeys.Send(TextBox1.Text) SendKeys.Send("{ENTER}")
End Sub
Step 9: Step 9: Copy the Code As Shown for Button 1, 2, and 3
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start() End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Timer1.Stop() End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click TextBox1.Text = "" End Sub
Step 10: Finished Product
Disclaimer:
If you using this on a Laptop, Make sure you have a PC Mouse connected, or else the Spammer recognizes the mouse as a source and all hell breaks loose. Thank you for this honor to teach you how to create the Spammer.

Participated in the
Coded Creations
10 Comments
7 years ago on Introduction
This is great! I like to do the same thing to annoy my friends by sending them the same text message over and over again. Thanks for sharing and welcome to the community!
Question 4 years ago on Step 10
why the coding has errors
6 years ago
this can be illegal dont use it outside of personal use
7 years ago
Good instructable;
There is a way to do this with vbs;
Perhaps I can post a ible of this in the near future.
Reply 7 years ago
I think there is another method of "spamming" using a .txt file. This method allows use of more than a single line for each post.
For example using multiline Ascii art.
Perhaps I can dig up that code from the digital dust it's been collecting since the AOL™ days.
Reply 7 years ago
This is a simpler way of course, less coding, less coding knowledge, and user friendly UI
7 years ago on Introduction
Don't forget to check out my YouTube channel: https://www.youtube.com/channel/UCNFkhyxtHFVrNRCN0DSSSGQ
7 years ago
By the way,
Cool one dude!!!
Are you doing this on Python?
7 years ago
Can you check out my Python Programming P:1-4
7 years ago
Hello...