The Portable Executable (PE) format, a modification of COFF, is the file format for executable binaries under the Windows operating system.
Does Windows have an executable that I can run in the command shell which returns the version number of an …
windows batch-file command-line version portable-executableA file that is given as input to the linker is called Object File. The linker produces an Image file, …
assembly linker loader portable-executableIs there a way in C++/windows to get the exe/DLL image base address? thanks :)
c++ windows portable-executable base-addressI'm in the process of reworking my build system, and I've read that node.js with grunt is a good …
node.js build-automation portable-executable gruntjsI noticed in IDA that the PE file which I analyze has not only the .rdata section but also .idata. …
windows reverse-engineering portable-executableI'm working on a program that will parse a PE object for various pieces of information. Reading the specifications though, …
c++ header portable-executableI need to find the mode EXE/DLL was build looking at its headers. (Using C++ only without any external …
c++ dll exe debug-symbols portable-executableI have a simple .net core app and publish it by following command: dotnet publish -c Release -r win10-x64 …
c# .net-core publish portable-executable self-containedI already asked a similar question, "PE Header requirements", but I'm not really satisfied with it's answer. I am building …
winapi linker portable-executable coffBasically, what I am trying to do is to find last section of PE file. I have read PE specification …
c winapi portable-executable