hot questions tagged pe-exports - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:08:48Z http://stackoverflow.com/feeds/tag?tagnames=pe-exports&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1569900/how-is-dumpbin-able-to-read-the-export-table-when-it-appears-at-a-file-offset-lar 1 How is dumpbin able to read the export table when it appears at a file offset larger than the file itself? David Brown 2009-10-15T01:47:05Z 2009-10-15T04:58:03Z <p>I'm writing a little PE reader, so I run dumpbin alongside my test application to confirm that the values are being read correctly. Everything it working so far, except for the export table.</p> <p>The file I'm testing with is a DLL. My application reads the file in as a byte array, which gets passed to my PE reader class. The values align with those output by dumpbin, including the RVA and size of the export data directory.</p> <pre><code> E000 [ 362] RVA [size] of Export Directory </code></pre> <p>The problem is, the byte array's size is only 42,496. As you can probably imagine, when my PE reader attempts to read at E000 (57,344), I get an <code>IndexOutOfRangeException</code>. dumpbin, however, has no such problem and reads the export directory just fine. And yes, the entire file is indeed being read into the byte array.</p> <p>How is this possible?</p> http://stackoverflow.com/questions/1563838/how-do-i-read-the-names-from-a-pe-modules-export-table 0 How do I read the names from a PE module's export table? David Brown 2009-10-14T01:37:22Z 2009-10-14T01:43:00Z <p>I've successfully read a PE header from an unmanaged module loaded into memory by another process. What I'd like to do now is read the names of this module's exports. Basically, this is what I have so far (I've left out a majority of the PE parsing code, because I already know it works):</p> <p><strong>Extensions</strong></p> <pre><code>public static IntPtr Increment(this IntPtr ptr, int amount) { return new IntPtr(ptr.ToInt64() + amount); } public static T ToStruct&lt;T&gt;(this byte[] data) { GCHandle handle = GCHandle.Alloc(data, GCHandleType.Pinned); T result = (T)Marshal.PtrToStructure(handle.AddrOfPinnedObject(), typeof(T)); handle.Free(); return result; } public static byte[] ReadBytes(this Process process, IntPtr baseAddress, int size) { int bytesRead; byte[] bytes = new byte[size]; Native.ReadProcessMemory(process.Handle, baseAddress, bytes, size, out bytesRead); return bytes; } public static T ReadStruct&lt;T&gt;(this Process process, IntPtr baseAddress) { byte[] bytes = ReadBytes(process, baseAddress, Marshal.SizeOf(typeof(T))); return bytes.ToStruct&lt;T&gt;(); } public static string ReadString(this Process process, IntPtr baseAddress, int size) { byte[] bytes = ReadBytes(process, baseAddress, size); return Encoding.ASCII.GetString(bytes); } </code></pre> <p><strong>GetExports()</strong></p> <pre><code>Native.IMAGE_DATA_DIRECTORY dataDirectory = NtHeaders.OptionalHeader.DataDirectory[Native.IMAGE_DIRECTORY_ENTRY_EXPORT]; if (dataDirectory.VirtualAddress &gt; 0 &amp;&amp; dataDirectory.Size &gt; 0) { Native.IMAGE_EXPORT_DIRECTORY exportDirectory = _process.ReadStruct&lt;Native.IMAGE_EXPORT_DIRECTORY&gt;( _baseAddress.Increment((int)dataDirectory.VirtualAddress)); IntPtr namesAddress = _baseAddress.Increment((int)exportDirectory.AddressOfNames); IntPtr nameOrdinalsAddress = _baseAddress.Increment((int)exportDirectory.AddressOfNameOrdinals); IntPtr functionsAddress = _baseAddress.Increment((int)exportDirectory.AddressOfFunctions); for (int i = 0; i &lt; exportDirectory.NumberOfFunctions; i++) { Console.WriteLine(_process.ReadString(namesAddress.Increment(i * 4), 64)); } } </code></pre> <p>When I run this, all I get is a pattern of double question marks, then completely random characters. I know the header is being read correctly, because the signatures are correct. The problem has to lie in the way that I'm iterating over the function list.</p> http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work 0 'Exports' naming convention - how does it work? PatrickvL 2008-11-20T22:16:27Z 2008-12-08T19:16:40Z <p>What rules apply to the name that ends up in the exports section of an PE (Portable Executable)? Roughly, I see names starting with an '_' underscore, a '?' question mark or an '@' at-sign. What do those mean, and what about the rest of the name?</p> <p>Also - How can I reverse the naming convention into something more usable?</p>