|
About:
Easy integrity check system is an easy-to-install
and use file integrity system. It is intended to
be used by system administrators to aid with
intrusion detection.
Author:
Aki Tuomi [contact developer]
Homepage:
http://sourceforge.net/projects/eics/
Tar/GZ:
http://sourceforge.net/[..]69126&package_id=67997&release_id=318149
Tar/BZ2:
http://sourceforge.net/[..]69126&package_id=67997&release_id=318149
Zip:
http://sourceforge.net/[..]69126&package_id=67997&release_id=318149
Changelog:
http://sourceforge.net/project/shownotes.php?release_id=318149
CVS tree (cvsweb):
http://eics.cvs.sourceforge.net/eics/
Trove categories:
[change]
Dependencies:
[change]
OpenSSL 0.9.7 (required)
PCRE 5.0 (recommended)
[download links]
|
|
» Rating:
(not rated)
» Vitality: 0.00% (Rank 8308)
» Popularity: 0.76% (Rank 7842)

(click to enlarge graphs)
Record hits: 8,354
URL hits: 3,190
Subscribers: 18
|
|
Branches
Comments
[»]
Interesting project.
by Stanislav Ievlev - Jun 21st 2004 01:54:04
Hi! Interesting work. Good idea to use openssl
for digests.
As I understand you use own database format,
to store file data (checksums,stat
information,etc.).
It may be interesting for you:
http://freshmeat.net/projects/o-security/
osec - it's mine integrity checker, that uses CDB
for database. CDB works faster then others.
[reply]
[top]
[»]
Re: Interesting project.
by Aki Tuomi - Jun 21st 2004 02:09:39
> Hi! Interesting work. Good idea to use
> openssl
> for digests.
>
> As I understand you use own database
> format,
> to store file data (checksums,stat
> information,etc.).
>
> It may be interesting for you:
> http://freshmeat.net/projects/o-security/
>
>
> osec - it's mine integrity checker, that
> uses CDB
> for database. CDB works faster then
> others.
>
>
Thank you for your comment. The reason I use my own database is that it
allows me to store the data as compact as possible and also allows me to
control better what is stored. I'm sure the CDB system is fast and
everything, but I doubt it comes any faster since I preload everything into
memory before starting to process. The in-memory data is stored in more or
less efficient hashtable allowing near O(1) acccess times.
[reply]
[top]
[»]
Re: Interesting project.
by Stanislav Ievlev - Jun 23rd 2004 04:39:43
>
>
> Thank you for your comment. The reason I
> use my own database is that it allows me
> to store the data as compact as possible
> and also allows me to control better
> what is stored. I'm sure the CDB system
> is fast and everything, but I doubt it
> comes any faster since I preload
> everything into memory before starting
> to process. The in-memory data is stored
> in more or less efficient hashtable
> allowing near O(1) acccess times.
CDB mmap() all data into memory, so it's fast
enough.
This is very efficient, 'cause it is a Constant
(Read-only or Write-only).
It also uses hashtable to made access faster.
Size of database is small, cause it have
read-only/write-only design.
[reply]
[top]
|