forked from pan-unit42/playbook_viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UNIT 42 PLAYBOOK VIEWER</title>
<link href="https://fonts.googleapis.com/css?family=Jura:300|Rajdhani|Inconsolata" rel="stylesheet">
<link rel="icon" type="image/png" href="imgs/u42favicon.ico" sizes="32x32">
<link href="./css/bootstrap-tour-standalone.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<!--<script src='./js/jquery.min.js'></script>-->
<script src="./js/bootstrap-tour-standalone.js"></script>
<script src="js/index.js"></script>
<script>$(document).ready(loadPlaybooks);</script>
</head>
<body>
<div class="wrapper">
<div class="box header">
<span>PLAYBOOK VIEWER</span></div>
<div class="box sidebar">
<a href="https://unit42.paloaltonetworks.com/" target="_blank"> <img src='imgs/u42logo.png' alt=''></a>
<!--<span>PLAYBOOKS</span><br>-->
<span class="btn walkthrough" onClick="">PLAYBOOK WALKTHROUGH</span><br/>
</div>
<div class="box inside">
<div class="box description">Welcome to the Unit 42 Playbook Viewer. <br><br>Please select a playbook to begin.
</div>
<div class="box timeline"></div>
</div>
<div class="info">
</div>
<div class="bottomheader">
<div class="recon">RECON</div>
<div class="weaponization">WEAPONIZATION</div>
<div class="delivery">DELIVERY</div>
<div class="exploit">EXPLOIT</div>
<div class="install">INSTALL</div>
<div class="command">COMMAND</div>
<div class="objective">OBJECTIVE</div>
</div>
<div class="phasescontainer">
</div>
<div class="box footer">
Created by Palo Alto Networks - Unit 42
<br><a style="color:#95989a" href="https://attack.mitre.org/wiki/Main_Page">Mitre ATT&CK™</a>
| <a style="color:#95989a" href="https://oasis-open.github.io/cti-documentation/stix/intro">STIX 2.0</a>
</div>
</div>
</body>
</html>