a4bbacd6ef
since there is a problem with aide-0.9 which results in it sending an email warning on every run of the scanner. Whilst this version may have other problems (it believes opendir(3)'s output, IIRC), it does keep quiet about them. aide-0.6 creates a database from the regular expression rules that it finds from the config file. Once this database is initialized it can be used to verify the integrity of the files. It has several message digest algorithms (md5,sha1,rmd160,tiger,haval,etc.) that are used to check the integrity of the file. More algorithms can be added with relative ease. All of the usual file attributes can also be checked for inconsistencies. It can read databases from older or newer versions. See the manual pages within the distribution for further info. There is also a beginning of a manual at http://www.cs.tut.fi/~rammer/aide/manual.html
16 lines
430 B
Text
16 lines
430 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2003/06/23 13:48:33 agc Exp $
|
|
--- include/aide.h.orig Wed Apr 26 14:45:29 2000
|
|
+++ include/aide.h Wed Apr 26 14:46:12 2000
|
|
@@ -23,10 +23,12 @@
|
|
#include "db_config.h"
|
|
#include "config.h"
|
|
|
|
+#ifndef __NetBSD__
|
|
#ifndef _POSIX_C_SOURCE
|
|
/* For _POSIX_THREAD_SEMANTICS _REENTRANT */
|
|
#define _POSIX_C_SOURCE 199506L
|
|
#endif /* _POSIX_C_SOURCE */
|
|
+#endif /* __NetBSD__ */
|
|
|
|
|
|
#define AIDEVERSION VERSION
|