forked from phpsysinfo/phpsysinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread_config.php
350 lines (321 loc) · 16.2 KB
/
read_config.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<?php
if (!defined('PSI_CONFIG_FILE')) {
/**
* phpSysInfo version
*/
define('PSI_VERSION', '3.4.x');
/**
* phpSysInfo configuration
*/
define('PSI_CONFIG_FILE', PSI_APP_ROOT.'/phpsysinfo.ini');
define('ARRAY_EXP', '/^return array \([^;]*\);$/'); //array expression search
if (!is_readable(PSI_CONFIG_FILE)) {
echo "ERROR: phpsysinfo.ini does not exist or is not readable by the webserver in the phpsysinfo directory";
die();
} elseif (!($config = @parse_ini_file(PSI_CONFIG_FILE, true))) {
echo "ERROR: phpsysinfo.ini file is not parsable";
die();
} else {
foreach ($config as $name=>$group) {
if (strtoupper($name)=="MAIN") {
$name_prefix='PSI_';
} elseif (strtoupper(substr($name, 0, 7))=="SENSOR_") {
$name_prefix='PSI_'.strtoupper($name).'_';
} else {
$name_prefix='PSI_PLUGIN_'.strtoupper($name).'_';
}
foreach ($group as $param=>$value) {
if ((trim($value)==="") || (trim($value)==="0")) {
define($name_prefix.strtoupper($param), false);
} elseif (trim($value)==="1") {
define($name_prefix.strtoupper($param), true);
} else {
if ((($paramup = strtoupper($param)) !== 'WMI_PASSWORD') && ($paramup !== 'SSH_PASSWORD') && strstr($value, ',')) {
define($name_prefix.$paramup, 'return '.var_export(preg_split('/\s*,\s*/', trim($value), -1, PREG_SPLIT_NO_EMPTY), 1).';');
} else {
define($name_prefix.$paramup, trim($value));
}
}
}
}
}
if (defined('PSI_ALLOWED') && is_string(PSI_ALLOWED)) {
if (preg_match(ARRAY_EXP, PSI_ALLOWED)) {
$allowed = eval(strtolower(PSI_ALLOWED));
} else {
$allowed = array(strtolower(PSI_ALLOWED));
}
if (isset($_SERVER["HTTP_X_FORWARDED_FOR"])) {
$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
} else {
if (isset($_SERVER["HTTP_CLIENT_IP"])) {
$ip = $_SERVER["HTTP_CLIENT_IP"];
} else {
$ip = $_SERVER["REMOTE_ADDR"];
}
}
$ip = preg_replace("/^::ffff:/", "", strtolower($ip));
$ip_decimal = ip2long($ip);
if ($ip_decimal === false) {
echo "Client IP wrong address (".$ip."). Client not allowed.";
die();
}
// code based on https://gist.github.com/tott/7684443
$was = false;
foreach ($allowed as $allow) {
if (strpos($allow, '/') === false) {
$was = ($allow === $ip);
} else {
list($allow, $netmask) = explode('/', $allow, 2);
$allow_decimal = ip2long($allow);
$wildcard_decimal = pow(2, (32 - $netmask)) - 1;
$netmask_decimal = ~$wildcard_decimal;
$was = (($ip_decimal & $netmask_decimal) === ($allow_decimal & $netmask_decimal));
}
if ($was) {
break;
}
}
if (!$was) {
echo "Client IP address (".$ip.") not allowed.";
die();
}
}
if (isset($_GET['jsonp']) && (!defined('PSI_JSONP') || !PSI_JSONP)) {
echo "JSONP data mode not enabled in phpsysinfo.ini.";
die();
}
/* default error handler */
if (function_exists('errorHandlerPsi')) {
restore_error_handler();
}
/* fatal errors only */
$old_err_rep = error_reporting();
error_reporting(E_ERROR);
/* get git revision */
if (file_exists(PSI_APP_ROOT.'/.git/HEAD')) {
$contents = @file_get_contents(PSI_APP_ROOT.'/.git/HEAD');
if ($contents && preg_match("/^ref:\s+(.*)\/([^\/\s]*)/m", $contents, $matches)) {
$contents = @file_get_contents(PSI_APP_ROOT.'/.git/'.$matches[1]."/".$matches[2]);
if ($contents && preg_match("/^([^\s]*)/m", $contents, $revision)) {
define('PSI_VERSION_STRING', PSI_VERSION ."-".$matches[2]."-".substr($revision[1], 0, 7));
} else {
define('PSI_VERSION_STRING', PSI_VERSION ."-".$matches[2]);
}
}
}
/* get svn revision */
if (!defined('PSI_VERSION_STRING') && file_exists(PSI_APP_ROOT.'/.svn/entries')) {
$contents = @file_get_contents(PSI_APP_ROOT.'/.svn/entries');
if ($contents && preg_match("/dir\n(.+)/", $contents, $matches)) {
define('PSI_VERSION_STRING', PSI_VERSION."-r".$matches[1]);
} else {
define('PSI_VERSION_STRING', PSI_VERSION);
}
}
if (!defined('PSI_VERSION_STRING')) {
define('PSI_VERSION_STRING', PSI_VERSION);
}
if (defined('PSI_ROOTFS') && is_string(PSI_ROOTFS) && (PSI_ROOTFS !== '') && (PSI_ROOTFS !== '/')) {
$rootfs = PSI_ROOTFS;
if ($rootfs[0] === '/') {
define('PSI_ROOT_FILESYSTEM', $rootfs);
} else {
define('PSI_ROOT_FILESYSTEM', '');
}
} else {
define('PSI_ROOT_FILESYSTEM', '');
}
if (!defined('PSI_OS')) { //if not overloaded in phpsysinfo.ini
/* get Linux code page */
if ((PHP_OS == 'Linux') || (PHP_OS == 'GNU')) {
if (file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/sysconfig/i18n')
|| file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/default/locale')
|| file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/locale.conf')
|| file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/sysconfig/language')
|| file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/profile.d/lang.sh')
|| file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/profile.d/i18n.sh')
|| file_exists($fname = PSI_ROOT_FILESYSTEM.'/etc/profile')) {
$contents = @file_get_contents($fname);
} else {
$contents = false;
if (PHP_OS == 'Linux') {
if (file_exists(PSI_ROOT_FILESYSTEM.'/system/build.prop')) { //Android
define('PSI_OS', 'Android');
if ((PSI_ROOT_FILESYSTEM === '') && function_exists('exec') && @exec('uname -o 2>/dev/null', $unameo) && (sizeof($unameo)>0) && (($unameo0 = trim($unameo[0])) != "")) {
define('PSI_UNAMEO', $unameo0); // is Android on Termux
}
if ((PSI_ROOT_FILESYSTEM === '') && !defined('PSI_MODE_POPEN')) { //if not overloaded in phpsysinfo.ini
if (!function_exists("proc_open")) { //proc_open function test by executing 'pwd' bbbmand
define('PSI_MODE_POPEN', true); //use popen() function - no stderr error handling (but with problems with timeout)
} else {
$out = '';
$err = '';
$pipes = array();
$descriptorspec = array(0=>array("pipe", "r"), 1=>array("pipe", "w"), 2=>array("pipe", "w"));
$process = proc_open("pwd 2>/dev/null ", $descriptorspec, $pipes);
if (!is_resource($process)) {
define('PSI_MODE_POPEN', true);
} else {
$w = null;
$e = null;
while (!(feof($pipes[1]) && feof($pipes[2]))) {
$read = array($pipes[1], $pipes[2]);
$n = stream_select($read, $w, $e, 5);
if (($n === false) || ($n === 0)) {
break;
}
foreach ($read as $r) {
if ($r == $pipes[1]) {
$out .= fread($r, 4096);
} elseif (feof($pipes[1]) && ($r == $pipes[2])) {//read STDERR after STDOUT
$err .= fread($r, 4096);
}
}
}
if (($out === null) || (trim($out) == "") || (substr(trim($out), 0, 1) != "/")) {
define('PSI_MODE_POPEN', true);
}
fclose($pipes[0]);
fclose($pipes[1]);
fclose($pipes[2]);
// It is important that you close any pipes before calling
// proc_close in order to avoid a deadlock
proc_close($process);
}
}
}
} elseif (file_exists(PSI_ROOT_FILESYSTEM.'/var/mobile/Library/Cydia/metadata.cb0')) { //jailbroken iOS with Cydia
define('PSI_OS', 'Darwin');
}
}
}
if (!(defined('PSI_SYSTEM_CODEPAGE') && defined('PSI_SYSTEM_LANG')) //also if both not overloaded in phpsysinfo.ini
&& $contents && (preg_match('/^(LANG="?[^"\n]*"?)/m', $contents, $matches)
|| preg_match('/^RC_(LANG="?[^"\n]*"?)/m', $contents, $matches)
|| preg_match('/^\s*export (LANG="?[^"\n]*"?)/m', $contents, $matches))) {
if (!defined('PSI_SYSTEM_CODEPAGE')) {
if (file_exists($vtfname = PSI_ROOT_FILESYSTEM.'/sys/module/vt/parameters/default_utf8')
&& (trim(@file_get_contents($vtfname)) === "1")) {
define('PSI_SYSTEM_CODEPAGE', 'UTF-8');
} elseif ((PSI_ROOT_FILESYSTEM === '') && function_exists('exec') && @exec($matches[1].' locale -k LC_CTYPE 2>/dev/null', $lines)) { //if not overloaded in phpsysinfo.ini
foreach ($lines as $line) {
if (preg_match('/^charmap="?([^"]*)/', $line, $matches2)) {
define('PSI_SYSTEM_CODEPAGE', $matches2[1]);
break;
}
}
}
}
if ((PSI_ROOT_FILESYSTEM === '') && !defined('PSI_SYSTEM_LANG') && function_exists('exec') && @exec($matches[1].' locale 2>/dev/null', $lines2)) { //also if not overloaded in phpsysinfo.ini
foreach ($lines2 as $line) {
if (preg_match('/^LC_MESSAGES="?([^\."@]*)/', $line, $matches2)) {
$lang = "";
if (is_readable(PSI_APP_ROOT.'/data/languages.ini') && ($langdata = @parse_ini_file(PSI_APP_ROOT.'/data/languages.ini', true))) {
if (isset($langdata['Linux']['_'.$matches2[1]])) {
$lang = $langdata['Linux']['_'.$matches2[1]];
}
}
if ($lang == "") {
$lang = 'Unknown';
}
define('PSI_SYSTEM_LANG', $lang.' ('.$matches2[1].')');
break;
}
}
}
}
} elseif (PHP_OS == 'Haiku') {
if (!(defined('PSI_SYSTEM_CODEPAGE') && defined('PSI_SYSTEM_LANG')) //also if both not overloaded in phpsysinfo.ini
&& (PSI_ROOT_FILESYSTEM === '') && function_exists('exec') && @exec('locale --message 2>/dev/null', $lines)) {
foreach ($lines as $line) {
if (preg_match('/^"?([^\."]*)\.?([^"]*)/', $line, $matches2)) {
if (!defined('PSI_SYSTEM_CODEPAGE') && isset($matches2[2]) && ($matches2[2] !== null) && (trim($matches2[2]) != "")) { //also if not overloaded in phpsysinfo.ini
define('PSI_SYSTEM_CODEPAGE', $matches2[2]);
}
if (!defined('PSI_SYSTEM_LANG')) { //if not overloaded in phpsysinfo.ini
$lang = "";
if (is_readable(PSI_APP_ROOT.'/data/languages.ini') && ($langdata = @parse_ini_file(PSI_APP_ROOT.'/data/languages.ini', true))) {
if (isset($langdata['Linux']['_'.$matches2[1]])) {
$lang = $langdata['Linux']['_'.$matches2[1]];
}
}
if ($lang == "") {
$lang = 'Unknown';
}
define('PSI_SYSTEM_LANG', $lang.' ('.$matches2[1].')');
}
break;
}
}
}
} elseif ((PHP_OS == 'Darwin') || (defined('PSI_OS') && (PSI_OS == 'Darwin'))){
if (!defined('PSI_SYSTEM_LANG') //if not overloaded in phpsysinfo.ini
&& (PSI_ROOT_FILESYSTEM === '') && function_exists('exec') && @exec('defaults read /Library/Preferences/.GlobalPreferences AppleLocale 2>/dev/null', $lines)) {
$lang = "";
if (is_readable(PSI_APP_ROOT.'/data/languages.ini') && ($langdata = @parse_ini_file(PSI_APP_ROOT.'/data/languages.ini', true))) {
if (isset($langdata['Linux']['_'.$lines[0]])) {
$lang = $langdata['Linux']['_'.$lines[0]];
}
}
if ($lang == "") {
$lang = 'Unknown';
}
define('PSI_SYSTEM_LANG', $lang.' ('.$lines[0].')');
}
}
}
/* maximum time in seconds a script is allowed to run before it is terminated by the parser */
if (defined('PSI_MAX_TIMEOUT')) {
ini_set('max_execution_time', max(intval(PSI_MAX_TIMEOUT), 0));
} else {
ini_set('max_execution_time', 30);
}
/* executeProgram() timeout value in seconds */
if (defined('PSI_EXEC_TIMEOUT')) {
define('PSI_EXEC_TIMEOUT_INT', max(intval(PSI_EXEC_TIMEOUT), 1));
} else {
define('PSI_EXEC_TIMEOUT_INT', 30);
}
/* snmprealwalk() and executeProgram("snmpwalk") number of seconds until the first timeout */
if (defined('PSI_SNMP_TIMEOUT')) {
define('PSI_SNMP_TIMEOUT_INT', max(intval(PSI_SNMP_TIMEOUT), 1));
} else {
define('PSI_SNMP_TIMEOUT_INT', 3);
}
/* snmprealwalk() and executeProgram("snmpwalk") number of times to retry if timeouts occur */
if (defined('PSI_SNMP_RETRY')) {
define('PSI_SNMP_RETRY_INT', max(intval(PSI_SNMP_RETRY), 0));
} else {
define('PSI_SNMP_RETRY_INT', 0);
}
if (!defined('PSI_OS')) {
define('PSI_OS', PHP_OS);
}
if (!defined('PSI_SYSTEM_LANG')) {
define('PSI_SYSTEM_LANG', null);
}
if (!defined('PSI_SYSTEM_CODEPAGE')) { //if not overloaded in phpsysinfo.ini
if ((PSI_OS=='Android') || (PSI_OS=='Darwin')) {
define('PSI_SYSTEM_CODEPAGE', 'UTF-8');
} elseif (PSI_OS=='Minix') {
define('PSI_SYSTEM_CODEPAGE', 'CP437');
} elseif (PSI_OS!='WINNT') {
define('PSI_SYSTEM_CODEPAGE', null);
}
}
if (!defined('PSI_JSON_ISSUE')) { //if not overloaded in phpsysinfo.ini
if (!extension_loaded("simplexml")) {
die("phpSysInfo requires the simplexml extension to php in order to work properly.");
}
if (simplexml_load_string("<A><B><C/></B>\n</A>") !== simplexml_load_string("<A><B><C/></B></A>")) { // json_encode issue test
define('PSI_JSON_ISSUE', true); // Problem must be solved
}
}
/* restore error level */
error_reporting($old_err_rep);
/* restore error handler */
if (function_exists('errorHandlerPsi')) {
set_error_handler('errorHandlerPsi');
}
}