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 › [Source Code] Email Bomber/Spammer

[Source Code] Email Bomber/Spammer

Posts 1–9 of 9 · Page 1 of 1
SC
scimmyboy
[Source Code] Email Bomber/Spammer
Email Spammer (only works for gmail accounts atm)

Source by me, references to books


The spammer currently only works with Gmail accounts, and will cut off at around 600 emails due to their smtp server. Enjoy

Code:
Imports System.Net.Mail
Public Class Form1
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        ProgressBar1.Increment(1)
        If ProgressBar1.Value = ProgressBar1.Maximum Then
            Dim MyMailMessage As New MailMessage()
            MyMailMessage.From = New MailAddress(TextBox1.Text)
            MyMailMessage.To.Add(TextBox3.Text)
            MyMailMessage.Subject = (TextBox4.Text)
            MyMailMessage.Body = (RichTextBox1.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
            Label7.Text = Val(Label7.Text + 1)
            TextBox4.Text = Val(Label7.Text + 1)
            SMTPServer.Send(MyMailMessage)
        End If
    End Sub

    Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Start()
    End Sub

    Private Sub Button2_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Timer1.Stop()
    End Sub
End Class
Please be sure to include the Imports System.Net.Mail at the top of the form.

I added the progressbar for fun while I was practicing some shit.
#1 · edited 16y ago · 16y ago
NextGen1
NextGen1
The Code

Code:
im MyMailMessage As New MailMessage()
            MyMailMessage.From = New MailAddress(TextBox1.Text)
            MyMailMessage.To.Add(TextBox3.Text)
Shows this is partly leeched, Granted there has been some additions to a very traditional textbook email sender, it is still not "your code"

But thanks for sharing

#2 · 16y ago
SC
scimmyboy
well, of course ive been reading books and shit. email spammers arent that hard to make
#3 · 16y ago
NextGen1
NextGen1
I understand , Just referring to

"Again, source by me!"
#4 · 16y ago
SC
scimmyboy
Well, it is original, cuz i didnt Copy and Paste off some website. used what i KNEW to write it.
#5 · 16y ago
PP
ppl2pass
how fast can it send 600 emails?
#6 · 16y ago
SC
scimmyboy
Quote Originally Posted by ppl2pass View Post
how fast can it send 600 emails?
depends how fast ur comp and internet is
#7 · 16y ago
SK
skiiiz
The smtp server for Hotmail & Live emails is:
Code:
smtp.live.com
make a combo box or something.
#8 · 16y ago
NextGen1
NextGen1
/CLosed

Please don't bump old threads = or < 7 days

Sorry
#9 · 16y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • [Request] Gmail eMail Sending Source CodeBy deocute in Visual Basic Programming
    5Last post 16y ago
  • (tut)My spammer Source codeBy sam22 in Visual Basic Programming
    5Last post 15y ago
  • Spammer Source CodeBy Takari in CrossFire Hack Coding / Programming / Source Code
    6Last post 15y ago
  • Multi-Line Spammer Tutorial + Source code and projectBy dragonattak in CrossFire Hack Coding / Programming / Source Code
    5Last post 15y ago
  • HALO 2 (XBOX) Source CodeBy mirelesmichael in General Game Hacking
    12Last post 20y ago

Tags for this Thread

None