-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathTruvis-User Windows Security Overview [MAIN]
132 lines (132 loc) · 5.44 KB
/
Truvis-User Windows Security Overview [MAIN]
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
<form theme="dark">
<label>Truvis-User Windows Security Overview [MAIN]</label>
<fieldset submitButton="true" autoRun="false">
<input type="text" token="filter1" searchWhenChanged="true">
<label>Filter:</label>
<default>*</default>
</input>
</fieldset>
<row>
<panel>
<title>Failed Login Events</title>
<input type="time" token="time1" searchWhenChanged="true">
<label></label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
</input>
<input type="multiselect" token="multi_select1" searchWhenChanged="true">
<label>Field Section:</label>
<choice value="_time">_time</choice>
<choice value="host">host</choice>
<choice value="user">user</choice>
<choice value="src_ip">src_ip</choice>
<choice value="EventCode">EventCode</choice>
<choice value="signature">signature</choice>
<choice value="Logon_Type">Logon_Type</choice>
<choice value="Logon_Process">Logon_Process</choice>
<default>user</default>
<delimiter>, </delimiter>
</input>
<table>
<search>
<query>source="WinEventLog:Security" $filter1$ TaskCategory=Logon Keywords="Audit Failure" | fillnull value=* src_ip EventCode | stats count by $multi_select1$
| sort -count</query>
<earliest>$time1.earliest$</earliest>
<latest>$time1.latest$</latest>
<sampleRatio>1</sampleRatio>
</search>
<option name="count">10</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">none</option>
<option name="percentagesRow">false</option>
<option name="refresh.display">progressbar</option>
<option name="rowNumbers">false</option>
<option name="totalsRow">false</option>
<option name="wrap">true</option>
</table>
</panel>
<panel>
<title>Successful Login Events</title>
<input type="time" token="time2" searchWhenChanged="true">
<label></label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
</input>
<input type="multiselect" token="multi_select2" searchWhenChanged="true">
<label>Field Section:</label>
<choice value="_time">_time</choice>
<choice value="host">host</choice>
<choice value="user">user</choice>
<choice value="src_ip">src_ip</choice>
<choice value="EventCode">EventCode</choice>
<choice value="signature">signature</choice>
<choice value="Logon_Type">Logon_Type</choice>
<choice value="Logon_Process">Logon_Process</choice>
<choice value="Process_Name">Process_Name</choice>
<default>user</default>
<delimiter>, </delimiter>
</input>
<table>
<search>
<query>source="WinEventLog:Security" $filter1$ TaskCategory=Logon Keywords="Audit Success" user!="DWM-*" user!="UMFD-*" user!=SYSTEM user!="LOCAL SERVICE" user!="NETWORK SERVICE" user!="*$$" user!="ANONYMOUS LOGON" user!="IUSR" | fillnull value=* src_ip EventCode Logon_Type, Logon_Process, Process_Name | stats count by $multi_select2$
| sort -count</query>
<earliest>$time2.earliest$</earliest>
<latest>$time2.latest$</latest>
<sampleRatio>1</sampleRatio>
</search>
<option name="count">10</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">none</option>
<option name="percentagesRow">false</option>
<option name="refresh.display">progressbar</option>
<option name="rowNumbers">false</option>
<option name="totalsRow">false</option>
<option name="wrap">true</option>
</table>
</panel>
</row>
<row>
<panel>
<title>Privileged Account Events</title>
<input type="time" token="time3" searchWhenChanged="true">
<label></label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
</input>
<input type="multiselect" token="multi_select3" searchWhenChanged="true">
<label>Field Section:</label>
<choice value="_time">_time</choice>
<choice value="host">host</choice>
<choice value="user">user</choice>
<choice value="signature">signature</choice>
<choice value="vendor_privilege">vendor_privilege</choice>
<choice value="member_id">member_id</choice>
<choice value="Keywords">Keywords</choice>
<default>user</default>
<delimiter>, </delimiter>
</input>
<table>
<search>
<query>source="WinEventLog:Security" $filter1$ TaskCategory="Special Logon" user!="DWM-*" user!="UMFD-*" user!=SYSTEM user!="LOCAL SERVICE" user!="NETWORK SERVICE" user!="*$" user!="ANONYMOUS LOGON" user!="IUSR" | stats count by $multi_select3$ | sort -count</query>
<earliest>$time3.earliest$</earliest>
<latest>$time3.latest$</latest>
<sampleRatio>1</sampleRatio>
</search>
<option name="count">20</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">none</option>
<option name="percentagesRow">false</option>
<option name="refresh.display">progressbar</option>
<option name="rowNumbers">false</option>
<option name="totalsRow">false</option>
<option name="wrap">true</option>
</table>
</panel>
</row>
</form>