382d6313a3
Windows Matrix update + also fixed Dir names/paths
11 lines
386 B
Markdown
11 lines
386 B
Markdown
# Timestomp
|
|
|
|
MITRE ATT&CK Technique: [T1099](https://attack.mitre.org/wiki/Technique/T1099)
|
|
|
|
## Timestomp with PowerShell
|
|
|
|
#### Source: https://gist.github.com/obscuresec/7b0cf71d7a8dd5e7b54c
|
|
|
|
echo "Atomic Test File" > test.txt
|
|
PowerShell.exe -com {$file=(gi test.txt);$date='06/06/2006 12:12 pm';$file.LastWriteTime=$date;$file.LastAccessTime=$date;$file.CreationTime=$date}
|