-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.php
263 lines (201 loc) · 7.25 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<?php
/*
*
* VegaDNS - DNS Administration Tool for use with djbdns
*
* CREDITS:
* Written by Bill Shupp
* <hostmaster@shupp.org>
*
* LICENSE:
* This software is distributed under the GNU General Public License
* Copyright 2003-2016, Bill Shupp
* see COPYING for details
*
*/
// PHP INIT/SECURITY STUFF
ini_set('display_errors', 0);
ini_set('display_startup_errors', 0);
ini_set('log_errors', 1);
ini_set('allow_url_fopen', 0);
ini_set('session.use_cookies',0);
ini_set('session.use_only_cookies', 0);
ini_set('error_reporting', E_ALL & ~E_DEPRECATED);
// Smarty
define('SMARTY_DIR', 'smarty/');
require(SMARTY_DIR.'/Smarty.class.php');
$smarty = new Smarty;
$smarty->assign('php_self', $_SERVER['PHP_SELF']);
// Get configuration settings
require('src/config.php');
// Set version
$smarty->assign('version', $version);
// Get functions
require('src/functions.php');
// Get IPv6 Functions
require_once 'src/Net/IPv6.php';
// Get PDO wrapper and connect
require_once 'src/VDB.php';
try {
$pdo = VDB::singleton();
} catch (Exception $e) {
echo "Error connecting to database: " . $e->getMessage();
exit;
}
// Make sure the private_dirs exist and are writable
if(!is_writable($session_dir)) die("Error: $session_dir is not writabale. Please read INSTALL");
if(!is_writable("$private_dirs/templates_c")) die("Error: $private_dirs/templates_c is not writabale. Please read INSTALL");
if(!is_writable("$private_dirs/configs")) die("Error: $private_dirs/configs is not writabale. Please read INSTALL");
if(!is_writable("$private_dirs/cache")) die("Error: $private_dirs/cache is not writabale. Please read INSTALL");
if(isset($_REQUEST['state']) && $_REQUEST['state'] == 'get_data') {
// Check trusted hosts
$array = explode(',',$trusted_hosts);
$remote_addr = ip2long($_SERVER['REMOTE_ADDR']);
while((list($key,$value) = each($array)) && $trusted == 0) {
$cidr = explode("/", trim($value), 2);
$addr = ip2long($cidr[0]);
$len = (count($cidr) == 2) ? intval($cidr[1]) : 32;
$shift = 32 - $len;
if (($remote_addr >> $shift) == ($addr >> $shift)) {
$trusted = 1;
break;
}
}
if($trusted == 1) {
// EXPORT DATA
header("Content-type: text/plain");
require('src/data.php');
} else {
header($_SERVER['SERVER_PROTOCOL'] . " 403 Forbidden");
echo "Error: Host ".$_SERVER['REMOTE_ADDR']." is not authorized to access this page";
}
exit;
}
// Setup session
session_name('VDNSSessid');
if (isset($use_mysql_sessions) && $use_mysql_sessions == true) {
require_once 'src/MySQLSessions.php';
$mysql_sessions = MysqlSessions::singleton();
} else {
session_save_path($session_dir);
session_start();
}
$smarty->assign('session_name', session_name());
$smarty->assign('session_id', session_id());
if(!isset($_REQUEST['state'])) {
if(check_first_use() == 1) {
// Add tables
require('src/create_tables.php');
set_msg("Welcome to VegaDNS!<br>Please edit your account settings for the initial 'senior_admin'");
header("Location: ".$_SERVER['PHP_SELF']."?".SID."&state=logged_in&mode=users&user_mode=edit_account&cid=1");
exit;
}
// MAIN
$smarty->display('header.tpl');
$smarty->display('login_screen.tpl');
$smarty->display('footer.tpl');
exit;
} else if($_REQUEST['state'] == "end") {
// CANCEL
// End session
$q = "delete from active_sessions where sid='".session_id()."'";
$result = $pdo->query($q) or die(print_r($pdo->errorInfo()));
session_unset();
session_destroy();
header("Location: index.php");
exit;
} else if($_REQUEST['state'] == "login_screen") {
// LOGIN SCREEN
$smarty->display('header.tpl');
require('src/login_screen.php');
$smarty->display('footer.tpl');
exit;
} else if($_REQUEST['state'] == "login") {
// LOGIN
if(!isset($_REQUEST['mode'])) {
$auth = "FALSE";
if(isset($_REQUEST['email']) && isset($_REQUEST['password'])) {
$auth = authenticate_user($_REQUEST['email'], $_REQUEST['password']);
} else {
set_msg_err("Error: You must supply a username and password");
header("Location: ".$_SERVER['PHP_SELF']."?".SID);
exit;
}
if($auth == "TRUE") {
header("Location: ".$_SERVER['PHP_SELF']."?".SID."&state=logged_in");
exit;
} else {
set_msg_err("Error signing on: incorrect email address or password<p><a href=".$_SERVER['PHP_SELF']."?".SID."&state=help>forgot your password?</a>");
header("Location: ".$_SERVER['PHP_SELF']."?".SID);
exit;
}
} else {
// Make sure they are logged in
$email = verify_session();
if($email == "") {
set_msg_err("Error: you do not appear to be logged in");
header("Location: ".$_SERVER['PHP_SELF']."?".SID);
exit;
} else {
header("Location: ".$_SERVER['PHP_SELF']."?".SID."&state=logged_in");
exit;
}
}
} else if($_REQUEST['state'] == "logged_in") {
// SHOW MAIN SCREEN
// First make sure they are really logged in!
$email = verify_session();
if($email == "") {
set_msg_err("Error: you do not appear to be logged in.");
header("Location: ".$_SERVER['PHP_SELF']."?".SID);
exit;
} else {
// Set base url for convenience
$base_url = $_SERVER['PHP_SELF']."?".SID."&state=logged_in";
// Get current account settings
$result = $pdo->query("select * from accounts where Email='$email'")
or die(print_r($pdo->errorInfo()));
$user_info = $result->fetchAll();
$user_info = $user_info[0];
// Setup smarty stuff
$smarty->assign('email', $email);
$smarty->assign('state', $_REQUEST['state']);
if(isset($_REQUEST['mode']))
$smarty->assign('mode', $_REQUEST['mode']);
$smarty->assign('base_url', $base_url);
$smarty->assign('logout_url', $_SERVER['PHP_SELF'].'?'.SID.'&state=end');
$smarty->assign('account_type', $user_info['Account_Type']);
$smarty->assign('cid', $user_info['cid']);
if(!isset($_REQUEST['mode']) || $_REQUEST['mode'] == "main_menu") {
$smarty->display('header.tpl');
$smarty->display('footer.tpl');
exit;
} else if($_REQUEST['mode'] == "domains") {
// LIST DOMAINS
require('src/domains.php');
exit;
} else if($_REQUEST['mode'] == "users") {
// USERS
require('src/users.php');
exit;
} else if($_REQUEST['mode'] == "records") {
// LIST RECORDS FOR DOMAIN
require('src/records.php');
exit;
} else if($_REQUEST['mode'] == "default_records") {
// LIST DEFAULT RECORDS FOR NEW DOMAINS
require('src/default_records.php');
exit;
} else if($_REQUEST['mode'] == "dnsquery") {
// LIST DEFAULT RECORDS FOR NEW DOMAINS
require('src/dnsquery.php');
exit;
} else {
die("Error: illegal mode\n");
}
}
} else if($_REQUEST['state'] == "help") {
require('src/help.php');
exit;
}
?>