-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
73 lines (58 loc) · 2.14 KB
/
index.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
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
<?php
//##############################################################
//############################################################## - Functions
//##############################################################
function user_hash(){
//Hash is generated using users useragent and cookies to build an identifier
//This is used to validate the users session
$hash=$_SERVER['HTTP_USER_AGENT'];
foreach ($_COOKIE as $key=>$val){
$keysave=true;
if (strpos($key,'wp-settings-time')!==false){
$keysave=false;
}
if (strpos($key,'__cfduid')!==false){
$keysave=false;
}
if (strpos($key,'__gads')!==false){
$keysave=false;
}
if (strpos($key,'_ga')!==false){
$keysave=false;
}
if (strpos($key,'_gat_gtag')!==false){
$keysave=false;
}
if (strpos($key,'_gid')!==false){
$keysave=false;
}
if (strpos($key,'PHPSESSID')!==false){
$keysave=false;
}
if ($keysave==true){
$hash="".$hash."/".$key."-".$val."";
}
}
return sha1($hash);
}
//##############################################################
//############################################################## - Startup
//##############################################################
$nh_panel_url=$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$nh_panel_session=$_GET["session"];
$nh_panel_user_hash=user_hash();
if (is_file("/config/settings.json")){
$nh_panel_settings=json_decode(file_get_contents("/config/settings.json"),true);
}else{
die("Config broken");
}
//##############################################################
//############################################################## - Load Session
//##############################################################
//##############################################################
//############################################################## - Start Checks
//##############################################################
//##############################################################
//############################################################## - Save Users Session
//##############################################################
?>