forked from eooce/Sing-box
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.php
More file actions
493 lines (464 loc) · 17 KB
/
check.php
File metadata and controls
493 lines (464 loc) · 17 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
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?php
if (!isset($_SERVER['HTTP_USER_AGENT']) && php_sapi_name() !== 'cli') {
die("请在浏览器中访问或通过命令行运行");
}
// 设置内容类型为HTML
header('Content-Type: text/html; charset=utf-8');
// 检测PHP命令执行函数
function checkPhpFunctions() {
$functions = [
'exec', 'shell_exec', 'system', 'passthru', 'popen', 'proc_open'
];
$available = [];
$unavailable = [];
foreach ($functions as $func) {
if (function_exists($func)) {
$testResult = @call_user_func($func, 'echo "test"');
if ($testResult !== false && $testResult !== null) {
$available[] = $func;
} else {
$unavailable[] = $func . " (存在但被禁用)";
}
} else {
$unavailable[] = $func;
}
}
return [
'available' => $available,
'unavailable' => $unavailable
];
}
// 检测外部程序
function checkProgram($program, $versionCommand = '--version') {
$result = [
'available' => false,
'version' => '不可用',
'raw_output' => ''
];
// 使用escapeshellarg确保安全
$command = escapeshellcmd($program) . ' ' . $versionCommand . ' 2>&1';
$output = [];
$returnCode = 0;
// 尝试多种执行方式
if (function_exists('exec')) {
@exec($command, $output, $returnCode);
if ($returnCode === 0 && !empty($output) && !containsCommandNotFound($output)) {
$result['available'] = true;
$result['raw_output'] = implode("\n", $output);
$result['version'] = $output[0];
return $result;
}
}
if (function_exists('shell_exec')) {
$output = @shell_exec($command);
if (!empty($output) && !containsCommandNotFound($output)) {
$result['available'] = true;
$result['raw_output'] = $output;
$result['version'] = strtok($output, "\n");
return $result;
}
}
if (function_exists('system')) {
ob_start();
@system($command, $returnCode);
$output = ob_get_clean();
if ($returnCode === 0 && !empty($output) && !containsCommandNotFound($output)) {
$result['available'] = true;
$result['raw_output'] = $output;
$result['version'] = strtok($output, "\n");
return $result;
}
}
if (!empty($output)) {
if (is_array($output)) {
$result['raw_output'] = implode("\n", $output);
$result['version'] = $output[0] ?? '未知错误';
} else {
$result['raw_output'] = $output;
$result['version'] = strtok($output, "\n");
}
}
return $result;
}
function containsCommandNotFound($output) {
if (is_array($output)) {
$output = implode(' ', $output);
}
return stripos($output, 'command not found') !== false ||
stripos($output, 'not recognized') !== false;
}
// 执行检测
$phpFunctions = checkPhpFunctions();
$python3 = checkProgram('python3', '--version');
$nodejs = checkProgram('node', '--version');
$npm = checkProgram('npm', '--version');
if ($python3['available']) {
$primaryPython = $python3;
$primaryPython['name'] = 'python3';
} else {
$primaryPython = [
'available' => false,
'version' => '不可用',
'name' => 'python3',
'raw_output' => ''
];
}
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>服务器环境检测</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
color: #333;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 2px solid #eaeaea;
}
.header h1 {
color: #2c3e50;
font-size: 2.5rem;
margin-bottom: 10px;
}
.header p {
color: #7f8c8d;
font-size: 1.1rem;
}
.section {
margin-bottom: 40px;
padding: 25px;
background: #f8f9fa;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.section h2 {
color: #3498db;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #eaeaea;
display: flex;
align-items: center;
}
.section h2 i {
margin-right: 10px;
}
.status {
display: inline-block;
padding: 5px 12px;
border-radius: 20px;
font-weight: bold;
margin-right: 8px;
margin-bottom: 8px;
font-size: 0.9rem;
}
.available {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.unavailable {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.function-list {
background-color: white;
padding: 20px;
border-radius: 8px;
margin: 15px 0;
}
.raw-output {
background-color: #2c3e50;
color: #ecf0f1;
padding: 15px;
border-radius: 5px;
font-family: 'Courier New', monospace;
font-size: 0.9rem;
overflow-x: auto;
display: none;
margin-top: 15px;
line-height: 1.5;
}
.toggle-btn {
background: #3498db;
color: white;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 0.9rem;
transition: background 0.3s;
display: inline-flex;
align-items: center;
}
.toggle-btn i {
margin-right: 5px;
}
.toggle-btn:hover {
background: #2980b9;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
th, td {
padding: 15px;
text-align: left;
border-bottom: 1px solid #eaeaea;
}
th {
background-color: #f8f9fa;
font-weight: 600;
color: #2c3e50;
}
tr:hover {
background-color: #f5f5f5;
}
.note {
background-color: #fff3cd;
color: #856404;
padding: 15px;
border-radius: 8px;
border-left: 4px solid #ffeeba;
margin: 20px 0;
font-size: 0.95rem;
}
.summary {
display: flex;
justify-content: space-around;
margin: 30px 0;
flex-wrap: wrap;
}
.summary-card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
flex: 1;
min-width: 200px;
margin: 10px;
}
.summary-card h3 {
color: #7f8c8d;
margin-bottom: 10px;
}
.summary-card .count {
font-size: 2.5rem;
font-weight: bold;
color: #3498db;
}
.footer {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eaeaea;
color: #7f8c8d;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.container {
padding: 15px;
}
.header h1 {
font-size: 2rem;
}
table {
display: block;
overflow-x: auto;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>服务器环境检测报告</h1>
<p>全面检测服务器PHP、Python和Node.js环境状态</p>
</div>
<div class="note">
<i class="fas fa-exclamation-circle"></i>
<strong>注意:</strong> 此脚本仅用于检测服务器环境,使用后请及时删除。
</div>
<div class="summary">
<div class="summary-card">
<h3>可用PHP函数</h3>
<div class="count"><?php echo count($phpFunctions['available']); ?></div>
</div>
<div class="summary-card">
<h3>Python3可用</h3>
<div class="count"><?php echo ($python3['available']) ? '是' : '否'; ?></div>
</div>
<div class="summary-card">
<h3>Node.js可用</h3>
<div class="count"><?php echo ($nodejs['available']) ? '是' : '否'; ?></div>
</div>
</div>
<div class="section">
<h2><i class="fas fa-code"></i> PHP命令执行函数检测</h2>
<div class="function-list">
<p><strong>可用函数:</strong>
<?php if (!empty($phpFunctions['available'])): ?>
<?php foreach ($phpFunctions['available'] as $func): ?>
<span class="status available"><i class="fas fa-check-circle"></i> <?php echo htmlspecialchars($func); ?></span>
<?php endforeach; ?>
<?php else: ?>
<span class="status unavailable"><i class="fas fa-times-circle"></i> 无可用函数</span>
<?php endif; ?>
</p>
<p><strong>不可用函数:</strong>
<?php if (!empty($phpFunctions['unavailable'])): ?>
<?php foreach ($phpFunctions['unavailable'] as $func): ?>
<span class="status unavailable"><i class="fas fa-times-circle"></i> <?php echo htmlspecialchars($func); ?></span>
<?php endforeach; ?>
<?php else: ?>
<span>无</span>
<?php endif; ?>
</p>
</div>
</div>
<div class="section">
<h2><i class="fab fa-python"></i> Python环境检测</h2>
<table>
<tr>
<th>程序</th>
<th>状态</th>
<th>版本信息</th>
<th>操作</th>
</tr>
<tr>
<td>Python3 (python3)</td>
<td>
<?php if ($python3['available']): ?>
<span class="status available"><i class="fas fa-check-circle"></i> 可用</span>
<?php else: ?>
<span class="status unavailable"><i class="fas fa-times-circle"></i> 不可用</span>
<?php endif; ?>
</td>
<td><?php echo htmlspecialchars($python3['version']); ?></td>
<td>
<?php if (!empty($python3['raw_output'])): ?>
<button class="toggle-btn" onclick="toggleOutput('python3-output')"><i class="fas fa-terminal"></i> 显示原始输出</button>
<?php endif; ?>
</td>
</tr>
</table>
<?php if (!empty($python3['raw_output'])): ?>
<pre id="python3-output" class="raw-output"><?php echo htmlspecialchars($python3['raw_output']); ?></pre>
<?php endif; ?>
<p><strong>Python版本:</strong>
<?php if ($primaryPython['available']): ?>
<span class="status available"><i class="fas fa-check-circle"></i> <?php echo htmlspecialchars($primaryPython['name'] . ' ' . $primaryPython['version']); ?></span>
<?php else: ?>
<span class="status unavailable"><i class="fas fa-times-circle"></i> 未检测到Python3</span>
<?php endif; ?>
</p>
</div>
<div class="section">
<h2><i class="fab fa-node-js"></i> Node.js环境检测</h2>
<table>
<tr>
<th>程序</th>
<th>状态</th>
<th>版本信息</th>
<th>操作</th>
</tr>
<tr>
<td>Node.js (node)</td>
<td>
<?php if ($nodejs['available']): ?>
<span class="status available"><i class="fas fa-check-circle"></i> 可用</span>
<?php else: ?>
<span class="status unavailable"><i class="fas fa-times-circle"></i> 不可用</span>
<?php endif; ?>
</td>
<td><?php echo htmlspecialchars($nodejs['version']); ?></td>
<td>
<?php if (!empty($nodejs['raw_output'])): ?>
<button class="toggle-btn" onclick="toggleOutput('node-output')"><i class="fas fa-terminal"></i> 显示原始输出</button>
<?php endif; ?>
</td>
</tr>
<tr>
<td>NPM (npm)</td>
<td>
<?php if ($npm['available']): ?>
<span class="status available"><i class="fas fa-check-circle"></i> 可用</span>
<?php else: ?>
<span class="status unavailable"><i class="fas fa-times-circle"></i> 不可用</span>
<?php endif; ?>
</td>
<td><?php echo htmlspecialchars($npm['version']); ?></td>
<td>
<?php if (!empty($npm['raw_output'])): ?>
<button class="toggle-btn" onclick="toggleOutput('npm-output')"><i class="fas fa-terminal"></i> 显示原始输出</button>
<?php endif; ?>
</td>
</tr>
</table>
<?php if (!empty($nodejs['raw_output'])): ?>
<pre id="node-output" class="raw-output"><?php echo htmlspecialchars($nodejs['raw_output']); ?></pre>
<?php endif; ?>
<?php if (!empty($npm['raw_output'])): ?>
<pre id="npm-output" class="raw-output"><?php echo htmlspecialchars($npm['raw_output']); ?></pre>
<?php endif; ?>
</div>
<div class="footer">
<p>检测时间: <?php echo date('Y-m-d H:i:s'); ?></p>
<p>服务器IP: <?php echo $_SERVER['SERVER_ADDR'] ?? '未知'; ?></p>
</div>
</div>
<script>
function toggleOutput(id) {
const output = document.getElementById(id);
const buttons = document.querySelectorAll('.toggle-btn');
let button = null;
buttons.forEach(btn => {
if (btn.getAttribute('onclick') === `toggleOutput('${id}')`) {
button = btn;
}
});
if (output.style.display === 'block') {
output.style.display = 'none';
if (button) {
button.innerHTML = '<i class="fas fa-terminal"></i> 显示原始输出';
}
} else {
output.style.display = 'block';
if (button) {
button.innerHTML = '<i class="fas fa-terminal"></i> 隐藏原始输出';
}
}
}
</script>
</body>
</html>