| View previous topic :: View next topic |
| Author |
Message |
psychoHacker Expert Cheater
Reputation: 0
Joined: 31 Dec 2008 Posts: 125 Location: Behind You
|
Posted: Sun Aug 30, 2009 9:49 am Post subject: E-Mail Sender/Spammer |
|
|
Here is an E-Mail Sender/Spammer what I made in visual basic 2008.
It's really easy to use.
Download: Download Here
Image:
Download: Download Here
_________________
|
|
| Back to top |
|
 |
Stylo Grandmaster Cheater Supreme
Reputation: 3
Joined: 16 May 2007 Posts: 1073 Location: Israel
|
Posted: Sun Aug 30, 2009 12:19 pm Post subject: |
|
|
you should mention this is for gmail only
and post the source of it or move it to binary section..
|
|
| Back to top |
|
 |
psychoHacker Expert Cheater
Reputation: 0
Joined: 31 Dec 2008 Posts: 125 Location: Behind You
|
Posted: Sun Aug 30, 2009 1:15 pm Post subject: |
|
|
| 1qaz wrote: | you should mention this is for gmail only
and post the source of it or move it to binary section.. |
Actually it works for hotmail too, I havn't tested to yahoo or other email hosts because I was too lazy when I was testing it. But it works for hotmail and also for gmail for sure!
_________________
|
|
| Back to top |
|
 |
Guy Expert Cheater
Reputation: 0
Joined: 30 May 2009 Posts: 187
|
Posted: Sun Aug 30, 2009 1:32 pm Post subject: |
|
|
| Quote: |
Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As EventArgs)
If (Me.ProgressBar1.Value < Me.ProgressBar1.Maximum) Then
Me.ProgressBar1.Value += 1
Dim message As New MailMessage
Dim client As New SmtpClient
client.Credentials = New NetworkCredential("[email protected]", "qwert12345678")
client.Port = &H24B
client.Host = "smtp.gmail.com"
client.EnableSsl = True
message.To.Add(Me.TextBox1.Text)
message.From = New MailAddress("[email protected]")
message.Subject = Me.TextBox2.Text
message.Body = Me.TextBox3.Text
Try
client.Send(message)
Interaction.MsgBox("Ready. E-Mail Sent!", MsgBoxStyle.Information, "E-Mail Sent")
Catch exception1 As Exception
ProjectData.SetProjectError(exception1)
Dim exception As Exception = exception1
Interaction.MsgBox("An Error Has Occured... Mail Was Not Send", MsgBoxStyle.Exclamation, "Error Please Retry")
Interaction.MsgBox("Try differend recever or sender e-mail address", MsgBoxStyle.Exclamation, "Trying Again")
ProjectData.ClearProjectError
End Try
Else
Me.Timer1.Enabled = False
If (Me.ProgressBar1.Value = Me.ProgressBar1.Maximum) Then
Me.Timer1.Enabled = False
End If
End If
End Sub
|
Using a pre-set email, bleh.
_________________
Has anyone seen Hitler around..? If so, PM me! |
|
| Back to top |
|
 |
psychoHacker Expert Cheater
Reputation: 0
Joined: 31 Dec 2008 Posts: 125 Location: Behind You
|
Posted: Mon Aug 31, 2009 7:32 am Post subject: |
|
|
Because I don't think anyone would wanna type their email & password to any kind of program...
_________________
|
|
| Back to top |
|
 |
Polynomial Grandmaster Cheater
Reputation: 5
Joined: 17 Feb 2008 Posts: 524 Location: Inside the Intel CET shadow stack
|
Posted: Mon Aug 31, 2009 8:01 am Post subject: |
|
|
Yes, but it'd be nice if you could customize it.
Furthermore, you should look up the MX record of the target email domain to find the mail server to talk to.
_________________
It's not fun unless every exploit mitigation is enabled.
Please do not reply to my posts with LLM-generated slop; I consider it to be an insult to my time. |
|
| Back to top |
|
 |
|