Hi guys,
I'm kind of new here so I'll try and explain best I can.
I'm currently looking at a library file called in a server of mine that defines skills usable and recognizable by the game.
It has a .so extension, and so far I've only pulled up that it is a Shared Object file, meaning it may have various coding languages.
Is there any way to even get a basic view of what's inside?
Thanks in advance for all answers.
It is no different than a dll. Most .so files are actually .elf files which if you have IDA/Hex-rays you can disassemble. Just check with a hex editor what file signature it has at the beginning of the file and you will know what it is.
Happy Hacking!
"Unless someone like you cares a whole awful lot, nothing is going to get better. It's not."-Dr. Seuss
I don't want admiration. I want you to follow my example.
The best way to bring moderator attention to a post is to use the report button (⚠️).
Like my releases or want to thank me? -> give me rep. (✶ at bottom left)
For other displays of affection -> use the like button.
Moderator of Trickster Online & f168
RZ Dev
Thanks for the swift response. Love it!