forked from netman2k/analogi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
78 lines (54 loc) · 2.43 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/*
* Copyright (c) 2012 Andy 'Rimmer' Shepherd <[email protected]> (ECSC Ltd).
* This program is free software; Distributed under the terms of the GNU GPL v3.
*/
require './top.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>AnaLogi - OSSEC WUI</title>
<meta http-equiv="refresh" content="<?php echo $glb_autorefresh; ?>" >
<link href="./style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php includeme("./header.php"); ?>
<div class='clr'></div>
<div class='top10header'>About</div>
<div class="introbody">= Information about AnaLogi =<br><br>
'Analytical Log Interface' built to sit on top of OSSEC (built on OSSEC 2.6)<br><br>
Written for inhouse analysis work, released under GPL to give something back.<br><br>
AnaLogi was built for OSSEC 2.6 and requires 0 modifications to OSSEC or the
database schema that ships with OSSEC. AnaLogi requires a Webserver sporting
PHP and MySQL.
Available from:
https://github.com/downloads/ECSC/analogi/
</div>
<div class='top10header'>To say Thanks</div>
<div class="introbody">AnaLogi has no real tracking of how many people use it (no 1px images in the code etc).<br><br>If you would like to say thanks and show me that this project was worth releasing please click the following link.<br><a href='http://www.ecsc.co.uk/analogi.html'>AnaLogi</a> at ECSC (I check the logs time to time for hits)</div>
<div class='top10header'>FAQ</div>
<div class="introbody">
All tweakable parts of AnaLogi are stored in config.php
<br><br>
Tweakable bits of the interface are displayed as <span class='tw'>such</span>
<br><br>
</div>
<div class='top10header'>Latest Version</div>
<div class="introbody">The latest Version can be found <a href='https://github.com/ECSC/analogi/downloads'>here</a></div>
<div class='top10header'>Wiki</div>
<div class="introbody">Click <a href='https://github.com/ECSC/analogi/wiki'>here</a> (wip)</div>
<div class='top10header'>Links</div>
<div class="introbody">
In no particular order
<li>http://www.ossec.net
<li>http://www.amazon.com/OSSEC-Host-Based-Intrusion-Detection-Guide/dp/159749240X
<li>https://groups.google.com/forum/?fromgroups#!forum/ossec-list
<li>http://ddpbsd.blogspot.co.uk/
<li>http://dcid.me/blog
<li>http://www.immutablesecurity.com/index.php/tag/ossec/
</div>
<div class='clr'></div>
<?php
include 'footer.php';
?>