-
I had an instance where modulePtr was -1 when entering FromUnmanagedPtr(), which threw an exception.
I added the following code to ReadAssemblyDebugInfo()
PeHeaders^ peHdrs = PeHeaders::FromUnmanaged…
-
In FreeBSD we build our UEFI loader by linking an ELF object, and using ELF Tool Chain's objcopy to convert that to a PE EFI binary, using `--output-target=efi-app-x86_64`.
Invocation:
```
SOURC…
-
There are various properties of the [PEHeader](https://docs.microsoft.com/en-us/dotnet/api/system.reflection.portableexecutable.peheader?view=net-5.0) class which are not documented. Most of these are…
-
Hi there,
I'm having real trouble getting a pointer to the content of a section?
peHeader().getPointerToRawData() returns an offset within the file, but I can't work out how to get the actual buffer…
-
This just is to note that Binskim combability with .NET ReadyToRun and self-contained could be looked into.
with `p:PublishReadyToRun=true` and `--self-contained`
With PublishReadyToRun the sectio…
-
Unpacking of [this](https://www.virustotal.com/en/file/a7a112bae60ba29dfc89f681f8106bb5c340fa734631eff6141d336af07e9b7f/analysis/) file crashes.
Command:
```
retdec-unpacker a7a112bae60ba29dfc89…
-
PEHeaders are currently decoded using (customized) BinaryReader while the rest of the PE file is read using blob readers. We should use blob readers everywhere to avoid doing things in two different w…
-
_From [sean.gillespie.32](https://code.google.com/u/115392754035860330392/) on October 06, 2014 14:51:35_
Can the following features be added to file data?
1. Support for all 8 timestamps associated…
-
```dusk
PEHeader :: struct {
machine: u16
number_of_sections: u16
time_date_stamp: u32
pointer_to_symbol_table: u32
number_of_symbols: u32
optional_header_size: u16
…
-
In order to learn how to use the loadlbrary library with the goal of accessing a commercial win32 library from linux, I started off with a simple hello world example.
Here are my files:
* say-he…