forked from 710leo/ZVulDrill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
40 lines (39 loc) · 1.03 KB
/
about.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
<?php
$f = $_GET['f'];
include_once('sys/config.php');
include($f);
?>
<div class="row">
<div class="span2">
</div>
<div class="span10">
<div id="content">
<div class="page-header">
<h4>关于 ZVulDrill</h4>
<hr>
<p>
<b>[测试环境]</b><br />
<ul>
<li>Apache 2.2.22</li>
<li>PHP 5.3.13</li>
<li>MySQL 5.5.24</li>
</ul>
<ul>php配置文件中:
<li>allow_url_include = on</li>
<li>allow_url_fopen = on</li>
<li>magic_quotes_gpc = off</li>
</ul>
</p>
<hr>
<p>
<b>[联系]</b><br>
Email:710leo[at]gmail.com<br>
欢迎一起交流学习:)
</p>
</div>
</div>
</div>
</div>
<?php
require_once('footer.php');
?>