diff options
| author | jakob <jakob@memeware.net> | 2017-09-09 15:41:20 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-09-09 15:41:20 -0400 |
| commit | 81e47a4dba4a44624ec56708c1655206ae19cbfc (patch) | |
| tree | 0519728c9f679a2959d0e25e502f2181256898e1 /README.md | |
| parent | 915e6fb7fcc9f7540b1123128eb7f8cf892c1288 (diff) | |
Implemented more syscall wrappers.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -33,9 +33,10 @@ routines. This did not work, as the process of loading an ELF library into memory is far more complicated than calling mmap(2) on the file. The second iteration also involves injecting code into the inferior process, but -instead maps the Linux runtime linker into memory to make use of its existing -GOT/PLT setup functionality. This involves injecting auxiliary vectors onto the -stack in an attempt to trick the RTLD. +instead maps the Linux runtime linker into memory. This is difficult, as it +means mapping it the way the kernel would. This involves injecting auxiliary +vectors onto the stack in an attempt to trick it into loading the desired +libraries. ## Important Resources |