kilinitt
kilinitt
Is there a workaround for ELF binaries without DT_INIT? Can one use a different tool like objcopy to add one prior to running e9patch/tool?
Raw socket buffer allocation is done based on sniffer->buf_len, which is not initialized: Line 143 in sniffer.c: ` sniffer->buffer = malloc(sizeof(char) * sniffer->buf_len);`
Line 57 in sniffer.c: `if (sniffer->fd != -1)` Should be: `if (sniffer->fd == -1)`
Sniffer params structure is not fully initialized in main.c. Specifically, params.device is uninitialized and used in sniffer.c.