forked from 0verSp4ce/PoCBox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_cn.html
78 lines (74 loc) · 3.35 KB
/
index_cn.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>PoCBox - 漏洞测试验证辅助平台</title>
<link rel="stylesheet" href="./layui/css/layui.css">
<link rel="stylesheet" href="./static/index.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
</head>
<script src="./static/index.js"></script>
<script src="./static/jquery.min.js"></script>
<body class="layui-layout-body">
<div class="layui-layout layui-layout-admin">
<div class="layui-header">
<div class="layui-logo"><img style="width: 40px;" src="./static/pocbox.png"> <font style="color: white">PoCBox | MSTSEC</font></div>
<ul class="layui-nav layui-layout-right">
<li class="layui-nav-item">
<a href="./index.html" title="切换到英文">
<img src="./static/key.png" class="layui-nav-img">
Vulkey_Chen
</a>
</li>
</ul>
</div>
<div class="layui-side layui-bg-black">
<div class="layui-side-scroll">
<!-- 左侧导航区域(可配合layui已有的垂直导航) -->
<ul class="layui-nav layui-nav-tree" lay-filter="test">
<li class="layui-nav-item layui-nav-itemed">
<a href="javascript:;">漏洞测试</a>
<dl class="layui-nav-child">
<dd><a href="./poc_cn/html/jsonp.html" onclick="openPage(this.href); return false;">JSONP劫持</a></dd>
<dd><a href="./poc_cn/html/cors.html" onclick="openPage(this.href); return false;">CORS跨域资源读取</a></dd>
<dd><a href="./poc_cn/html/swf.html" onclick="openPage(this.href); alert('此处打开为SWF文件'); return false; ">Flash跨域资源读取</a></dd>
<dd><a href="./poc_cn/html/jsurl.html" onclick="openPage(this.href); return false; ">JavaScript URL跳转</a></dd>
<dd><a href="./poc_cn/html/302url.html" onclick="openPage(this.href); return false; ">302 URL跳转</a></dd>
</dl>
</li>
<li class="layui-nav-item layui-nav-itemed">
<a href="javascript:;">测试字典</a>
<dl class="layui-nav-child">
<dd><a href="./poc_cn/html/URLRedirect.html" onclick="openPage(this.href); return false;">URL类</a></dd>
</dl>
</li>
<li class="layui-nav-item layui-nav-itemed">
<a href="javascript:;">其他</a>
<dl class="layui-nav-child">
<dd><a href="./poc_cn/html/google_hack.html" onclick="openPage(this.href); return false;">Google Hack</a></dd>
</dl>
</li>
</ul>
</div>
</div>
<div class="layui-body" id="pocTest" style="padding: 15px;">
<!-- 内容主体区域 -->
<center><h3><b>PoCBox - 漏洞测试验证辅助平台</b><br>Author: [Vulkey_Chen] <br> Blog: [gh0st.cn] <br>Team: [MSTSEC 米斯特安全 | Www.Hi-OurLife.Com] <br><br> <img style="width: 250px;" src="./static/mstlogo.png"></h3></center>
</div>
<div class="layui-footer">
<!-- 底部固定区域 -->
© Powered By Vulkey_Chen | MST.SEC Www.Hi-OurLife.Com
</div>
</div>
<script src="./layui/layui.all.js"></script>
<script>
//由于模块都一次性加载,因此不用执行 layui.use() 来加载对应模块,直接使用即可:
;!function(){
var layer = layui.layer
,form = layui.form;
layer.msg('欢迎来到PoCBox平台~');
}();
</script>
</body>
</html>