forked from Security-Experts-Community/siem-monkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
120 lines (103 loc) · 3.58 KB
/
popup.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
<!--
Copyright 2023 Konstantin Grishchenko, Security Experts Community
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="libs/jquery/jquery-3.5.1.min.js"></script>
<script src="libs/jquery-ui-1.12.1/jquery-ui.js"></script>
<script src="libs/jquery-ui-timepicker/jquery-ui-timepicker-addon.js"></script>
<script src="libs/underscore.js/underscore-min.js"></script>
<script src="libs/moment.js/moment-with-locales.js"></script>
<script src="libs/d3.js/d3.v4.min.js"></script>
<script src="update.popup.js"></script>
<script src="processTree.popup.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="libs/jquery-ui-1.12.1/jquery-ui.min.monkey.css">
<link rel="stylesheet" type="text/css" href="libs/jquery-ui-timepicker/jquery-ui-timepicker-addon.css">
<link rel="stylesheet" type="text/css" href="popup.css">
<style>
.node text {
font: 10px sans-serif;
pointer-events: none;
}
.link {
fill: none;
stroke: #9ecae1;
stroke-width: 1.5px;
}
div.filename {
white-space: nowrap;
display: inline;
}
div.monkeylinks {
margin-left: 5px;
margin-top: 5px;
}
div.usefullfilters {
margin-left: 5px;
margin-top: 5px;
}
div.baseparams {
margin-left: 5px;
margin-top: 5px;
}
</style>
<title></title>
</head>
<body class="">
<div id="tabs" class="tabs">
<ul>
<li><a href="#tabs-0">Процессы</a></li>
<li><a href="#tabs-1">Полезные фильтры</a></li>
<li><a href="#tabs-2">Внешние запросы</a></li>
<li><a href="#tabs-3">About</a></li>
</ul>
<div id="tabs-0">
<div>
<span class="baseparams oneline">
Максимальное число событий:
<input type="text" id="count" name="count" size="2" value="1000" style="text-align:right;">
С: <input type="text" id="datepickerFrom" size="15" style="text-align:center;">
По: <input type="text" id="datepickerTo" size="15" style="text-align:center;">
<div id='processStartMsgidDiv' >sysmon 1</div>
<label class="switch">
<input type="checkbox" id="processstartmsgidcheckbox">
<span class="slider round"></span>
</label>
<div>
<a id="siemurl" href="#" target="_blank">средняя кнопка = работа в новой вкладке</a>
</div>
</span>
<div class="monkeylinks" id="mlinks">
</div>
</div>
</div>
<div id="tabs-1">
<div class="usefullfiltersdiv" >Полезные фильтры
<div class="usefullfilters" id="filters"></div>
</div>
</div>
<div id="tabs-2">
<span class = "oneline" id="userprofile">
</span>
</div>
<div id="tabs-3">
<h1 id="siemmonkey">SiemMonkey</h1>
<h2 id="-google-chrome-mp-siem">Плагин к браузеру Google Chrome для упрощения некоторых действий в MP SIEM</h2>
</div>
</div>
</div>
<div id="output"></div>
</body>
</html>