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
I'd like to be able to build the target crate as a cdylib (shared library).That's a bit specific use case but I'm trying an integration test for https://github.com/dzervas/frida-deepfreeze-rs.
My usecase is that I want to test both library injection and library proxying. So:
I want to build a binary (tests/mybin) that depends on a shared library (tests/mylib). I want to make sure that:
If you somehow inject libfrida-deepfreeze-rs.so to mybin (e.g. LD_PRELOAD or rundll32.exe) its code is going to run
If you rename libmylib.so to libmylib-orig.so and libfrida-deepfreeze-rs.so to libmylib.so code is going to run and that the original mylib functions are working correctly
Does cdylib compilation need to be somehow implemented in escargot? Or maybe you have another good solution?
The text was updated successfully, but these errors were encountered:
I'd like to be able to build the target crate as a cdylib (shared library).That's a bit specific use case but I'm trying an integration test for https://github.com/dzervas/frida-deepfreeze-rs.
My usecase is that I want to test both library injection and library proxying. So:
I want to build a binary (
tests/mybin
) that depends on a shared library (tests/mylib
). I want to make sure that:libfrida-deepfreeze-rs.so
tomybin
(e.g.LD_PRELOAD
orrundll32.exe
) its code is going to runlibmylib.so
tolibmylib-orig.so
andlibfrida-deepfreeze-rs.so
tolibmylib.so
code is going to run and that the originalmylib
functions are working correctlyDoes
cdylib
compilation need to be somehow implemented in escargot? Or maybe you have another good solution?The text was updated successfully, but these errors were encountered: