Catalyst / admin/Synapse-Cortex 14.8 GB / 57.8 GB 40.0 GB free
Help Sign in

admin / Synapse-Cortex

public

Self Hosted ITSM Tool with RBAC/Tenanting and MFA

Code Issues Pull requests Pipelines Packages Security Insights Wiki Settings
Synapse-Cortex / Synapse-Cortexv2 / playbooks / windows-check-event-log-for-recent-critical-errors.json 1366 B · 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
{
  "name": "Windows: Check Event Log for Recent Critical Errors",
  "enabled": true,
  "allowed_target_os": [
    "windows"
  ],
  "required_approval_level": "human_in_the_loop",
  "forbidden_commands": [],
  "graph_json": {
    "nodes": [
      {
        "id": "start",
        "type": "start",
        "data": {},
        "position": {
          "x": 250,
          "y": 0
        }
      },
      {
        "id": "cmd_system",
        "type": "command",
        "data": {
          "label": "Check System log for errors",
          "command": "Get-WinEvent -LogName System -MaxEvents 20 | Where-Object { $_.LevelDisplayName -eq \"Error\" }"
        },
        "position": {
          "x": 250,
          "y": 130
        }
      },
      {
        "id": "cmd_application",
        "type": "command",
        "data": {
          "label": "Check Application log for errors",
          "command": "Get-WinEvent -LogName Application -MaxEvents 20 | Where-Object { $_.LevelDisplayName -eq \"Error\" }"
        },
        "position": {
          "x": 250,
          "y": 260
        }
      }
    ],
    "edges": [
      {
        "id": "e_start_cmd_system",
        "source": "start",
        "target": "cmd_system"
      },
      {
        "id": "e_cmd_system_cmd_application",
        "source": "cmd_system",
        "target": "cmd_application"
      }
    ]
  }
}