This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 170
/
index.html
executable file
·80 lines (76 loc) · 3.86 KB
/
index.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
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>PoCBox - Vulnerability Test Aid Platform</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 | OverSpace</font></div>
<ul class="layui-nav layui-layout-right">
<li class="layui-nav-item">
<a href="./index_cn.html" title="Switch to Chinese Simplified">
<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">
<ul class="layui-nav layui-nav-tree" lay-filter="test">
<li class="layui-nav-item layui-nav-itemed">
<a href="javascript:;">Vulnerability</a>
<dl class="layui-nav-child">
<dd><a href="./poc/html_en/jsonp.html" onclick="openPage(this.href); return false;">JSONP Hijacking</a></dd>
<dd><a href="./poc/html_en/cors.html" onclick="openPage(this.href); return false;">CORS Hijacking</a></dd>
<dd><a href="./poc/html_en/cswsh.html" onclick="openPage(this.href); return false; ">Websocket Hijacking</a></dd>
<dd><a href="./poc/html_en/swf.html" onclick="openPage(this.href); alert('此处打开为SWF文件'); return false; ">Flash Content Hijacking</a></dd>
<dd><a href="./poc/html_en/clickjacking.html" onclick="openPage(this.href); return false; ">Clickjacking(Just Button)</a></dd>
<dd><a href="./poc/html_en/jsurl.html" onclick="openPage(this.href); return false; ">JavaScript URL Redirect</a></dd>
<dd><a href="./poc/html_en/302url.html" onclick="openPage(this.href); return false; ">302 URL Redirect</a></dd>
<dd><a href="./poc/html_en/uploadfile.html" onclick="openPage(this.href); return false; ">Upload File</a></dd>
<dd><a href="./poc/html_en/xxe.html" onclick="openPage(this.href); return false; ">XXE</a></dd>
</dl>
</li>
<li class="layui-nav-item layui-nav-itemed">
<a href="javascript:;">Fuzz Dict</a>
<dl class="layui-nav-child">
<dd><a href="./poc/html_en/URLRedirect.html" onclick="openPage(this.href); return false;">URL</a></dd>
</dl>
</li>
<li class="layui-nav-item layui-nav-itemed">
<a href="javascript:;">Others</a>
<dl class="layui-nav-child">
<dd><a href="./poc/html_en/searchengines.html" onclick="openPage(this.href); return false;">SearchEngines Site</a></dd>
<dd><a href="./poc/html_en/google_hack.html" onclick="openPage(this.href); return false;">Google Hack</a></dd>
<dd><a href="./caimima/index.html" onclick='$("#pocTest").html("<iframe src="+this.href+">"); return false;'>Caimima</a></dd>
</dl>
</li>
</ul>
</div>
</div>
<div class="layui-body" id="pocTest" style="padding: 15px;">
<center><h3><b>PoCBox - BugBounty Hunter's Vulnerability Test Aid Platform</b><br>Author: [Vulkey_Chen] <br> Blog: [gh0st.cn] <br>Team: [OverSpace Security] <br><br> <img style="width: 250px;" src="./static/overspace.png"></h3></center>
</div>
<div class="layui-footer">
© Powered By Vulkey_Chen | OverSpace Security
</div>
</div>
<script src="./layui/layui.all.js"></script>
<script>
;!function(){
var layer = layui.layer
,form = layui.form;
layer.msg('Welcome to PoCBox Platform.');
}();
</script>
</body>
</html>