## Prefetch
> Prefetch是预读取文件夹,用来存放系统已访问过的文件的预读信息,扩展名为PF。之所以自动创建Prefetch文件夹,是为了加快系统启动的进程。
查看该功能是否开启:
“`bash
reg query “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters” /v EnablePrefetcher
“`
键值代表的含义
“`bash
0 = Disabled
1 = Application launch prefetching enabled
2 = Boot prefetching enabled
3 = Applaunch and Boot enabled (Optimal and Default)
“`
位置为:
**注**:实时更新,数据加密
“`bash
C:\Windows\Prefetch
“`
解析工具:https://github.com/ianxtianxt/PECmd
参数:
“`bash
PECmd.exe -f “C:\Temp\CALC.EXE-3FBEF7FD.pf”
PECmd.exe -f “C:\Temp\CALC.EXE-3FBEF7FD.pf” –json “D:\jsonOutput” –jsonpretty
PECmd.exe -d “C:\Temp” -k “system32, fonts”
PECmd.exe -d “C:\Temp” –csv “c:\temp” –json c:\temp\json
PECmd.exe -d “C:\Windows\Prefetch”
“`
PS:按`csv`导出的有两个文件:`”time_prefix”.PECmd_Output.csv`和`”time_prefix”.PECmd_Output_Timeline.csv`,前者保存了详情信息,后者只保存了运行时间和可执行程序的名称
`”time_prefix”.PECmd_Output_Timeline.csv`的
![616c28674ff94678a7f67e09f040ec5e](/static/lingzu/images/security_wiki/616c28674ff94678a7f67e09f040ec5e.png)
`”time_prefix”.PECmd_Output.csv`
![](/static/lingzu/images/security_wiki/15906454625921.png)
请登录后查看评论内容