Last change
on this file since 85 was 68, checked in by rainer, 18 years ago |
Update trunk to samhain 2.3
|
File size:
1014 bytes
|
Rev | Line | |
---|
[1] | 1 |
|
---|
| 2 | #ifndef SH_SUIDCHK_H
|
---|
| 3 | #define SH_SUIDCHK_H
|
---|
| 4 |
|
---|
| 5 | #include "sh_modules.h"
|
---|
| 6 |
|
---|
| 7 | #ifdef SH_USE_SUIDCHK
|
---|
| 8 | int sh_suidchk_init (void);
|
---|
| 9 | int sh_suidchk_timer (time_t tcurrent);
|
---|
| 10 | int sh_suidchk_check (void);
|
---|
| 11 | int sh_suidchk_end (void);
|
---|
| 12 | int sh_suidchk_free_schedule (void);
|
---|
| 13 |
|
---|
[68] | 14 | int sh_suidchk_set_activate (const char * c);
|
---|
| 15 | int sh_suidchk_set_severity (const char * c);
|
---|
| 16 | int sh_suidchk_set_timer (const char * c);
|
---|
| 17 | int sh_suidchk_set_schedule (const char * c);
|
---|
| 18 | int sh_suidchk_set_exclude (const char * c);
|
---|
| 19 | int sh_suidchk_set_fps (const char * c);
|
---|
| 20 | int sh_suidchk_set_yield (const char * c);
|
---|
| 21 | int sh_suidchk_set_quarantine (const char * c);
|
---|
| 22 | int sh_suidchk_set_qmethod (const char * c);
|
---|
| 23 | int sh_suidchk_set_qdelete (const char * c);
|
---|
[1] | 24 |
|
---|
| 25 |
|
---|
| 26 | extern sh_rconf sh_suidchk_table[];
|
---|
| 27 |
|
---|
| 28 | /* Quarantine Methods
|
---|
| 29 | */
|
---|
| 30 | typedef enum {
|
---|
| 31 |
|
---|
| 32 | SH_Q_DELETE = 0, /* delete */
|
---|
| 33 | SH_Q_CHANGEPERM = 1, /* remove suid/sgid permissions */
|
---|
| 34 | SH_Q_MOVE = 2 /* move */
|
---|
| 35 | } ShQuarantineMethod;
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | #endif
|
---|
| 39 |
|
---|
| 40 | /* #ifndef SH_SUIDCHK_H */
|
---|
| 41 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.