Simple Spam Bot - VB.net

by RustieProgramming in Circuits > Software

29678 Views, 24 Favorites, 0 Comments

Simple Spam Bot - VB.net

INTRO.png

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: Make a New Windows Form

NewWindowsFORM.png

This tutorial will be created and designed in Visual Studio 2010 which can be downloaded here.

Step 2: Add Form Items

AddItmes.png

Add the Following form items: Button x3 and a single Textbox.

Step 3: Make the Textbox Multiline

maketxtboxMultiLine.png

This will allow the Textbox to be stretched out large, and not in a long line.

Step 4: Move Your Items Around

MoveItems.png

Move your items around how you would like them. Not much to say here.

Step 5: Make It Look Pretty

EditITEMS.png

I made the Form look pretty.

Step 6: Add the Timer

AddTIMER.png

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: Double Tap the Timer1 on the Button of the Window

DoubleTapTIMER1.png

Step 8: Copy the Code As Shown for Timer1

Timer1CODE.png

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: Copy the Code As Shown for Button 1, 2, and 3

ButtonsCODE.png

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

Finished Product

FinishedProduct.png

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.