Rdbo

Results 59 issues of Rdbo

Example: ``` src/ win/ handle.c bsd/ ptrace.c linux/ ptrace.c unix/ ptrace.c ``` Unix will compile for both Linux and BSD. Linux will compile for Linux (android also, bc android uses...

LIEF already checks if the file is an actual PE/ELF/etc in their `Parser::parse` functions. No need to check twice.

After most of the current issues (mainly https://github.com/rdbo/libmem/issues/26) have been solved, there should be a full code review to find flaws in the code before proceeding.

I'm not sure how possible this is, taking in consideration that OpenBSD has numerous mitigations to avoid exploitation, memory hacking, and other types of security issues. It might be worth...

The tests on FreeBSD are failing during the hooking of `some_function` in `test1.c`. The reason for that is not clear yet.

Certain things done with the Windows API, like module enumeration, is duplicated across different functions. This could be abstracted for example, into a private API `_LM_EnumWinModules` or something, which would...

One way that seems possible to achieve this is by using a `union`: ```c typedef struct { // ... union { lm_detail_x86 x86; lm_detail_aarch64 aarch64; // ... } detail; }...