pe-parse
pe-parse copied to clipboard
The ability to allocation and perform further initialization of large PE files.
trafficstars
Added the ability to read files larger than 40MB at a time. This is necessary, for example, for further initialization of a large PE file, for example, its Imports and the like, which requires a full file in memory. One bool variable was added with default initialization as false, so as not to disrupt the work of projects on older versions or when switching to a new version. The file is loaded by linking two APIs: VirtualAlloc + ReadFile. Thanks for such a wonderful pe parser like this =)
Thanks for these changes @Nitr0-G! I've given them an initial review pass and left some thoughts.