-
Notifications
You must be signed in to change notification settings - Fork 0
/
APT Actors Exploiting Static Machine Keys in Public-Facing Web Application
313 lines (309 loc) · 11.3 KB
/
APT Actors Exploiting Static Machine Keys in Public-Facing Web Application
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# AzureSentinel-
Analytic Rules
let iocs = externaldata(DateAdded: string, IoC: string, Type: string, TLP: string) [@"https://raw.githubusercontent.com/wcoreironrrtx/APT41-USAHerds-as-well-as-the-recent-blog-post-from-Mandiant/main/README.md"] with (format="csv", ignoreFirstRecord=True);
let domains = (iocs
| where Type =~ "domainname"
| project IoC);
let sha256Hashes = (iocs
| where Type =~ "sha256"
| project IoC);
let IPList = (iocs
| where Type =~ "ip"
| project IoC);
let file_path1 = (iocs
| where Type =~ "filepath1"
| project IoC);
let file_path2 = (iocs
| where Type =~ "filepath2"
| project IoC);
let file_path3 = (iocs
| where Type =~ "filepath3"
| project IoC);
let reg_key = (iocs
| where Type =~ "regkey"
| project IoC);
(union isfuzzy=true
(CommonSecurityLog
| where DestinationHostName has_any (domains)
or RequestURL has_any (domains)
or Message has_any (domains)
| parse Message with * '(' DNSName ')' *
| project
TimeGenerated,
Message,
SourceUserID,
RequestURL,
DestinationHostName,
Type,
SourceIP,
DestinationIP,
DNSName
| extend Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
| extend
timestamp = TimeGenerated,
AccountCustomEntity = SourceUserID,
UrlCustomEntity = RequestURL,
IPCustomEntity = DestinationIP,
DNSCustomEntity = DNSName
),
(DnsEvents
| where Name in~ (domains)
| project TimeGenerated, Computer, IPAddresses, Name, ClientIP, Type
| extend
DNSName = Name,
Host = Computer,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
| extend
timestamp = TimeGenerated,
HostCustomEntity = Host,
DNSCustomEntity = DNSName,
IPCustomEntity = IPAddresses
),
(Event
| where Source == "Microsoft-Windows-Sysmon"
| where EventID == 3
| extend EvData = parse_xml(EventData)
| extend EventDetail = EvData.DataItem.EventData.Data
| extend
SourceIP = tostring(EventDetail.[9].["#text"]),
DestinationIP = tostring(EventDetail.[14].["#text"]),
Image = EventDetail.[4].["#text"]
| where Image has_any (file_path1) or Image has_any (file_path3)
| project
TimeGenerated,
SourceIP,
DestinationIP,
Image,
UserName,
Computer,
EventDetail,
Type
| extend
timestamp = TimeGenerated,
AccountCustomEntity = UserName,
ProcessCustomEntity = tostring(split(Image, '\\', -1)[-1]),
HostCustomEntity = Computer,
IPCustomEntity = DestinationIP,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
),
(DeviceNetworkEvents
| where (RemoteUrl has_any (domains))
or (InitiatingProcessSHA256 in (sha256Hashes) and InitiatingProcessFolderPath has_any (file_path1))
or InitiatingProcessFolderPath has_any (file_path3)
| project
TimeGenerated,
ActionType,
DeviceId,
DeviceName,
InitiatingProcessAccountDomain,
InitiatingProcessAccountName,
InitiatingProcessCommandLine,
InitiatingProcessFolderPath,
InitiatingProcessId,
InitiatingProcessParentFileName,
InitiatingProcessFileName,
RemoteIP,
RemoteUrl,
LocalIP,
Type
| extend
timestamp = TimeGenerated,
IPCustomEntity = RemoteIP,
HostCustomEntity = DeviceName,
Alert = 'SOURGUM IOC detected',
UrlCustomEntity =RemoteUrl
),
(AzureDiagnostics
| where ResourceType == "AZUREFIREWALLS"
| where Category == "AzureFirewallDnsProxy"
| project TimeGenerated, Resource, msg_s, Type
| parse msg_s with "DNS Request: " ClientIP ":" ClientPort " - " QueryID " " Request_Type " " Request_Class " " Request_Name ". " Request_Protocol " " Request_Size " " EDNSO_DO " " EDNS0_Buffersize " " Responce_Code " " Responce_Flags " " Responce_Size " " Response_Duration
| where Request_Name has_any (domains)
| extend
timestamp = TimeGenerated,
DNSName = Request_Name,
IPCustomEntity = ClientIP,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
),
(Event
| where Source == "Microsoft-Windows-Sysmon"
| where EventID == 1
| extend EvData = parse_xml(EventData)
| extend EventDetail = EvData.DataItem.EventData.Data
| parse EventDetail with * 'SHA256=' SHA256 '",' *
| extend Image = EventDetail.[4].["#text"], CommandLine = EventDetail.[10].["#text"]
| where (SHA256 has_any (sha256Hashes) and Image has_any (file_path1))
or (Image has_any (file_path3))
or (CommandLine has_any (file_path3))
or (CommandLine has_any (file_path1))
or (CommandLine has 'reg add' and CommandLine has_any (reg_key) and CommandLine has_any (file_path2))
| project
TimeGenerated,
EventDetail,
UserName,
Computer,
Type,
Source,
SHA256,
CommandLine,
Image
| extend
Type = strcat(Type, ": ", Source),
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
| extend
timestamp = TimeGenerated,
HostCustomEntity = Computer,
AccountCustomEntity = UserName,
ProcessCustomEntity = tostring(split(Image, '\\', -1)[-1]),
AlgorithmCustomEntity = "SHA256",
FileHashCustomEntity = SHA256
),
(DeviceRegistryEvents
| where RegistryKey has_any (reg_key) and RegistryValueData has_any (file_path2)
| project
TimeGenerated,
ActionType,
DeviceId,
DeviceName,
InitiatingProcessAccountDomain,
InitiatingProcessAccountName,
InitiatingProcessCommandLine,
InitiatingProcessFolderPath,
InitiatingProcessId,
InitiatingProcessParentFileName,
InitiatingProcessFileName,
InitiatingProcessSHA256,
Type
| extend
timestamp = TimeGenerated,
HostCustomEntity = DeviceName,
AccountCustomEntity = InitiatingProcessAccountName,
ProcessCustomEntity = InitiatingProcessFileName,
AlgorithmCustomEntity = "SHA256",
FileHashCustomEntity = InitiatingProcessSHA256,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
),
(DeviceProcessEvents
| where (InitiatingProcessCommandLine has_any (file_path1))
or (InitiatingProcessCommandLine has_any (file_path3))
or (InitiatingProcessCommandLine has 'reg add' and InitiatingProcessCommandLine has_any (reg_key) and InitiatingProcessCommandLine has_any (file_path2))
or (InitiatingProcessFolderPath has_any (file_path1))
or (InitiatingProcessFolderPath has_any (file_path3))
or (FolderPath has_any (file_path1))
or (FolderPath has_any (file_path3))
| project
TimeGenerated,
ActionType,
DeviceId,
DeviceName,
InitiatingProcessAccountDomain,
InitiatingProcessAccountName,
InitiatingProcessCommandLine,
InitiatingProcessFolderPath,
InitiatingProcessId,
InitiatingProcessParentFileName,
InitiatingProcessFileName,
InitiatingProcessSHA256,
FolderPath,
Type
| extend
timestamp = TimeGenerated,
HostCustomEntity = DeviceName,
AccountCustomEntity = InitiatingProcessAccountName,
ProcessCustomEntity = InitiatingProcessFileName,
AlgorithmCustomEntity = "SHA256",
FileHashCustomEntity = InitiatingProcessSHA256,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
),
(DeviceFileEvents
| where (InitiatingProcessSHA256 has_any (sha256Hashes) and InitiatingProcessFolderPath has_any (file_path1))
or (InitiatingProcessFolderPath has_any (file_path3))
or (FolderPath has_any (file_path1))
or (FolderPath has_any (file_path3))
or (InitiatingProcessCommandLine has_any (file_path1))
or (InitiatingProcessCommandLine has_any (file_path3))
| project
TimeGenerated,
ActionType,
DeviceId,
DeviceName,
InitiatingProcessAccountDomain,
InitiatingProcessAccountName,
InitiatingProcessCommandLine,
InitiatingProcessFolderPath,
InitiatingProcessId,
InitiatingProcessParentFileName,
InitiatingProcessFileName,
RequestAccountName,
RequestSourceIP,
InitiatingProcessSHA256,
FolderPath,
Type
| extend
timestamp = TimeGenerated,
HostCustomEntity = DeviceName,
AccountCustomEntity = RequestAccountName,
ProcessCustomEntity = InitiatingProcessFileName,
AlgorithmCustomEntity = "SHA256",
FileHashCustomEntity = InitiatingProcessSHA256,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
),
(DeviceEvents
| where (InitiatingProcessCommandLine has_any (file_path1))
or (InitiatingProcessCommandLine has_any (file_path3))
or (InitiatingProcessCommandLine has 'reg add' and InitiatingProcessCommandLine has_any (reg_key) and InitiatingProcessCommandLine has_any (file_path2))
or (InitiatingProcessFolderPath has_any (file_path1))
or (InitiatingProcessFolderPath has_any (file_path3))
or (FolderPath has_any (file_path1))
or (FolderPath has_any (file_path3))
| project
TimeGenerated,
ActionType,
DeviceId,
DeviceName,
InitiatingProcessAccountDomain,
InitiatingProcessAccountName,
InitiatingProcessCommandLine,
InitiatingProcessFolderPath,
InitiatingProcessId,
InitiatingProcessParentFileName,
InitiatingProcessFileName,
InitiatingProcessSHA256,
FolderPath,
Type
| extend
CommandLine = InitiatingProcessCommandLine,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
| extend
timestamp = TimeGenerated,
HostCustomEntity = DeviceName,
AccountCustomEntity = InitiatingProcessAccountName,
ProcessCustomEntity = InitiatingProcessFileName,
AlgorithmCustomEntity = "SHA256",
FileHashCustomEntity = InitiatingProcessSHA256
),
(SecurityEvent
| where EventID == 4688
| where (CommandLine has_any (file_path1))
or (CommandLine has_any (file_path3))
or (CommandLine has 'reg add' and CommandLine has_any (reg_key) and CommandLine has_any (file_path2))
or (NewProcessName has_any (file_path1))
or (NewProcessName has_any (file_path3))
or (ParentProcessName has_any (file_path1))
or (ParentProcessName has_any (file_path3))
| project
TimeGenerated,
Computer,
NewProcessName,
ParentProcessName,
Account,
NewProcessId,
Type
| extend
timestamp = TimeGenerated,
HostCustomEntity = Computer,
AccountCustomEntity = Account,
ProcessCustomEntity = NewProcessName,
Alert = 'APT Actors Exploiting Static Machine Keys in Public-Facing Web Application'
)
)