Releases: hinqiwame/soinjector
Releases · hinqiwame/soinjector
v1.4.1
v1.4
v1.3
yet this is most stable release, most comfortable for usage.
- added checks for lib path and pid
lib path check:
// lib path check
if (access(lib_path, F_OK) == -1) {
die("[!] invalid library path");
}
pid check:
// pid check
if (kill(pid, 0) == -1) {
die("[!] invalid pid");
}
- added compiler script
#!/bin/bash
gcc -o injector injector.c -ldl -Wall
mv injector build
- little reararrangement of files in src
directory
full changelog: v1.2...v1.3
my telegram channel<3
v1.2
added better error handler, generally error handling works better now in the code
// better error handler
void die(char* message) {
perror(message);
exit(EXIT_FAILURE);
}
full changelog: v1.1...v1.2
v1.1
- added support for 64-bit processes
full changelog: v1.0...v1.1