Romain Thomas

Results 187 comments of Romain Thomas

I disagree, "GROUP_ICON" are exposed here: https://github.com/lief-project/LIEF/blob/79a5d0e93be82878efdb36282798a34950bce893/src/PE/ResourcesManager.cpp#L587-L611 Feel free to re-open it.

Ok I see. From my point of view it's not a priority as you can save the icons by iterating on the ``icons`` attribute. For the modification part, It would...

Yes it's because the exception it catched here: https://github.com/lief-project/LIEF/blob/9d93cc5ec4df6fc71b74497971dbb95d688cc849/src/MachO/Parser.cpp#L123-L137 I was thinking about an API to handle parsing error *programatically*. The idea is to register parsing errors the the Parser...

Does sections are mandatory in a MachO File ?

I'm not sure to understand your question

I suggest to not add an attribute since it would be a duplication of the other attributes. Instead we could have a method let's say ``raw_header`` that would return the...

Yes it's planned but don't know yet if it will be available for the ``v0.8.0`` or after

Here is a workaround: ```cpp #include "frida-core.h" extern "C" { extern int _frida_setfilecon(const char *path, const char *con); } frida_selinux_patch_policy(); _frida_setfilecon("libpath", "u:object_r:frida_file:s0"); ```

Ok I'll do the PR