You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"title": "HELIOS - WEL Active Directory Global Admin Group Created",
5
+
"desc": "Detects the creation of security-enabled global administrative groups (4727) in Active Directory. This may indicate unauthorized modifications to privileged group memberships, posing a security risk. Extended Windows Event Log collection must be enabled for this rule to work properly."
"title": "HELIOS - WEL Successful Brute Force Attack",
5
+
"desc": "Detects a successful brute force attack against a Windows endpoint. Multiple failed authentication attempts followed by a successful logon indicate credential compromise. This technique is commonly used by attackers to gain initial access or escalate privileges within a network. Extended Windows Event Log collection must be enabled for this rule to work properly."
"title": "HELIOS - WEL Hidden Scheduled Task Creation",
5
+
"desc": "Detects the creation of a hidden scheduled task, a tactic often used by attackers to maintain persistence on a compromised system. Hidden tasks can evade detection by administrators and standard monitoring tools, allowing adversaries to execute malicious activities stealthily. This technique is commonly employed to run malicious scripts, download payloads, or maintain remote access without raising suspicion. Extended Windows Event Log collection must be enabled for this rule to work properly."
"finding_info.desc": f"User {VICTIM_PROFILE['email']} downloaded RDP files from SharePoint - potential lateral movement preparation"
174
177
}
178
+
},
179
+
"wel_hidden_schtask_bridge": {
180
+
"template": "wel_hidden_scheduled_task",
181
+
"offset_minutes": 8, # After PowerShell spawns and creates persistence task on bridge
182
+
"target_machine": "bridge",
183
+
"overrides": {
184
+
"finding_info.desc": f"Hidden scheduled task 'WindowsUpdate' created on {VICTIM_PROFILE['machine_bridge']} by {VICTIM_PROFILE['domain']}\\{VICTIM_PROFILE['username']} to execute {ATTACKER_PROFILE['malware_name']}. This persistence mechanism allows the attacker to maintain access even after system reboots."
185
+
}
186
+
},
187
+
"wel_hidden_schtask_enterprise": {
188
+
"template": "wel_hidden_scheduled_task",
189
+
"offset_minutes": 40, # After lateral movement to Enterprise
190
+
"target_machine": "enterprise",
191
+
"overrides": {
192
+
"finding_info.desc": f"Hidden scheduled task created on {VICTIM_PROFILE['machine_enterprise']} Domain Controller by {VICTIM_PROFILE['domain']}\\{VICTIM_PROFILE['username']} to execute {ATTACKER_PROFILE['malware_name']}. Lateral movement persistence established on critical infrastructure."
193
+
}
194
+
},
195
+
"wel_brute_force_enterprise": {
196
+
"template": "wel_brute_force_success",
197
+
"offset_minutes": 30, # After credential dump and brute force attempts
198
+
"target_machine": "enterprise",
199
+
"overrides": {
200
+
"finding_info.desc": f"Successful brute force attack detected on {VICTIM_PROFILE['machine_enterprise']}. Multiple failed logon attempts from {VICTIM_PROFILE['machine_bridge']} ({VICTIM_PROFILE['client_ip']}) followed by successful authentication using stolen credentials from Mimikatz dump."
201
+
}
202
+
},
203
+
"wel_ad_admin_group_enterprise": {
204
+
"template": "wel_ad_global_admin_group",
205
+
"offset_minutes": 45, # After gaining access to Enterprise DC
206
+
"target_machine": "enterprise",
207
+
"overrides": {
208
+
"finding_info.desc": f"Security-enabled global admin group created on {VICTIM_PROFILE['machine_enterprise']} Domain Controller by {VICTIM_PROFILE['domain']}\\{VICTIM_PROFILE['username']}. This may indicate privilege escalation after lateral movement from {VICTIM_PROFILE['machine_bridge']}."
0 commit comments