-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
195 lines (190 loc) · 6.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- insert analytics here-->
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>云原生ATT&CK矩阵</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/bootstrap-glyphicon.min.css" />
<link rel="stylesheet" href="./css/bootstrap-tourist.css" />
<link rel="stylesheet" type="text/css" href="./css/style.min.css" />
<link rel="stylesheet" type="text/css" href="./css/root.css" />
<link rel="stylesheet" type="text/css" href="./css/el-row.css" />
<link rel="stylesheet" type="text/css" href="./css/el-col.css" />
<link rel="stylesheet" type="text/css" href="./css/el-dialog.css" />
<link rel="stylesheet" type="text/css" href="./css/el-button.css" />
<link rel="stylesheet" type="text/css" href="./css/btn.css" />
<link rel="stylesheet" type="text/css" href="./css/el-base.css" />
<style>
.el-container {
box-sizing: border-box;
display: flex;
flex: 1;
flex-basis: auto;
flex-direction: row;
min-width: 0;
}
.el-container.is-vertical {
flex-direction: column;
}
</style>
<style>
.el-aside {
box-sizing: border-box;
flex-shrink: 0;
overflow: auto;
width: var(--el-aside-width, 300px);
}
</style>
<style>
.el-footer {
--el-footer-padding: 0 20px;
--el-footer-height: 60px;
box-sizing: border-box;
flex-shrink: 0;
height: var(--el-footer-height);
padding: var(--el-footer-padding);
}
</style>
<style>
.el-header {
--el-header-padding: 0 20px;
--el-header-height: 60px;
box-sizing: border-box;
flex-shrink: 0;
height: var(--el-header-height);
padding: var(--el-header-padding);
}
</style>
<style>
.el-main {
--el-main-padding: 20px;
box-sizing: border-box;
display: block;
flex: 1;
flex-basis: auto;
overflow: auto;
padding: var(--el-main-padding);
}
</style>
<style>
.el-overlay {
background-color: var(--el-overlay-color-lighter);
bottom: 0;
height: 100%;
left: 0;
overflow: auto;
position: fixed;
right: 0;
top: 0;
z-index: 2000;
}
.el-overlay .el-overlay-root {
height: 0;
}
</style>
<style>
iframe#index-content {
height: calc(100vh - 70px);
}
</style>
</head>
<body style="padding-top: 66px">
<!--stopindex-->
<script>
function loadContent(page) {
document.getElementById("index-content").src = page;
}
window.addEventListener("message", function (event) {
if (event.data.action === "loadContent") {
loadContent("detail.html?title=" + event.data.title);
}
});
</script>
<header>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a
class="navbar-brand"
href="javascript:void(0)"
onclick="loadContent('attack.html')"
><img src="./img/mitre_attack_logo.png" class="attack-logo"
/></a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="nav nav-tabs ml-auto">
<li class="nav-item">
<a
href="javascript:void(0)"
onclick="loadContent('attack.html')"
class="nav-link"
><b>云原生ATT&CK矩阵</b></a
>
</li>
</ul>
</div>
</nav>
</header>
<iframe src="attack.html" frameborder="0" id="index-content"></iframe>
<footer
class="footer"
style="position: relative; height: 80px; text-align: center"
>
<div style="line-height: 80px">© 2024 NSFOCUS XingYun Lab</div>
<div
style="
position: absolute;
right: 0;
height: 60px;
display: flex;
bottom: 10px;
"
>
<div style="margin-right: 12px">
<span style="font-size: 8px; display: block; text-align: center"
>创新研究院</span
>
<img src="img/official_qr.png" alt="" style="width: 48px" />
</div>
<div style="margin-right: 12px">
<span style="font-size: 8px; display: block; text-align: center"
>Metarget</span
>
<img src="img/contact_qr.jpg" alt="" style="width: 48px" />
</div>
</div>
</footer>
<!--SCRIPTS-->
<!--SCRIPTS-->
<script src="./js/jquery-3.5.1.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/site.js"></script>
<script src="./js/flexsearch.es5.js"></script>
<script src="./js/localforage.min.js"></script>
<script src="./js/settings.js"></script>
<script src="./js/search_babelized.js"></script>
<script src="./js/matrix.js"></script>
<script src="./js/bootstrap-tourist.js"></script>
<script src="./js/settings(1).js"></script>
<script src="./js/tour-introduction.js"></script>
<script src="./js/random_page.js"></script>
<script src="./js/detail.js"></script>
</body>
</html>