mirror of
https://github.com/AuxXxilium/arc-lkm.git
synced 2024-11-23 14:50:57 +07:00
d288da5003
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
10 lines
333 B
C
Executable File
10 lines
333 B
C
Executable File
#ifndef REDPILL_INTERCEPT_EXECVE_H
|
|
#define REDPILL_INTERCEPT_EXECVE_H
|
|
|
|
//There's no remove_ as this requires rearranging the list etc and is not needed for now
|
|
int add_blocked_execve_filename(const char * filename);
|
|
int register_execve_interceptor(void);
|
|
int unregister_execve_interceptor(void);
|
|
|
|
#endif //REDPILL_INTERCEPT_EXECVE_H
|