T1039 Data from Network Shared Drive
High-Level Description
Adversaries may search network shares on computers they have compromised to find files of interest. Sensitive data can be collected from remote systems via shared network drives (host shared directory, network file server, etc.) that are accessible from the current system prior to Exfiltration. Interactive command shells may be in use, and common functionality within cmd may be used to gather information.
Kill Chain Phase
- Collection (TA0009)
Platforms: Linux, macOS, Windows
What to Check
- Identify if Data from Network Shared Drive technique is applicable to target environment
- Check Linux systems for indicators of Data from Network Shared Drive
- Check macOS systems for indicators of Data from Network Shared Drive
- Check Windows systems for indicators of Data from Network Shared Drive
- Assess detection coverage (1 detection strategies)
How to Test
Atomic Red Team Tests
The following tests are from Atomic Red Team and provide actionable ways to test this technique:
Atomic Test 1: Copy a sensitive File over Administrative share with copy
Copy from sensitive File from the c$ of another LAN computer with copy cmd https://twitter.com/SBousseaden/status/1211636381086339073
Supported Platforms: windows Elevation Required: Yes
copy \\#{remote}\C$\#{share_file} %TEMP%\#{local_file}
Dependencies:
- Administrative share must exist on #{remote}
- "\#{remote}\C$#{share_file}" must exist on #{remote}
Atomic Test 2: Copy a sensitive File over Administrative share with Powershell
Copy from sensitive File from the c$ of another LAN computer with powershell https://twitter.com/SBousseaden/status/1211636381086339073
Supported Platforms: windows Elevation Required: Yes
copy-item -Path "\\#{remote}\C$\#{share_file}" -Destination "$Env:TEMP\#{local_file}"
Dependencies:
- Administrative share must exist on #{remote}
- "\#{remote}\C$#{share_file}" must exist on #{remote}
Manual Testing
If Atomic Red Team tests are not applicable, manually verify the technique by:
Identify Attack Surface: Determine if the target environment is susceptible to Data from Network Shared Drive by examining the target platforms (Linux, macOS, Windows).
Assess Existing Defenses: Review whether mitigations for T1039 are in place. If defenses are absent or misconfigured, this technique may be exploitable.
Execute Test: Use tools and methods described in the MITRE ATT&CK page and external references below.
Remediation Guide
No specific mitigations documented for this technique.
Detection
Detection Strategy for Data from Network Shared Drive
Risk Assessment
| Finding | Severity | Impact |
|---|---|---|
| Data from Network Shared Drive technique applicable | Low | Collection |
CWE Categories
| CWE ID | Title |
|---|---|
| CWE-200 | Exposure of Sensitive Information |