weasel is an analysis console and logger for the snort(tm) open-source intrusion detection system. It allows you to see and analyze your snort alerts in your browser. Its main features include:
* ease of use
* persistent filters
* support for multi-tabbed browsing / multiple windows
* fast flat database scheme
* integration with snortcenter
* multithreaded output-plugin for snort
$ ./configure --enable-pthread --with-mysql=/usr/..
ok, ist ja auch eine sehr frühe Version ..Yehudi schrieb:Also das mit der Installation ist zwar ein bisschen sehr oberflächlich geschrieben, aber das ist ja auch nicht anders, als irgend ein CMS, bis dahin hat das geklappt.
Das rpm von Snort musste deinstalliert werden, da die Version zu alt ist, um das Patch zu nutzen.
Also muss snort mit dem Patch kompiliert werden:
Snort and Snort-plugin http://weasel.sourceforge.net/install.html
An der einen Stelle mit
Code:$ ./configure --enable-pthread --with-mysql=/usr/..
weiß ich allerdings überhaupt nicht so recht, was dort eingetragen weden soll.
./configure ... --with-mysql=<pfad zu deiner mysql-devel>
note: if snort was not installed before on this machine, you need to download
and install the latest snort rules. This step requires registration on the
snort website. Refer to http://www.snort.org/vrt/ for more information.
...
The next step is to run the ./configure script. Here you can decide which of
snorts features you want to enable or disable, and you might need to give the paths to your libraries if ./configure can't find them automatically.
Run
$ configure --help
in order to learn about the many options that snort supports, and refer to its manual or use google
If you have a system that supports posix-threads (most linux and bsd do)
then you should --enable-pthread, as this will give you a separate logging thread, which means better performance.
You need to enable at least one db option, but you can also enable both at the same time i.e. either --with-mysql or --with-postgresql or both.
In case the ./configure script is not able to determine the path to your db libraries, you may add it like this: --with-mysql=/usr/local/mysql
Then run ./configure. This is only an example how you configure line may look like:
$ ./configure --enable-pthread --with-mysql --with-postgresql=/usr/pgsql
Check that Support for you db options was found by ./configure.
Then run make:
$ make