Tagged Questions

The Portable Executable (PE) format, a modification of COFF, is the file format for executable binaries under the Windows operating system. The PE format is easily recognized by its "MZ DOS header" (0x4d 0x5a, "MZ" for "Mark Zbikowski").

learn more… | top users | synonyms

12
votes
3answers
443 views

How can I validate digital signatures for Microsoft's Portable Executable format in portable code?

I am looking for sample code (or libraries) that can help me validate digital signatures for Windows PE files (.exe, .dll, .cab, .etc) on non-Windows platforms using C++. I am looking for a ...
7
votes
3answers
1k views

What is the smallest possible Windows (PE) executable?

As a precursor to writing a compiler I'm trying to understand the Windows (32-bit) Portable Executable format. In particular I'd like to see an example of a bare-bones executable which does nothing ...
6
votes
5answers
143 views

How to tell if a file is an EXE or a DLL?

If you've gotten the file extensions messed up, how can you tell an executable apart from a DLL? They both seem to have entry points and everything...
5
votes
3answers
125 views

Determining if a dll is a .valid CLR dll by reading the PE directly (64bit issue)

I am working on migrating a 32bit web application into 64bit and am having some problems with our plugin loader code. In the 32bit version, we scan the webapps bin directory for all .net dlls, then ...
5
votes
1answer
84 views

Tweak DLL module name during LoadLibrary

I want to load at runtime a third party binary plug-in (P.dll) in my application (A.exe). This plug-in has been built for another application (B.exe). The plug-in has implicit dll import on the B.exe ...
5
votes
2answers
431 views

My OS Kernel in D: Some embedded strings don't work

I'm aware that is a rather difficult question to answer, mainly because there's so many things that could be wrong that it's hard to pin things down. But I'll give as much info as I can; hopefully ...
5
votes
3answers
516 views

Deterministic builds under Windows

The ultimate goal is comparing 2 binaries built from exact same source in exact same environment and being able to tell that they indeed are functionally equivalent. One application for this would ...
4
votes
1answer
279 views

Parse .NET CLR header

I'm looking to find a way to parse the CLR directory in a PE, more specifically I would like to read the method and field tables. I've already tried using Mono.Cecil but it doesn't give me direct ...
4
votes
2answers
336 views

how to build an executable without import table in c/c++?

I found a tool to repair import table here, but how are PE executable without import table built in the first place in c/c++?
4
votes
6answers
803 views

PE Header Requirements

What are the requirements of a PE file (PE/COFF)? What fields should be set, which value, at a bare minimum for enabling it to "run" on Windows (i.e. executing "ret" instruction and then close, ...
3
votes
1answer
58 views

Const objects not in rdata/rodata section

I can't force msvc10 to put my const object into .rdata section. It always ends up in .data, perfectly initialised (means there is no dynamic initialisation/runtime constructor execution). (compiled ...
3
votes
1answer
43 views

PE export table design

I was just going through [1] and I noticed the following excerpt: "the requirements for exporting a function are a name, an address, and an export ordinal. You'd think that the designers of the ...
3
votes
1answer
172 views

How do i determine exact PE image file size using its header(s)?

I need byte size, IMAGE_OPTIONAL_HEADER.SizeOfImage appears to be rounded up to (unsure) boundary and is greater than real file size.
3
votes
2answers
154 views

what is the maximum size of a PE file on 64-bit Windows?

It seems to me it's always going to be 4GB, because it uses the same size datatype (A DWORD)? Isn't a DWORD for the SizeOfImage always going to be 32-bits? Or am I mistaken about this limitation? ...
3
votes
1answer
191 views

ASLR and DEP in Delphi, How to tell?

From http://blogs.msdn.com/b/michael_howard/archive/2007/04/04/codegear-s-new-delphi-2007-supports-aslr-and-nx.aspx, I am using {$SETPEOPTFLAGS $140} in my project file right under the program name to ...
3
votes
2answers
252 views

Writing a Cross-Platform (32-bit and 64-bit compatible) Program for Windows (like AnyCPU in .NET)

It's been baffling me how the "AnyCPU" feature in .NET works: It loads the executable as native 32-bit if the system is 32-bit, and as 64-bit if the system is 64-bit (which you can easily confirm with ...
3
votes
3answers
183 views

Patching a PE executable

lets say i've loaded a PE executable into memory and suited it with dos,nt headers structures and now i want to find out its .text/code segement actual(not VA) offset+size how do i do that? is there a ...
3
votes
3answers
224 views

How to create an “empty” space in an executable at a definite address (gcc,linux)?

What I essentially want to do is have another program write data into this "empty space" for the executable to "work" on I thought of appending a signature to the application and then writing the ...
3
votes
1answer
622 views

How the basic link process works for ELF and PE

I've always been confused about how the linker works, and it's a difficult subject to search for. To demonstrate my question and to provide a framework for an answer, I'll put down what I know (or ...
2
votes
3answers
83 views

Is there any possible to get the memory entry point of function?

I created a child process from within my process with CreateProcess() and suspend the child process. I can get the main entry point in the memory of child process, but how should I get function entry ...
2
votes
2answers
51 views

Import address table yields incorrect RVA for import name

I'm having trouble with the Win32 NT headers giving me odd RVA's for import names. Here is the relevant code that is giving me the problem: //Get a pointer to the import table ...
2
votes
1answer
34 views

“Relative Virtual Addresses”, relative to what?

I have just been reading about the offsets of instructions which they are in a file on the disk, the RVA and the VA once they are loaded into the memory. I also read that if a PE file were loaded into ...
2
votes
2answers
41 views

CLI tool that lists the DLL files that are mentioned in the Imports section of a Windows PE executable?

I am looking for a CLI tool that will list all of the DLL files referenced in the Import section of a Windows executable file. Back in the day, Windows shipped with a GUI tool called QuickView that ...
2
votes
3answers
181 views

C++ entry point -> main()

I am writing my own little user mode debugger for fun. I know that the entry point specified in the PE header is not the programs defined main() (as far as microsoft c++ runtime is concerned anyway) ...
2
votes
1answer
260 views

PE Export Directory Table's OrdinalBase field ignored?

In my experience and that of others (http://webster.cs.ucr.edu/Page_TechDocs/pe.txt), the PE/COFF specification document incorrectly claims that the Export Address Table indices that are contained in ...
2
votes
1answer
1k views

How does the Large Address Aware flag work for 32 bit applications on 64-bit computers?

I've been reading that 32bit Windows applications are limited to 2 GB RAM because the upper 2GB of addressing space is reserved for the Windows OS (and, iirc, VRAM). If you use the /3GB flag on 32-bit ...
2
votes
1answer
969 views

Thunk table in import address table?

What is a thunk table in relation to the import address table that's used in EXE files to import functions used in external DLLs? Is this thunk table just a table containing 'Thunks' to other ...
2
votes
3answers
405 views

Strange Value in EXE header!

I've seen a strange value placed in EXE header 00000000 :4D 5A 90 00 03 00 00 00 - 04 00 00 00 FF FF 00 00 00000010 :B8 00 00 00 00 00 00 00 - 40 00 00 00 00 00 00 00 00000020 :00 00 00 00 00 00 00 ...
2
votes
3answers
644 views

Find out where PE file ends through PE header?

I want to append some binary data to the end of my executable. This is just to make my program into a single file. I tried using UpdateResource but I hit some bug inside it with my specific data, so I ...
2
votes
3answers
143 views

Executable sections marked as “execute” AND “read”?

I've noticed (on Win32 at least) that in executables, code sections (.text) have the "read" access bit set, as well as the "execute" access bit. Are there any bonafide legit reasons for code to be ...
1
vote
0answers
28 views

What sections are not loaded by the PE loader?

Are any sections at all not loaded by the PE loader? Or are every section specified in the section headers loaded? In ELF programs, it's section headers (Called program headers, or segments) that are ...
1
vote
2answers
66 views

how to allocate code in specific section for C++ program developed in MS VC++

I am trying to use this code to allocate a slice of code to a independent section: #ifdef _MSC_VER #pragma section(".evil",execute) #pragma code_seg(".evil") #endif #ifdef __GNUC__ static ...
1
vote
2answers
57 views

Loading PE Headers

Basically, what I am trying to do is to find last section of PE file. I have read PE specification very attentively, yet I can't discover where my code fails. PIMAGE_DOS_HEADER pidh = ...
1
vote
2answers
52 views

Replacing icon in Windows *.exe from open-source platform-independent Java code

First of all, this is not a duplicate of the very common question of making an EXE from Java classes. I do not need to do that. To solve NetBeans RFE #64612 without manual steps I need a Java (6+) ...
1
vote
3answers
80 views

What happens if I delete the Relocation table address from PE Header?

I'm analyzing some cracks, and one of them changed the Relocation Table address and size to 0. What the cracker was trying to achieve with this? To provide more information, the objective of the ...
1
vote
1answer
71 views

Reading the import table of a running process

Is there a way to read the the import table of another process? The function ImageNtHeader won't help me here, because it applies only to my process and not to the other process. I know I can read the ...
1
vote
2answers
69 views

Perl: Get minimum supported operating system for a binary

Is there a Perl command that lets me get the minimum supported OS for any given binary? You can manually get that information by running "link /dump /headers [binaryFile]" and looking for the ...
1
vote
1answer
43 views

Loading a module's import table

Is there a easy way to load a module's import table (the modules it imports itself) or I have to parse its PE header myself? I'm using C++ on windows.
1
vote
1answer
54 views

How to tell if a windows PE file is a console subsystem or a windows subsystem programmatically?

Basically I need a program that will sort windows .exe's from the console counterparts. A file scanner: SortExe(file exe) { if (IsPeWindows(exe)) { AddToList1(exe); } else if ...
1
vote
1answer
66 views

PE Format - IAT Questions

I'm trying to write an exe packer for windows. I've got some of the basics worked out so far. The part I'm up to though is reading the "BOUND IMPORT Directory Table" (or .idata section?), basically ...
1
vote
2answers
132 views

Windows PE executable file CRC calculation issue

Let me explain what I'm trying to accomplish. I want to know from inside my Windows executable file if it was tampered with after it was built. For that I decided to calculate the CRC value on its own ...
1
vote
1answer
57 views

efficiency of load-time vs. run-time dynamic linking

I just realized that a Windows binary can be completely serviced with just two imports: GetModuleHandle and GetProcAddress from KERNEL32.DLL. Every other external symbol, including LoadLibraryEx, can ...
1
vote
4answers
142 views

Possible? Modify loaded C# DLL?

I was just wondering if this was possible before I start working on it. I can inject and run C# code into a running process, as well as enumerate all the loaded .NET modules. Separately, I can edit a ...
1
vote
2answers
171 views

Detect a digital signature without WinVerifyTrust

I have a large number of EXE files and need to figure out which ones have digital signatures. Does anyone know if there is a way to check without access to WinVerifyTrust (they're all on a Unix ...
1
vote
2answers
224 views

Can anyone define the Windows PE Checksum Algorithm?

I would like to implement this in C# I have looked here: http://www.codeproject.com/KB/cpp/PEChecksum.aspx And am aware of the ImageHlp.dll MapFileAndCheckSum function. However, for various ...
1
vote
1answer
198 views

Loading a Kernel into Memory — How to Write the Loader Itself?

I'm working on making my own boot loader and kernel in D, and I've come across a stumbling block. Background: I'm writing everything from scratch. So the boot sector is in assembly. And I'm not ...
1
vote
3answers
198 views

exe checksum different after each recompile

So I'm trying to figure out how to get my exe to have the same hash code/checksum when it's recompiled. I'm using FastSum to generate the checksum. Currently, no code changes are made, I'm just ...
1
vote
1answer
102 views

VA and memory addresses

This should be a simple question: I know that VA = RVA + imagebase for a PE, now I'm trying to locate in a disassembler a string and happens to be located at 0042720E in the .text section. The ...
1
vote
1answer
120 views

Detecting DLL Code Splicing

I'm trying to write some functions to detect DLL code splicing. I take dll code splicing to mean modifying the bytes at the start of functions in loaded dll's, so that instead of jumping to the full ...
1
vote
2answers
392 views

Import Table (IT) vs Import Address Table (IAT)

I've been trying to parse/display the information in the Import Address Table (IAT) of a process after it is loaded and running. I understand API calls in programs jump to the relevant point in the ...

1 2 3