Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [TUT]EmailBomber Application

[TUT]EmailBomber Application

Posts 1–4 of 4 · Page 1 of 1
GI
Gilcrow
[TUT]EmailBomber Application
People made some, no one explained how to was done
most likley because they copy and pasted there code.
hence they all required gmail accounts.

Anyway

Firstly create a new form with

4 x Textboxes
Named
- EmailBox
- SubjBox
- UserBox
- PassBox
1 x RichTextBox
Named
-MsgBox
1 x Timer
Named
- Timer1
3 Buttons
Named / Lable
- SendBtn / Send
- StopBtn / Stop
- ExitBtn / Exit

-------------------------------------------------------

Now double click the form to bring up the source code, insert this
code line at the verry top

Code:
Imports System.Net.Mail
-------------------------------------------------------

We will now sort the buttons, Starting with SendBtn
Double click the button and add the following code....

Code:
Timer1.Start()
Next we move onto the Stop button...

Code:
Timer1.Stop()
The final button Exit

Code:
End
----------------------------------------------------------

Now lets move onto the timer

Instert the following code after double clicking the timer.

Code:
        Dim MyMailMessage As New MailMessage()
        MyMailMessage.From = New MailAddress(UserBox.Text)
        MyMailMessage.To.Add(EmailBox.Text)
        MyMailMessage.Subject = (SubjBox.Text)
        MyMailMessage.Body = MsgBox.Text
        Dim SMTPServer As New SmtpClient("smtp.live.com")
        SMTPServer.Port = 587
        SMTPServer.Credentials = New System.Net.NetworkCredential(UserBox.Text, PassBox.Text)
        SMTPServer.EnableSsl = True
        SMTPServer.Send(MyMailMessage)
===============================================

Done, and now to explain that final code block


Dim MyMailMessage As New MailMessage()
//Gives MyMailMessage the meaning of New MailMessage()

MyMailMessage.From = New MailAddress(UserBox.Text)
//Sets the from email address of our new email to a New MailAddress, based on the content of UserBox.Text

MyMailMessage.To.Add(EmailBox.Text)
// This adds another email address to the send like, based again on the text in the email box

MyMailMessage.Subject = (SubjBox.Text)
// Sets the email subject to the value of SubjBox

MyMailMessage.Body = MsgBox.Text
// Sets the body of the email from what was entered into our rich textbox
"MsgBox"

Dim SMTPServer As New SmtpClient("smtp.live.com")
// Set SMTPServer as a new smtpclient, which is smtp.live.com ( this is the mail server for msn)

SMTPServer.Port = 587
// Set our servers port

SMTPServer.Credentials = New System.Net.NetworkCredential(UserBox.Text, PassBox.Text)
//Get the user information required to send an email from the server

SMTPServer.EnableSsl = True
//EnableSsl ¬_¬

SMTPServer.Send(MyMailMessage)
// And Finally send out email
=============================================

Now im sorry for any spelling mistakes but i wrote this on the spot
in about 5mins.
#1 · edited 16y ago · 16y ago
maarten551
maarten551
i found a error :P

Code:
Import System.Net.Mail
need to be
Code:
Imports System.Net.Mail
for the rest:

i love the code tnx :P
it works by me
#2 · 16y ago
GI
Gilcrow
corrected, and uploaded source
#3 · 16y ago
K4GE
K4GE
Nice tutorial,
im sure this will help some people.
Thanks for posting.
#4 · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • [TuT] You First C++ Console ApplicationBy sam22 in Programming Tutorials
    6Last post 15y ago
  • In-Depth Tut. to hacking in War Rock (Conc. to Dave)By fl0 in WarRock - International Hacks
    15Last post 20y ago
  • TutsBy Mukuro in Hack Requests
    0Last post 20y ago
  • Tut. for k. gunz or J. gunz?By i eat trees in Hack Requests
    0Last post 20y ago
  • Helbreath International Hack/GM Hack tutBy xxaznrjaexx in Hack Requests
    1Last post 20y ago

Tags for this Thread

#application#tutemailbomber