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").
0
votes
0answers
8 views
Compress Win32 binary with UPX in Ubuntu 12.04
I'm trying to compress notepad.exe using UPX in Ubuntu and getting the following error:
upx: notepad.exe: CantPackException: can't pack new-exe
Anyone know why?
Detailed Description:
I copied ...
0
votes
1answer
11 views
how to modify exe to make it console window hidden?
I have a program. The program had open a console window to display logs when it is started. I dont like this window, but no source code. So, how to hide this console? such as modify exe file?
0
votes
1answer
20 views
Export PE explorer results
I need to use the result of PE Explorer (http://www.heaventools.com/overview.htm) in java project.
Is there any way to run the app from cmd and export it result (to txt file or any other way)?
0
votes
1answer
30 views
Void pointer void type cast function call?
Ok this is odd. It's the first time I've seen such a line of code.
Basically this calls the entry point into an application once you've specified an offset (address) from a program's PE header.
As ...
0
votes
0answers
40 views
Linking to create a PE32 executable with Cygwin
In past, I have made a basic kernel in Visual Studio. This makes a PE format executable, which my bootloader has no problems loading. My boot loader loads the kernel to 0x100000, then reads the PE ...
0
votes
0answers
37 views
While Reading Section of a PE file, SetFilePointer does not works properly
Ok what i was trying to do is to print all data of a section of a pe
#include<stdio.h>
#include<Windows.h>
int dth(int dec)
{
return 0;
}
int main()
{
IMAGE_NT_HEADERS peHead;
...
-3
votes
1answer
38 views
Searching for opcode bytes in PE file [closed]
I have a task of searching for opcode bytes in a PE file and checking whether a specified opcode byte sequence (constant and predefined) is present in the PE file. I have come across numerous examples ...
0
votes
1answer
84 views
c++ cli try block is not letting file stream open big files
I am using c++ cli. I am trying to scan files to see if they have been packed by a pe packer.
here is the problem
if I put my code not in a try block it will scan any file size 20mb or more, but the ...
1
vote
1answer
18 views
Running multiple executables linked to 0x400000
I'm interested in operating systems topic and I have a dummy question. Standard PE executable files are linked to 0x400000. My question is how can operating system load multiply executables with same ...
0
votes
2answers
38 views
Display name of many to many relation in template
I try to display the names of fields from a Model in my template.
This works fine with any type of fields except ManyToManyField.
I use this function in my models.py to return all fields.
def ...
-2
votes
2answers
118 views
Query Dll layout information
I want to query the following information from a DLL in memory:
Exact address of entry point (DllMain?!)
Address and size of the code section of the Dll
Addresses of entry points of each EXPORTED ...
0
votes
0answers
40 views
How to read Import Directory Table in C
I'm trying to build a PE viewer in C++ and it seems to crash if i try to output the names of the libraries in the Import Directory Table. It seems that I am not getting the correct pointers for the ...
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? ...
-3
votes
1answer
66 views
Running multiple programms in one process? [closed]
I have a running one process and I want load another exe file (another program) in current process (multiple programms in one process). Is it possible? Can anybody help me? Thanks.
1
vote
1answer
84 views
Why doesn't UPX work for .NET executables?
If .NET executables are PE Files, why all packers like UPX "corrupts" it?
1
vote
1answer
62 views
howto neatly modify a PE's datssection
I'm writing a dll in 'C/C++ - Win32API' environment.
I have some constant variables (all are DWORD values and LPWSTR/LPSTR strings) that I have to enable the user modify.
what I'm looking for is ...
2
votes
1answer
72 views
Windows PE detemine entry point virtual address
I am examining a Windows executable with 'PE Editor' which displays the Entry point as 0x15B8, how do we determine this entry point's address as a virtual address?
0
votes
1answer
44 views
#pragma section and attributes
Just trying to make a new section and setting up his attributes with #pragma return this warning:
warning C4330: attribute 'write' for section '.mysec' ignored
Simple code:
#include ...
0
votes
1answer
60 views
How to modify the import table of an assembly program compiled by flatassembler
I am testing an assembly program that is compiled by flatassembler, and it needs to modify the import table, so when I run objdump I can see which external functions the program is trying to call.
...
1
vote
3answers
74 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
0answers
31 views
PE Reading invalid cast
Can someone explain why it won't allow me to do the following cast:
memcpy(&INH, (void*)((DWORD)ModuleBuffer + IDH.e_lfanew), sizeof(INH));
I need to do cast from char* to DWORD so that I can ...
0
votes
1answer
51 views
Reading number of sections of an executable fails
Somehow the following code outputs "Number of sections: 57344" which is clearly incorrect. Can anyone give me a hint what I am doing wrong?
#include <windows.h>
#include <iostream>
...
1
vote
0answers
118 views
Runtime decryption (PE file packer)
I've been writing my own PE file packer and I'm stuck at decrypting the code section. So far I've managed to add a new section, crypt the code section, change the entry point so that it runs first my ...
0
votes
2answers
90 views
Easy to use debugger for Portable Executable malware
I am looking for recommendations in each of the categories
free
charged
for easy to use debuggers fit for Portable Executable (native/non-.NET) malware analysis.
0
votes
1answer
195 views
IAT Hooking ExitProcess on own process
I`d like to ask a question regarding IAT hooking on my own process .
I am currently trying to hook ExitProcess so it would run a certain function before any ExitProcess call, and I am facing some ...
1
vote
1answer
145 views
How to place a variable at a given absolute address in memory (with Visual C++)
How can I statically tell Visual C++ to place a global variable at a given absolute address in memory, like what __attribute__((at(address))) does?
-1
votes
1answer
114 views
PE loading into the memory [closed]
I have a question about windows PE loading process :
When we open an executable image the PE loader prepares the environment to the PE file to work
what are the steps of this process (briefly)?
and ...
0
votes
1answer
185 views
PE file section names
According to this article http://msdn.microsoft.com/en-us/library/ms809762.aspx?ppud=4
we can name the PE sections with custom names.
So in a PE file which its creator has replaced the sections names ...
0
votes
1answer
98 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
0answers
32 views
Using cryptlib to handle certificate items located in Windows Portable executable file
I must extract the different items of the certificate (tree) out of Windows Portable Executable image files, but I may not use the Win32 API to accomplish this. I can access the binary content of the ...
-4
votes
2answers
82 views
How to run an exe in linux?
suppose I have a .exe file and i want it to run in Linux without using wine tool.
i want to convert PE->ELF.
can anyone help how to programatically do this?
Thanks,
Sujitha.kv
1
vote
1answer
231 views
How to determine RVA of AddressOfEntryPoint from PE Headers Using Dumpbin
I have been scouring the web trying to find an answer to this question, but it seems to be eluding me. I have consulting the following sources before asking this question.
...
0
votes
1answer
72 views
Is VS_VERSION_INFO a ResourceDirectory/ResourceEntry and does it have a name or Id?
I am trying to fix an issue with ilrepack a clone of ilmerge. However, I am having trouble understanding a fundamental concept of the PE file format to fix it "correctly".
All the binaries I am ...
-1
votes
1answer
345 views
Exe Imports dll ordinal number to DLL export function name comparison?
While loading any .exe into my command line program. I get this output:
http://www.privatepaste.com/22dc18e88d/output
As you can see from the output. I get 21 imported dlls.
It imports wsock32.dll ...
0
votes
1answer
110 views
PE File .text Section Size
I wrote code and compiled it to exe, now the .text section need to be larger ,
If I have the code and I want to allocate more space in the .text section from code before compiling it , how to do so ...
0
votes
1answer
94 views
Taking .exe modules Import Table ordinal and finding the import modules function name?
So I load up paltalk.exe as a argument into my c++ command line program and I get this output:
[Walk_Imports]: Imported DLL [0] WSOCK32.dll
--------------------------------------------------
...
0
votes
0answers
30 views
Are the Ids in Mono.Cecil.PE.ResourceEntry.Id well known and per resource type?
I am trying to solve an issue with ilrepack, which uses cecil.
Are these Ids are well known and related to the type of resource embedded. I'd like to know where in the MSDN they are documented as ...
0
votes
1answer
133 views
PE file add null bytes to .text section
I have an exe that I need to increase the size of its .text section .
used LORDPE to alter the Virtual and Raw address, but having a hard time where to append the null bytes ? Do I need to reallocate ...
0
votes
1answer
55 views
Same source but different binaries
I have a WinCE6000 OSDesign but for historical reasons there are modifications and extra modules under folder which MS does not recommend. So we started to move everything which is not part of ...
0
votes
1answer
266 views
Getting the offset to .text section code PE file format? VirtualAddress, PointerToRawData?
I've been trying to do this for about two days, with no success. I have been reading over many PE file format tutorials to no avail.
I map a 32 bit executable into memory via CreateFileMapping which ...
1
vote
1answer
122 views
How to get VC complier version from PE file programmably?
The CFF Explorer is able to detect the VC complier version from PE file.
it shows "Microsoft Visual C++ 8" for my exe file which is staticlly linked to libCMT(no dll dependency).
How is that done? ...
0
votes
3answers
74 views
Reading Managed PE DLLs
I want my application, written in ocaml, to read a managed DLL and retrieve the class definitions contained therein. Where can I find the public documentation / example code on how to do it?
[edit:
...
2
votes
1answer
130 views
Loading a PE in memory for emulation
I am currently developing a code emulator more for fun than for anything else, using libemu as the core for this emulator.
The only thing that I really want achieve is to load an entire PE into ...
1
vote
1answer
78 views
How to extract PE-Header Info in java project?
I need to extract some fields from Portable Executable header and use their values in a java project. How can I combine the different plugins that exist (e.g., PE-Explorer, PE-Info) in my Java ...
2
votes
1answer
236 views
Where can I find a reference for what every bit of the CorFlags value means?
I'm messing around with some rather low level things and trying to determine why I get different outputs with the CorFlags.exe utility. For reference, the outputs are as so:
$ corflags test2.exe
...
7
votes
2answers
305 views
PE file opcodes
I'm just in the process of writing a PE file parser and I've reached the point where I'd like to parse and interpret the actual code within PE files, which I'm assuming are stored as x86 opcodes.
As ...
0
votes
1answer
130 views
In a compressed PE must the virtual size of the data section match the raw size?
In working with a compressed PE (Windows console EXE) that has a file alignment and section alignment of 4 bytes, I notice that if virtual size and raw size of the sections match, then the program ...
0
votes
2answers
125 views
Add an entry to the import table of PE
I'm looking for a command line program to add an entry to the import table of a PE file.
My goal is to add a new imported function from an external DLL to my EXE, and then with ollydbg insert new code ...
1
vote
2answers
119 views
How to programmatically inject parameters/instructions into a pre-built portable executable
I have two executables, both manually created by me, I shall call them 1.exe and 2.exe respectively. First of all, both the executables are compiled by MSVS 2010, using the Microsoft compiler. I want ...
0
votes
1answer
286 views
PE File Format Section Add On
I'm confused on why they use - 1 here. Can someone explain what this line is doing in very very very very low level detail please... Not o its subtracting 1 structure.... I need to know more...about ...
