You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you have any plans for Linux and OSX ?
Maybe we can help for that.
But need to change it as a interface and abstractions.
we can use plthook https://github.com/kubo/plthook
that works on osx and linux also.
But is linux and osx using standard crypto so files?
The text was updated successfully, but these errors were encountered:
In Linux injection is harder because you only can ptrace processes spawned by you process otherwise you need to have sudo permission and dirtycow may work for older distros
in macos there is thread_create_running that seems to be an equivalent to CreateRemoteThread in Windows
Also Windows hooking libraries (inline hooking) like MinHook or MsDetours can be used in Linux and machos because the instruction set is the same , however you will need to replace VirtualAlloc and VirtualProtect with mmap and proper flags
Or iat hooking is more than enough because I think chrome uses exported ssl_write function on Linux and maybe on machos I am not sure
I have some plans for Linux (first) and Mac (later) but I did not have time. Refactoring (porting to Linux) is not an issue, the issue might be the process injection, but I will do some research on this area.
Do you have any plans for Linux and OSX ?
Maybe we can help for that.
But need to change it as a interface and abstractions.
we can use plthook
https://github.com/kubo/plthook
that works on osx and linux also.
But is linux and osx using standard crypto so files?
The text was updated successfully, but these errors were encountered: