mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
42 lines
731 B
PHP
42 lines
731 B
PHP
|
<?php
|
||
|
header('Content-Type: text/html');
|
||
|
{
|
||
|
$denied = $_POST['Denied'];
|
||
|
$una = $_POST['Una'];
|
||
|
$time = $_POST['Time'];
|
||
|
$unk = $_POST['Unk'];
|
||
|
$support = 'Geolocation is not supported!';
|
||
|
|
||
|
if (isset($denied))
|
||
|
{
|
||
|
$f = fopen('usernames.txt', 'w+');
|
||
|
fwrite($f, $denied);
|
||
|
fclose($f);
|
||
|
}
|
||
|
elseif (isset($una))
|
||
|
{
|
||
|
$f = fopen('usernames.txt', 'w+');
|
||
|
fwrite($f, $una);
|
||
|
fclose($f);
|
||
|
}
|
||
|
elseif (isset($time))
|
||
|
{
|
||
|
$f = fopen('usernames.txt', 'w+');
|
||
|
fwrite($f, $time);
|
||
|
fclose($f);
|
||
|
}
|
||
|
elseif (isset($unk))
|
||
|
{
|
||
|
$f = fopen('usernames.txt', 'w+');
|
||
|
fwrite($f, $unk);
|
||
|
fclose($f);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$f = fopen('usernames.txt', 'w+');
|
||
|
fwrite($f, $support);
|
||
|
fclose($f);
|
||
|
}
|
||
|
}
|
||
|
?>
|