Mathieu Tarral
Mathieu Tarral
The main progress bar total count is the total of the files walked in the filesystem: ~~~Python count = sum(1 for i in walk_filepath_list(filepath_list, recursive)) check_output.enumerating_tasks_stop(count) ~~~ It's not representative...
The `LIEF` can be surprisingly slow on big binaries. One example: `pandoc` (`118 MB`)  upstream issue: https://github.com/lief-project/LIEF/issues/442
https://docs.microsoft.com/en-us/cpp/build/reference/cetcompat?view=vs-2017 https://techcommunity.microsoft.com/t5/windows-kernel-internals/understanding-hardware-enforced-stack-protection/ba-p/1247815
`│ /home/wenzel/local/pe/win7/System32/DriverStore/FileRepository/prnca00z.inf_amd64_ne… │ No │`
**Describe the bug** requesting the `load_configuration.security_cookie` can return an invalid value. **To Reproduce** Steps to reproduce the behavior: - download [cmd.zip](https://github.com/lief-project/LIEF/files/5850684/cmd.zip) and uncompress it to get `cmd.exe` (winxp executable -...
**Is your feature request related to a problem? Please describe.** the GUID is a combination of the multiple parts of the code view signature as well as the age. LIEF...
**Describe the bug** Lief fails to parse an MS-DOS executable file. **To Reproduce** 1. Download the file: [A0000260.zip](https://github.com/lief-project/LIEF/files/4853901/A0000260.zip) 2. parse it with the Python bindings 3. object returned is `None`...
**Describe the bug** Accessing `load_configuration.guard_flags` returns an unknown `GUARD_CF_FLAGS` enumeration value. **To Reproduce** - load a PE binary with lief - access `guard_flags`  **Expected behavior**...
**Describe the bug** Testing whether `GUARD_RF_FLAGS.INSTRUMENTED` is present with the `has` method on a `load_configuration` object returns a TypeError **To Reproduce** - load a PE with LIEF - run `b.load_configuration.has(GUARD_RF_FLAGS.INSTRUMENTED)`...