How to bypass registry reflection (Wow6432Node)?

前端 未结 1 654
既然无缘
既然无缘 2021-01-17 00:24

I want to extract certain information from the registry but since my script is running inside a 32-bit engine, it will extract information only from the Wow6432Node for cert

相关标签:
1条回答
  • 2021-01-17 01:25

    You can read and write specifically to the 32 or 64 bit views of the registry by passing different flags to the RegOpenKeyEx/RegCreateKeyEx functions: KEY_WOW64_64KEY and KEY_WOW64_32KEY

    0 讨论(0)
提交回复
热议问题