Skip to content

Graphical Web Interface for OSSEC - updated for PHP undefined variable errors (E_STRICT error reporting)

License

Notifications You must be signed in to change notification settings

ChrisDeFreitas/analogi-c

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnaLogi-c 0.1

Web interface for OSSEC based on AnaLogi v1.3

The goal of this fork of Analogi is to make updates made to resolve issues running Analogi in my environment available to the the community:

  • OSSEC 2.8.1
  • PHP 5.5 with E_STRICT
  • Debian 7.7 (wheezy)
  • Apache 2.4
  • MySQL 5.5
  • Mozilla Firefox/Internet Explorer

I've applied the updates to branches to simplify things. The latest branch is https://github.com/ChrisDeFreitas/analogi-c/tree/indexphp/.

The original application was written by the folks at ECSC for inhouse analysis work, released under GPL to give something back, http://www.ecsc.co.uk.

Important Notes

  1. I use OSSEC/Analogi on a LAN with ~10 systems and moderate traffic. Performance is more than adequate. I have not run Analgoi-c on a large LAN.

  2. All notes for Analogi-c will be in README.txt:

    https://github.com/ChrisDeFreitas/analogi-c/blob/indexphp/README.txt

Installation

This is a drop in replacement for the original Analogi. For installation and notes see:

https://github.com/ECSC/analogi

Step 1. Analogi requires an OSSEC installation with a server logging to MySQL. Analogi must reside on a server running Apache and PHP. The OSSEC MySQL database can be on a local or remote server. There are many guides on the internet for help with these things.

The original Analogi installation instructions are in: INSTALL.txt

For info from the OSSEC project, see:

http://ossec-docs.readthedocs.org/en/latest/manual/index.html

http://www.ossec.net/doc/manual/output/mysql-database-output.html

Step 2. Clone the git repo and edit the database settings file (modify to suite your environment):

$ cd /var/www/html/
$ git clone https://github.com/ChrisDeFreitas/analogi-c
$ cp analogi-c/db_ossec.php.new analogi-c/db_ossec.php
$ vim analogi-c/db_ossec.php
	- change the following:
		define ('DB_USER_O', 'ossec_u');
		define ('DB_PASSWORD_O', 'Passw0rd');
		define ('DB_HOST_O', '127.0.0.1');
		define ('DB_NAME_O', 'ossec');

Step 3. The Analogi web interface can be found at http://[your website url]/analogi-c/.

Step 4. Configure analogy. This is not required to run the app but you should at some time check out the settings:

$ vim analogi-c/config.php

0. Master Branch

https://github.com/ChrisDeFreitas/analogi-c/tree/master/

This branch fixes issues arising from the use of PHP's "E_STRICT" error reporting. When I initially ran Analogi 1.3, PHP threw a few "Undefined variable" errors. It appears to be the result of having PHP's E_STRICT error reporting turned on.

Searching PHP files for "//fixed:" will return all the changes. Here is an example of an update from management.php:

	//fixed: Undefined variable: $clientvsleveldebugstring in /srv/website/htdocs/analogi/management.php on line 362
	if(isset($clientvsleveldebugstring))
		...

User interface and functionality is unchanged from original Analogi 1.3. However, there may be some functionality I can't see because its just broken.

1. uiupdates Branch

https://github.com/ChrisDeFreitas/analogi-c/tree/uiupdates/

The goal is to simplify the user interface with HTML and CSS updates. Some PHP tweaks were required to make HTML behave. This branch:

2. indexphp Branch

https://github.com/ChrisDeFreitas/analogi-c/tree/indexphp/

This update enhances existing functionality of index.php.

Substantial changes were made to the Rare Rules grid. I couldn't find any details about its intended use. I've implemented it to display rules triggered the least in the provided query.

Other Changes:

  • this branch contains updates from the master and uiupdate branches.
  • bug fixes can be found by searching for: //indexphp:
  • fixed bug in index_graph.php caused when no results returned by query
  • changed to HTML5 from XHTML to facilitate Javascript automation.
  • tweaked text
  • tweaked filter controls
  • added new file: js/app_utils.js
  • data tables are generated via Javascript
  • added to data tables: level column; sorting; sql popup window; hover text
  • added ruleId and date filters to links in RareRules
  • RareRules query, changed "signature.level>" to "signature.level>="
  • added levelmin filter to "Host Traffic" links
  • fix to dislay level filters = 0: "..., Level 0+, ..."
  • screenshot: https://github.com/ChrisDeFreitas/analogi-c/tree/uiupdates/screenshots/indexphp_2.png

Thanks/Links

Analogi

https://github.com/ECSC/analogi

ECSC

http://www.ecsc.co.uk/

OSSEC

http://www.ossec.net/

PHP Error Reporting

http://php.net/manual/en/migrating5.errorrep.php

Chris DeFreitas

http://datadevco.com

About

Graphical Web Interface for OSSEC - updated for PHP undefined variable errors (E_STRICT error reporting)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 91.0%
  • JavaScript 5.9%
  • CSS 3.1%