Osiris icon indicating copy to clipboard operation
Osiris copied to clipboard

Error upon injection

Open Pauler221 opened this issue 3 years ago • 4 comments

The following error occurs upon injection. How do I fix this?

warning: Could not load shared library symbols for bin/linux64/launcher_client.so. Do you need "set solib-search-path" or "set sysroot"? No symbol "__libc_dlopen_mode" in current context.

Pauler221 avatar Feb 13 '23 21:02 Pauler221

Try this:

sudo gdb -n -q -batch-silent \
        -ex "set logging file /dev/null" \
        -ex "set logging redirect on" \
        -ex "set logging on" \
        -ex "attach $(pidof csgo_linux64)" \
        -ex "call ((void*(*)(const char*, int))dlopen)(\"libOsiris.so\", 1)"   \
        -ex "detach" \
        -ex "quit"

ghost avatar Feb 14 '23 16:02 ghost

Not working. Tried it

KZagaja avatar Mar 07 '23 22:03 KZagaja

Try this:

sudo gdb -n -q -batch-silent \
        -ex "set logging file /dev/null" \
        -ex "set logging redirect on" \
        -ex "set logging on" \
        -ex "attach $(pidof csgo_linux64)" \
        -ex "call ((void*(*)(const char*, int))dlopen)(\"libOsiris.so\", 1)"   \
        -ex "detach" \
        -ex "quit"

not working

BoheZhi avatar May 01 '23 09:05 BoheZhi

Try this:

sudo gdb -n -q -batch-silent \
        -ex "set logging file /dev/null" \
        -ex "set logging redirect on" \
        -ex "set logging on" \
        -ex "attach $(pidof csgo_linux64)" \
        -ex "call ((void*(*)(const char*, int))dlopen)(\"libOsiris.so\", 1)"   \
        -ex "detach" \
        -ex "quit"

This works.

sakurawald avatar Jul 09 '23 14:07 sakurawald