-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathl.php
More file actions
executable file
·90 lines (80 loc) · 2.46 KB
/
l.php
File metadata and controls
executable file
·90 lines (80 loc) · 2.46 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
ini_set('session.cookie_httponly', 1);
ini_set('session.use_only_cookies', 1);
session_start();
/* INSTALLFOLDER IS HARDCODED HERE */
require_once("prod/config.php");
$s = '';
$gcm = '';
$apn = '';
$uuid = '';
$l = '';
$e = '';
$a = "";
$h = "";
$store = "";
$v = "";
$action = "";
$l = @mysql_safe_string($_GET['l']);
$e = @mysql_safe_string($_GET['e']);
$s = @mysql_safe_string($_GET['s']);
$gcm = @mysql_safe_string($_GET['gcm']);
$apn = @mysql_safe_string($_GET['apn']);
$a = @mysql_safe_string($_GET['a']);
$h = @mysql_safe_string($_GET['h']);
$v = @mysql_safe_string($_GET['v']);
$store = @mysql_safe_string($_GET['store']);
$uuid = "";
if($a=='logout'){
$action="<script>localStorage.pid = '';</script>";
}
if($s==''){
$source="?s=nonmobile&h=$h";
} else {
if($v == ''){
$v = "000";
}
if($gcm!=''){
$source="?s=$s&gcm=$gcm&h=$h&store=$store&v=";
} else
if($apn!=''){
$source="?s=$s&apn=$apn&h=$h&store=$store&v=";
} else {
$source="?s=$s&h=$h&store=$store&v=";
}
}
$login = "login.php".$source;
?>
<html>
<head>
<title>Brax.Me</title>
<META HTTP-EQUIV='Pragma' CONTENT='no-cache'>
<META HTTP-EQUIV='Expires' CONTENT='-1'>
<meta name='viewport' content='width=device-width, height=device-height, initial-scale=1, user-scalable=0, maximum-scale=1'>
<link rel='icon' href='https://brax.me/img/favicon.ico' type='image/x-icon'>
<link rel='shortcut icon' href='https://brax.me/img/favicon.ico' type='image/x-icon'>
<link rel='apple-touch-icon' href='https://brax.me/img/lock2.png'>
<link rel='stylesheet' href='$rootserver/libs/jquery-1.11.1/jquery-ui.css'>
<script src='<?=$rootserver?>/libs/jquery-1.11.1/jquery.min.js' ></script>
<script src='<?=$rootserver?>/libs/jquery-1.11.1/jquery-ui.js' ></script>
<meta name="description" content="Brax.Me - Private Communities">
<?=$action?>
</head>
<body style='background-color:whitesmoke;color:black'>
Loading...
<!--
<a href=''>Start </a>
-->
<script>
var rootserver1 = '<?=$rootserver?>';
var login = '<?=$source?>';
if('<?=$v?>'!=='000' && '<?=$v?>'!==''){
localStorage.mobileversion = '<?=$v?>';
//alert(localStorage.mobileversion);
}
vlocation = rootserver1+"/prod/login.php"+login+localStorage.mobileversion;
//alert(vlocation);
window.location = vlocation;
</script>
</body>
</html>