0
votes
0answers
27 views

Changing EXE File Section Characteristics during runtime

First of all is it possible to have multiple .bss and .data sections in the same PE EXE? When yes, is there an "easy" way to instruct the linker which variables should be allocated to which section? ...
1
vote
3answers
73 views

Data in executable file are on weird position

Few days ago I've started playing with PE format. I've done small PE loader which is able to load sections to memory according to their virtual addresses. For example I have section .text on virtual ...
0
votes
1answer
96 views

Scriptable PE resource editor

I need a tool that's commandline and which supports retrieving version information from the resources of a PE executable and also patch the binary with a new version. What I need to do is to automate ...
0
votes
1answer
276 views

Image base address of foreign exe/dll or WTF?

I have a foreign process (exe-file DllProj.exe is running), that has SampleDll.dll linked to it (implicit linking). I can find the base address of the linked dll with the help of my function ...
4
votes
3answers
2k views

How to check if an executable or DLL is build in Release or Debug mode (C++)

I need to find the mode exe/dll was build looking at its headers. [edit] Using c++ only without any external tools.[/edit] There is an old discussion how to determine dll was built in Release or ...
1
vote
2answers
352 views

Data in the data section of an exe

I compiled the following four lines of code into a file called foo.exe, hoping that the value of the global variable 'i' (i.e, 9) would go into the data section of foo.exe int i = 9; int main() { ...
0
votes
1answer
330 views

PIMAGE_SECTION_HEADER VirtualAddress and PointerToRawData fields

What is the diffence between the VirtualAddress and PointerToRawData fields of IMAGE_SECTION_HEADER structure (declared in WinNt.h) in a Portable Executable?? Why do we have these two diffrent fields ...
1
vote
3answers
517 views

What does MapViewOfFile return? [duplicate]

Possible Duplicate: Why won't the loader load at the desired location "MapViewOfFile", does this function map a file into the virtual memory and return the base address of the mapped ...
0
votes
1answer
117 views

section header location in an exe

Does the following code indicate that in an exe, the section header comes after the section itself, or am I missing on something? Also the value of lpFileBase is diffent from the value held in ...
0
votes
1answer
98 views

Loading an image at a virtual address 0X00000

Why does the loader load any exe at a virtual address which is basically 0X10000 or, in most cases 0X400000?? Isn't it supposed to load it at address 0X00000, afterall the address is virtual and each ...
0
votes
1answer
102 views

Why won't the loader load at the desired location

It is said that sometimes the loader loads the exe at an address which is different than the one assumed by the linker. What all could be the cases when loader does so??
0
votes
1answer
60 views

Printing out the name of the first entry in the imports table of a PE file

I am trying to print out the name of the first entry (which I suppose is user32.dll) in the imports table of a PE file, but the program terminates unexpectedly saying "cannot read memory", can someone ...
1
vote
2answers
341 views

Printing out the names of implicitly linked dll's from .idata section in a portable executable

I am trying to write a code which is supposed to print out the names of all the imported dll's in the exe by using the 'name' field of the IMAGE_IMPORT_DESCRIPTOR structure in the .idata section of ...
6
votes
3answers
450 views

Remove DOS stub from a PE file

Is it possible to remove the DOS stub and the DOS header from a PE file??
0
votes
2answers
85 views

Unexpected output

The following code is supposed to print out the names of all the sections in the specified exe (c:\linked list.exe in this case), but it produces some bizzare output. Can someone please help me figure ...
0
votes
1answer
275 views

Difference between offset and an RVA

What exactly is the diffrence between a relative virtual address and an offset from the base of a file??
1
vote
1answer
569 views

Address of entry point

I am using the following code to find out the address of the entry point for a file called linked list.exe, but it outputs a big number of the kind 699907 whereas the size of the file itself is only ...
5
votes
2answers
391 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
444 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 ...
0
votes
1answer
370 views

How to find offset of Dword where Address Of entry point of an executable is stored

There are disassemblers like CFF explorer which display the AddressOfEntryPoint of any executable along with the offset where it is stored. I know how to find that ( ...
0
votes
0answers
161 views

DLL Searching and Loading on Windows7

Nowdays I've met a strange problem about DLL searching and loading on Windows7: I'm sure that I set the correct Path Environment Variable such as : ......;C:/SomeProblem/Bin and under the ...
2
votes
1answer
143 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 ...
0
votes
2answers
652 views

Dynamic Forking of Win32 EXE

http://www.security.org.sg/code/loadexe.html http://pastebin.com/QFHASx75 I've compiled this but can't get it to work properly, It runs fine and shows no errors in the console console output: ...
1
vote
2answers
521 views

Making space for added bytecode (machine code) in a Windows PE executable

This question is related to reverse engineering / binary patching on Windows. I need a free tool exist to allow me to add assembler (or machine code) to an already built executable. I am not talking ...
1
vote
1answer
781 views

Is “IMPORT ADDRESS TABLE” of PE per dll or per exe?

Does anyone know whether the 'import address table' in the PE executable format on Windows is 'per dll' or 'per exe'?
0
votes
1answer
839 views

About the relocation table in DOS EXE header

From the above we can see count of relocation table entries is 0(there is no reloc item), but offset of first reloc item shows that the reloc item actually exists. The definition of DOS EXE Header ...
1
vote
2answers
997 views

About ImageBase of .EXE in windows

I just learned ImageBase is specified in PE format,and OS will load it to the exact position for .EXE , then comes the question: what if two .EXE is requiring the same ImageBase location?
1
vote
2answers
56 views

the executed section

How can I retrieve in exe file point where IP is pointing to on the beginning ?? Is it pointing always on the start of .text segment ?
1
vote
1answer
597 views

Modifying .rdata unicode strings from windows PE files

I have been looking for a way of modifying static strings stored in Windows .exe files in the .rdata section, however I haven't found a real way to do so yet. The whole thing is too complicated to ...