Software to inject .so libraries into running process
Find a file
2024-09-03 02:52:48 +03:00
src begin porting all lists to mlist 2024-09-03 02:52:48 +03:00
.gitignore OVERHAUL: migrate to recursive make, because such way I can establish proper project structure for future make install AND have unclogged makefiles 2024-08-24 11:19:59 +03:00
LICENSE initial commit 2024-07-18 12:47:35 +03:00
Makefile begin working on relf component 2024-08-24 14:32:50 +03:00
README.md begin working on relf component 2024-08-24 14:32:50 +03:00

blackjack

Software to inject .so libraries into running process

For Linux and FreeBSD

Components

blackjack consists of multiple components that are responsible for different tasks.

blackjack

Hijacks runtime process in order to inject shared objects.

rtdisasm

KISS robust runtime "disassembler". Used to analyze instructions encoded sizes and find desired instructions for trampolines. No need to bloat it with full-blown disassembler logic like other projects do - one big lookup table is enough for such purposes.

relf

Instrument to parse and analyze ELF shared objects. Primary goal is to find symbols and their offsets, so blackjack could link them in runtime.