Trybotics Logo

Simple Spam Bot - VB.net

DESCRIPTION

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.

Description:

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

Description:

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

Description:

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

Description:

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

Description:

I made the Form look pretty.

Description:

The timer is the magic of the Spammer, Without the timer you have a form with 3 buttons and a textbox on it.

Description:

Description:

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

Description:

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

Description:

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.


YOU MIGHT ALSO LIKE