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.