mirror of
https://github.com/AuxXxilium/redpill-lkm5.git
synced 2024-11-23 23:11:02 +07:00
10 lines
333 B
C
10 lines
333 B
C
#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
|