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
Detects files creation and modification on the host system from the the Windows Subsystem for Linux. Adversaries may
11
-
enable and use WSL for Linux to avoid detection.
10
+
Detects file creation and modification on the host system from the Windows Subsystem for Linux. Adversaries may enable
11
+
and use WSL to avoid detection.
12
12
"""
13
13
from = "now-9m"
14
14
index = [
@@ -20,13 +20,13 @@ index = [
20
20
]
21
21
language = "eql"
22
22
license = "Elastic License v2"
23
-
name = "Host Files System Changes via Windows Subsystem for Linux"
23
+
name = "Host File System Changes via Windows Subsystem for Linux"
24
24
note = """## Triage and analysis
25
25
26
26
> **Disclaimer**:
27
27
> This investigation guide was created using generative AI technology and has been reviewed to improve its accuracy and relevance. While every effort has been made to ensure its quality, we recommend validating the content and adapting it to suit your specific environment and operational needs.
28
28
29
-
### Investigating Host Files System Changes via Windows Subsystem for Linux
29
+
### Investigating Host File System Changes via Windows Subsystem for Linux
30
30
31
31
Windows Subsystem for Linux (WSL) allows users to run a Linux environment directly on Windows, facilitating seamless file access between systems. Adversaries may exploit WSL to modify host files stealthily, bypassing traditional security measures. The detection rule identifies suspicious file operations initiated by WSL processes, particularly those involving the Plan9FileSystem, to flag potential defense evasion attempts.
32
32
@@ -75,11 +75,14 @@ type = "eql"
75
75
76
76
query = '''
77
77
sequence by process.entity_id with maxspan=5m
78
-
[process where host.os.type == "windows" and event.type == "start" and
79
-
process.name : "dllhost.exe" and
80
-
/* Plan9FileSystem CLSID - WSL Host File System Worker */
0 commit comments