Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.57 KB

forensics-windows.md

File metadata and controls

50 lines (34 loc) · 1.57 KB

Windows forensics

generate timeline

warning: todo

check against known hashes

other checks

interesting places

  • registry hives
    • (HKLM|HKCU)\Software\Microsoft\Windows\CurrentVersion(Run|RunOnce|RunOnceServices?|RunServices?|RunServicesOnce?)
    • HKLM\System\CurrentControlSet\Services\
  • user profile startup folder (%USERPROFILE%\Start Menu\Programs\Startup; shell:startup)
  • Windows Event Log (%windir%\System32\winevt, https://github.com/williballenthin/python-evtx)
  • scheduler (%windir%\tasks)
  • c:\windows\temp
  • profile paths for users and services
    • %windir%\System32\config\systemprofile
    • %windir%\ServiceProfiles\LocalService\AppData\Local\Temp\TfsStore\Tfs_DAV
    • %USERPROFILE%\AppData\Local\Microsoft\Windows\Temporary Internet Files\
    • %USERPROFILE%\AppData\Local\Microsoft\Windows\INetCache\IE<subdir>
    • %USERPROFILE%\AppData\Local\Temp (generaly all temp localtions)

powershell magic

get-childitem | convertto-csv | convertfrom-csv | format-table -auto