var fDesc=new Array();
fDesc[0] = "File Modified Monitor is a utility that will inform you via email about modified files in a given root folder and it's sub folders. It's a non memory resident command line application that can be typically used to monitor file modifications on unattended servers. Use the command line options and your favorite scheduler to run a modified file scan with a regular interval.
Typical use:
- Check for new or modified files in ftp folders.
- Check for modified files in web site folders by hackers (defacing).
- Check for remote control files uploaded by hackers via existing file upload scripts.
Features:
- Supports multiple include and exclude masks with wildcards.
- Special alert mask for known malicious files.
- Logging and profile support.
- Direct email delivery without the need for an smtp host.
- Interface for easy command line setup.
- Includes example profiles for inspiration.";
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 = '';
}
}