var fDesc=new Array();
fDesc[0] = "Eagle X is an IDS environment using free software.
Snort IDS (www.snort.org) and IDScenter are the core of this distribution.
Apache server (www.apache.org), PHP (www.php.net), MySQL (www.mysql.com) and ACID (www.cert.org/kb/acid)
are used to see latest alerts in a nice front-end, using http authentication.
Main Features:
- Full working IDS with database backend and PHP data analyzer frontend
- Snort IDS - powerfull intrusion detection system
- Apache webserver HTTP server, running PHP
- MySQL database - stable database server for storing Snort logs
- IDScenter configuration and management software for Snort
- IDScenter
- control Snort easily using the wizards, e-mail notification feature, etc.
- Online updates of Snort ruleset
- HTTP authentication
o Protects the webserver from unauthenticated access
o Basic authentication or Message Digest-5 Hash authentication possible
* Snort IDS
o Running in service mode
o Preconfigured using Eagle X configuration tool to adapt to your system environment
* Easy installation";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}