portable-executable
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 tab[详细]
2022-12-31 13:55 分类:问答Is .NET support for Win32 Code Interop?
I need the InterOp Win32 code (unmanaged Win32 DLL\'s and EXE) with .NET. I need to call Win32 unmanaged code (DLL exported functions) at runtime knowing the data types in Win32 signatures and to pass[详细]
2022-12-31 10:26 分类:问答Portable executable structure explanation
I am learning the structure of a portable executable. I went th开发者_如何学Crough the MSDN article but I am a bit confused about it. I have some confusion with their precise stucture and its function[详细]
2022-12-30 22:16 分类:问答Change imported Dll name?
In a Po开发者_StackOverflowrtable-Executable ,we can change the imported dll name ,by editing PE file ,[详细]
2022-12-28 02:10 分类:问答How to check whether a PE file (DLL,EXE) is a COM component?
I need to write a stub module which, when given a PE (DLL/EXE) as input, will determine whether it is a normal Win32 DLL/EXE or COM DLL/EXE. I need to determine this programatical开发者_运维问答ly.[详细]
2022-12-27 20:19 分类:问答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:[详细]
2022-12-25 05:56 分类:问答Why is my PE file invalid?
I already asked a similar question, \"PE Header requirements\", but I\'m not really satisfied with it\'s answer.[详细]
2022-12-23 19:40 分类:问答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.[详细]
2022-12-23 06:04 分类:问答When does the PE file format IAT function addresses get set
I google\'d a bit and read http://en.wikipedia.org/wiki/Portable_Executable but i can\'t seem to find when the Import adress table add开发者_开发百科resses are written. Does it happen on compilation?[详细]
2022-12-22 03:20 分类:问答How can Find all dependencies of an application?
In a Portable-Exe ,there is possibilities to find the imported section ,and also all imported dll names (using import descriptor).Here Ex, One application Exe has many imported dlls(kernel32,advapi,us[详细]
2022-12-19 00:49 分类:问答