Tagged Questions
The portable-executable tag has no wiki summary.
7
votes
2answers
3k views
VA (Virtual Adress) & RVA (Relative Virtual Address)
A file that is given as input to the linker is called Object File.
The linker produces an Image file, which in turn is used as input by the loader.
A blurb from "Microsoft Portable Executable ...
6
votes
6answers
454 views
Save data in executable
I have a portable executable that saves data to a file in the same folder as the executable. Is there any way that I can save data into the executable itself when I close the app?
This maybe weird, ...
5
votes
5answers
1k views
Clarification on Binary file (PE/COFF & ELF) formats & terminology
I'm confusing little in terminology.
A file that is given as input to the linker is called Object File.
The linker produces an Image file, which in turn is used as input by the loader.
I got ...
4
votes
4answers
288 views
Compiling C++ into portable linux binaries
Ok, this question is about portable as in no dependencies (i.e. "I can put the binaries in a USB key and bring it with me everywhere, e-mail them to friends etc").
I have heard of static linking but ...
4
votes
1answer
860 views
How do I read the PE header of a module loaded in memory?
I'm experimenting with memory access in .NET. At the moment, I have a managed program that starts an unmanaged process and retrieves the BaseAddress of one of its loaded modules (a DLL). What I would ...
3
votes
1answer
171 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
3answers
210 views
DLL dependencies for portable C/C++ application for Windows
I want to create a light-weight portable application in C/C++ for Windows. I don't want to statically link everything because I want to keep the size of exe as small as possible. I also use Dependency ...
3
votes
1answer
215 views
portable-executable for cmake
I am developing on a windows machine for which I don't have administrative privileges.
I would like to use cmake to compile. I cannot simply download and install this due to administrative ...
3
votes
3answers
1k views
Parsing plain Win32 PE File (Exe/DLL) in .NET
I need to parse plain Win32 DLL/Exe and get all imports and exports from it to show on console or GUI (i.e. Win Forms). Is it possible to parse Win32 DLL/Exe in C#.NET by reading its export/import ...
3
votes
1answer
143 views
What is “Alignment” field in binary formats? Why is it needed?
In ELF file format we have an Alignment field in Segment Header Table aka Program Header Table.
In case of Windows PE file format they take it to next level the Sections have two alignment values, ...
2
votes
1answer
50 views
using F2Py through Python code
How to use F2Py through Python instead of calling it in command line?
I have a portable Python in use, am not able to install Python. Thus it is not possible to install packages except those work if ...
2
votes
4answers
125 views
Is there an open source equivalent of Linux' /lib/ld-linux.so for Windows?
Is there an open source program for Windows that offers the same functionality as Linux' /lib/ld‑linux.so.2?
2
votes
1answer
164 views
What is the Entry Point RVA in a .Net PE file?
Microsoft's documentation for the "Entry Point RVA" field in the PE optional header standard fields (section 25.2.3.1) states the field should be:
RVA of entry point, needs to point to bytes 0xFF ...
2
votes
2answers
304 views
appending data to an exe
This question extensions from one of the answers to my earlier question: how to save user registration in the exe... (C#).
The idea itself is still very new to me, but it seems plausible. My first ...
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
2answers
232 views
How do I extract Export Table from PE standard (.exe)
I've managed to successfully extract all desired information from the "Optional Header". All those contained within the "Standard" fields and "Windows-specific" fields. However when it came to the ...
2
votes
4answers
798 views
How should I launch a Portable Python Tkinter application on Windows without ugliness?
I've written a simple GUI program in python using Tkinter. Let's call this program 'gui.py'. My users run 'gui.py' on Windows machines from a USB key using Portable Python; installing anything on the ...
2
votes
2answers
159 views
How are portable apps called by the system when needed (eg file association)?
There are a few implementations of portable apps in Linux, but it seems that all Mac OS X apps are portable. Since Mac OS X completely embraces this model, I'm assuming they already have a solution to ...
2
votes
3answers
207 views
Is Tinyperl dead?
I'm looking for a light and portable perl release and found this one, but it seems there is no activity since 2003, which could be ok for me but I want to know if there is known issues.
So, if you ...
2
votes
5answers
62 views
Executing a third-party compiled program on a client's computer
I'd like to ask for your advice about improving security of executing a compiled program on a client's computer. The idea is that we send a compiled program to a client but the program has been ...
2
votes
3answers
313 views
Sandbox Virtual Machine for an Application (concept)
I'd like to write a sandbox virtual machine for executing a compiled program. My goal is to isolate that program from the rest of operating system and control its execution so that it can't do ...
2
votes
1answer
399 views
dump pe file from memory to disk
I want to dump a process image on the disk and then execute it
i listed the process modules
i used readprocessmemory to read the memory range of the exe
but when i try to execute it fails.how can ...
2
votes
2answers
372 views
Microsoft's ASLR is weird
I watched a ASLRed dll images's based address for 32bit Process.
It's not a fully randomization. It just randomizated 1/2 probability.
For example, once I load a dll then the image is loaded on ...
2
votes
1answer
85 views
What are the files from the 'make' of git that I actually need to run git?
I'm trying to "portablize" git, so I want to send the required executables from the make process of git to my hosted web server. Can I do that? Do you think the executables will work?
2
votes
3answers
1k views
how to change the default exe icon in C/C++?
I want to change the default exe icon to someother icon in c/c++ do anybody know how to do that?Please help guys...
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
900 views
A single executable for 32 and 64 bit (Without WOW64)
I'm writing a small utility that should run on both 16\32\64 bit systems.
My old utility ran both on 32 and 16 bit by compressing the 16bit version to the 32 bit and applying the /stub switch in ...
2
votes
3answers
643 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
4answers
270 views
How Windows Portable Executables are portable across machine architecture
Is Windows Portable Executables are really portable across machine architectures? If so how it works? If not then what does "Portable Executable" mean or which part of executable is portable?
Thanks, ...
2
votes
2answers
429 views
Binary Reproducibility in Visual C++
Is there a way to force the same code to produce the same binary in Visual C++? Turn off the timestamp in the PE or force the timestamp in the PE to be some fixed value, in other words?
1
vote
3answers
49 views
C++ codeblocks ide errors?
I have codeblocks installed on an HD, the compiler works fine. The reason its on an HD is because my school doesn't like people installing things onto the computers...
main.cpp works fine. If I ...
1
vote
1answer
65 views
What's the easiest way to generate a PE32+ executable?
I'm currently working on a library that reads PE32/PE32+ binaries, and I need to generate a sample PE32+ binary so that I can read the headers as part of the library tests. Assuming a simple "Hello ...
1
vote
2answers
215 views
Make windows form application portable
I have created a windows application and I have published it by publishing wizard.
Now I want to make it portable so that the end user does not need to install the application.
The application is very ...
1
vote
1answer
152 views
Exe produced with VS 2010 and VS 2005 loaded with a different offset
Loading process image file different between VS 2005 and VS 2010
We have a post build step which modifies (patches) some locations in the executable. The patching process loads the process in the ...
1
vote
1answer
281 views
How do I get the sha-256 hash of a section which contains code in a Portable Executable file, in Delphi?
I would like to get the sha-256 hash for a section which contains code(.text, CODE) in a Portable Executable file, in Delphi.
So far, I've tried to get the start and end address of the section to ...
1
vote
1answer
242 views
mingw gcc compilation and gdb debugging
I think how gdb works on Windows under mingw?
When compile with mingw C into .exe, it creates PE file, right (so Windows can run it).
But then you want debug the .exe with gdb. This gdb knows to ...
1
vote
1answer
346 views
Creating a system-independent minimal Python footprint in Linux
My intention is to try to compile such a Linux Python minimal base, that is totally portable, and system-independent (meaning that it doesn't even interacts with the system-installed Python base at ...
1
vote
3answers
873 views
How to programatically read native DLL imports in C#?
How can I programatically analyze a native DLL to read its imports?
[EDIT: my original question looked like the following, along with a huge chunk of defective code. Please see answers below for ...
1
vote
2answers
422 views
Questions Regarding DLL Loading in a Process Address Space
Well, I read several of Matt Pietrek's articles on Portable Executable (PE) files, like:
An In-Depth Look into the Win32 Portable Executable File Format, Part 1 and Part 2
MSJ article on linkers
MSJ ...
1
vote
1answer
189 views
Compiling a portable Perl and including a CPAN module
I am trying to compile a portable version of perl containing a CPAN module, specifically the YAML module. I intend to be able copy this portable version into my home directory on numerous Redhat Linux ...
1
vote
1answer
90 views
executable sections flag
The sections of Portable Executable files are tagged with differents flags. Can someone explain the difference between IMAGE_SCN_MEM_EXECUTE (the section can be executed as code) and ...
1
vote
1answer
60 views
why do some executables and libraries reference PDB files and some not
During the development of my own PE analysing tool, I noticed that some exe and libraries (e.g. Adobe Reader) reference a Debug PDB file. Some do not reference any PDB file at all. Some with the full ...
1
vote
3answers
276 views
How to map a file offset in an EXE to its PE section
I've opened up a program I wrote with ImageHlp.dll to play around with it a little, and I noticed that there seem to be large gaps in the file. As I understand it, for each PE section, the section ...
1
vote
3answers
243 views
Portable executable structure explanation
I am learning the structure of a portable executable. I went through the MSDN article but I am a bit confused about it. I have some confusion with their precise stucture and its functionality.
Can ...
1
vote
4answers
380 views
Question about COFF Externs
The Microsoft PE / COFF SPEC (v8, section 5.4.4) says that when a symbol has:
A storage class of IMAGE_SYM_CLASS_EXTERNAL
And a section number of 0 (IMAGE_SYM_UNDEFINED)
It's "value" field (in the ...
1
vote
1answer
767 views
How to convert PE(Portable Executable) format to ELF in linux
What's the best tool for converting PE binaries to ELF binaries?
Following is a brief motivation for this question:
Suppose I have a simple C program.
I compiled it using gcc for linux(this gives ...
1
vote
2answers
239 views
how can i hook a Api function from system dll?
i want to redirect the function calls of the real function calls from the system dll.i am working with portable-executable ,i can get IAT of the system dll(advapi32.dll),here the function address ...
1
vote
1answer
220 views
How can I find the exported function name from ordinal (export by ordinal)?
I trying in export directory ,i got the exported function name(export by name) by browsing the directory with help of addressoffnnames property ....Here ,Example in comctl32.dll (api) total fn names ...
1
vote
2answers
109 views
How to add PE metadata?
Windows PE (portable executable) files contain metadata that appear in the file's Properties dialog under the Details tab. It appears that arbitrary metadata can appear there.
What I'd like to do ...
1
vote
1answer
221 views
How to get the PEKind and ImageFileMachine of a AMD64 assembly from a x86 .NET Application (and viceversa)?
I'm writing a installation validation tool for our product and I need to retrieve some PE information from several installed assemblies. No matter what the platform our product is installed on, we ...