|
|
|
|
|
by cassepipe
637 days ago
|
|
The main reason for using dlsym instead of calling fork directly is to make it harder for an ‘attacker’ to detect or set breakpoints on the fork function, thus obfuscating the anti-debugging mechanism. You have to more checks before being able to understand why you cannot attach the debuger. You may still think that mode could be still able to catch a new child process but apparently people have tried and the answer is no |
|
Not sure I got this. IIUC there is a link between the fact that we used dlsym and the fact the child process is not catched by lldb in the follow fork mode?