Tactic: Lateral Movement · Platforms: Windows, SaaS, Linux, macOS, Office Suite
Adversaries may deliver payloads to remote systems by adding content to shared storage locations, such as network drives or internal code repositories. Content stored on network drives or in other shared locations may be tainted by adding malicious programs, scripts, or exploit code to otherwise…
Sigma detection rules (5)
T1080 Taint Shared Content
title: T1080 Taint Shared Content
id: f1980773-41de-4c5a-aec1-bf337ea26900
description: 'Detection of Tainted Content Written to Shared Storage. (Data Component: File Creation; baseline tier: windows-eventid.) Tune using: SharedPathPrefix, ExecutableExtensions.'
references:
- https://attack.mitre.org/techniques/T1080
author: Shahrukh Khan
date: 2026-06-10
license: MIT
tags:
- attack.lateral-movement
- attack.t1080
logsource:
category: file_event
product: windows
service: sysmon
detection:
selection:
EventID: '11'
selection_share:
TargetFilename|startswith: '\\'
selection_ext:
TargetFilename|endswith:
- '.exe'
- '.dll'
- '.lnk'
- '.vbs'
- '.js'
- '.bat'
- '.ps1'
- '.scr'
- '.hta'
filter_system_account:
User|contains:
- 'SYSTEM'
- 'LOCAL SERVICE'
- 'NETWORK SERVICE'
condition: selection and selection_share and selection_ext and not filter_system_account
falsepositives:
- Legitimate deployment of scripts/executables to network share software distribution points; tune SharedPathPrefix allowlists for known deployment shares.
level: medium
T1080 Taint Shared Content
title: T1080 Taint Shared Content
id: 65621dc8-cf4a-467d-a010-a944c9497ee6
description: 'Detection of Tainted Content Written to Shared Storage. (Retargeted to the file_change auditd telemetry that actually captures this techniques behavior; see logsource below.) The executable-permission check previously borrowed EXECVE''s a1 field without verifying a0 was chmod/install or that it referred to the same object as the PATH write, so it could spuriously correlate an unrelated command''s argv containing "0755" with an unconnected shared-mount write. Now uses the PATH record''s own mode field on the same shared-mount path, and checks a broader set of executable-bit permission patterns. Tune using: MountPath, FilenamePattern.'
references:
- https://attack.mitre.org/techniques/T1080
author: Shahrukh Khan
date: 2026-01-26
license: MIT
tags:
- attack.lateral-movement
- attack.t1080
logsource:
category: file_change
product: linux
detection:
selection:
type: PATH
name|contains:
- '/mnt/'
- '/media/'
- '/srv/nfs/'
mode|endswith:
- '755'
- '775'
- '777'
- '711'
- '551'
- '111'
condition: selection
falsepositives:
- Legitimate deployment processes may write executable files to shared/mounted storage; scope to shares that are read-mostly or not part of normal deployment workflows.
level: medium
T1080 Taint Shared Content
title: T1080 Taint Shared Content
id: 9ffe2f93-d5b2-4ec7-bdde-a808e273d4ac
description: 'Detection of Tainted Content Written to Shared Storage. (Retargeted to the file_event macOS unified-log telemetry that actually captures this techniques behavior; see logsource below.) Tune using: FileExtensionDeception, TargetSharedFolder.'
references:
- https://attack.mitre.org/techniques/T1080
author: Shahrukh Khan
date: 2026-03-01
license: MIT
tags:
- attack.lateral-movement
- attack.t1080
logsource:
category: file_event
product: macos
detection:
selection:
TargetFilename|contains:
- '/Shared/'
- '/Volumes/'
TargetFilename|re: '\.(pdf|docx?|xlsx?)\.(app|command|scpt)