-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathos_lib_alerts.php
executable file
·872 lines (749 loc) · 26.3 KB
/
os_lib_alerts.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
<?php
/* @(#) $Id: os_lib_alerts.php,v 1.17 2008/03/03 19:37:25 dcid Exp $ */
/* Copyright (C) 2006-2008 Daniel B. Cid <dcid@ossec.net>
* All rights reserved.
*
* This program is a free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public
* License (version 3) as published by the FSF - Free Software
* Foundation
*/
/**
* This file contains functions dealing with the retrieval of alert-related
* information from an OSSEC installation.
*
* @copyright Copyright (c) 2006-2008, Daniel B. Cid, All rights reserved.
* @package ossec_web_ui
* @author Daniel B. Cid <dcid@ossec.net>
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU Public License
*
*/
require_once 'Ossec/Alert.php';
require_once 'Ossec/AlertList.php';
/**
* Formats the given alerts into HTML and writes the result to the given
* file path.
*
* @param string $out_file
* Full path to output file.
* @param Ossec_AlertList $alert_list
*/
//TODO: This can probably be a method of AlertList
function __os_createresults($out_file, $alert_list)
{
if ($alert_list->size() == 0)
return;
/* Opening output file */
$fp = fopen($out_file, "w");
if(!$fp) {
return(NULL);
}
fwrite( $fp, $alert_list->toHTML() );
}
/**
* Attempts to read the next alert matching any specified constraints from the
* given file handle.
*
* @param resource $fp
* An open filehandle from which to read alerts.
* @param integer $curr_time
* Unix timestamp representing the current time. Currently unused.
* @param integer $init_time
* Unix timestamp used to constrain the list of retrieved alerts to those
* which occur AFTER the given time.
* @param integer $final_time
* Unix timestamp used to constrain the list of retrieved alerts to those
* which occur BEFORE the given time.
* @param integer $min_level
* Used to constrain events by level. Events with levels lower than this value
* will be ignored.
* @param string $rule_id
* Regular expression for constraining results by rule ID. This will be used
* in a call to preg_match, but should not include the enclosing '/' tokens.
* @param string $location_pattern
* String used for constraining results by location. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated.
* @param string $str_pattern
* String used for constraining results by message. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated.
* @param string $group_pattern
* String used for constraining results by event group. This will be used in a
* call to strpos.
* @param string $group_regex
* String used for constraining results by event group. This will be used in a
* call to preg_match.
* @param string $srcip_pattern
* String used for constraining results by source IP. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated.
* @param string $user_pattern
* String used for constraining results by user. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated.
* @param string $log_pattern
* String used for constraining results by log group. This will be used in a
* call to strpos.
* @param string $log_regex
* String used for constraining results by log group. This will be used in a
* call to preg_match.
* @param array $rc_code_hash
* Array keyed on pattern variable name. Contains 'true' if pattern should be
* negated, false otherwise. Valid keys are 'srcip_pattern', 'str_pattern'
* 'user_pattern' and 'location_pattern'.
* @return Ossec_Alert
*/
function __os_parsealert(&$fp, $curr_time,
$init_time, $final_time, $min_level,
$rule_id, $location_pattern,
$str_pattern, $group_pattern, $group_regex,
$srcip_pattern, $user_pattern,
$log_pattern, $log_regex, $rc_code_hash)
{
$evt_time = 0;
$evt_id = 0;
$evt_level = 0;
$evt_description = NULL;
$evt_location = NULL;
$evt_srcip = NULL;
$evt_user = NULL;
$evt_group = NULL;
$evt_msg[0] = "";
while(!feof($fp))
{
$buffer = fgets($fp, 1024);
/* Getting event header */
if(strncmp($buffer, "** Alert", 8) != 0)
{
continue;
}
/* Getting event time */
$evt_time = substr($buffer, 9, 10);
if(is_numeric($evt_time) === FALSE)
{
$evt_time = 0;
continue;
}
/* Checking if event time is in the timeframe */
if(($init_time != 0) && ($evt_time < $init_time))
{
continue;
}
if(($final_time != 0) && ($evt_time > $final_time))
{
return(NULL);
}
/* Getting group information */
$evt_group = strstr($buffer, "-");
if($evt_group === FALSE)
{
/* Invalid group */
continue;
}
/* Filtering based on the group */
if($group_pattern != NULL)
{
if(strpos($evt_group, $group_pattern) === FALSE)
{
continue;
}
}
else if($group_regex != NULL)
{
if(!preg_match($group_regex, $evt_group))
{
continue;
}
}
/* Getting log formats */
if($log_pattern != NULL)
{
if(strpos($evt_group, $log_pattern) === FALSE)
{
continue;
}
}
else if($log_regex != NULL)
{
if(!preg_match($log_regex, $evt_group))
{
continue;
}
}
/* Getting location */
$buffer = fgets($fp, 1024);
$buffer = substr($buffer, 21);
strtok($buffer, " "); // hostname
$evt_srcip = strtok("-");
$evt_location = strtok(">\n");
if($location_pattern)
{
if(strpos($evt_location, $location_pattern) === FALSE)
{
if(!$rc_code_hash{'location_pattern'})
continue;
}
else
{
if($rc_code_hash{'location_pattern'})
continue;
}
}
/* srcip */
if($srcip_pattern != NULL)
{
if(strpos($evt_srcip,$srcip_pattern) === FALSE)
{
if(!$rc_code_hash{'srcip_pattern'})
continue;
}
else
{
if($rc_code_hash{'srcip_pattern'})
continue;
}
}
/* Getting rule, level and description */
$buffer = fgets($fp, 1024);
$token = strtok($buffer, " ");
if($token === FALSE)
{
continue;
}
/* Rule id */
$token = strtok(" ");
$evt_id = $token;
if(is_numeric($evt_id) === FALSE)
{
continue;
}
/* Checking rule id */
if($rule_id != NULL)
{
if(!preg_match($rule_id, $evt_id))
{
continue;
}
}
/* Level */
$token = strtok(" ");
$token = strtok(" ");
$evt_level = $token;
$evt_level = rtrim($evt_level, ")");
if(is_numeric($evt_level) === FALSE)
{
continue;
}
/* Checking event level */
if($evt_level < $min_level)
{
continue;
}
/* Getting description */
$token = strtok("'");
$token = strtok("'");
$evt_description = $token;
/* user */
$buffer = fgets($fp, 1024);
$buffer = rtrim($buffer);
if($buffer != "User: (none)")
{
$evt_user = substr($buffer, 6);
if($evt_user == "SYSTEM")
{
$evt_user = NULL;
}
}
if($user_pattern)
{
if(($evt_user == NULL) ||
(strpos($evt_user, $user_pattern) === FALSE))
{
if(!$rc_code_hash{'user_pattern'})
continue;
}
else
{
if($rc_code_hash{'user_pattern'})
continue;
}
}
/* message */
$buffer = fgets($fp, 2048);
$msg_id = 0;
$evt_msg[$msg_id] = NULL;
$pattern_matched = 0;
while(strlen($buffer) > 3)
{
if($buffer == "\n")
{
break;
}
if(($str_pattern != NULL) &&
(strpos($buffer, $str_pattern) !== FALSE))
{
$pattern_matched = 1;
}
$evt_msg[$msg_id] = rtrim($buffer);
$evt_msg[$msg_id] = ereg_replace("<", "<", $evt_msg[$msg_id]);
$evt_msg[$msg_id] = ereg_replace(">", ">", $evt_msg[$msg_id]);
$buffer = fgets($fp, 2048);
$msg_id++;
$evt_msg[$msg_id] = NULL;
}
/* Searching by pattern */
if($str_pattern != NULL && $pattern_matched == 0 &&
$rc_code_hash{'str_pattern'})
{
$evt_srcip = NULL;
$evt_user = NULL;
continue;
}
else if(!$rc_code_hash{'str_pattern'} && $pattern_matched == 1)
{
$evt_srcip = NULL;
$evt_user = NULL;
continue;
}
/* If we reach here, we got a full alert */
$alert = new Ossec_Alert( );
$alert->time = $evt_time;
$alert->id = $evt_id;
$alert->level = $evt_level;
// TODO: Why is this being done here? Can't we just use
// htmlspecialchars() before emitting this to the browser?
$evt_user = ereg_replace("<", "<", $evt_user);
$evt_user = ereg_replace(">", ">", $evt_user);
$alert->user = $evt_user;
$evt_srcip = ereg_replace("<", "<", $evt_srcip);
$evt_srcip = ereg_replace(">", ">", $evt_srcip);
$alert->srcip = $evt_srcip;
$alert->description = $evt_description;
$alert->location = $evt_location;
$alert->msg = $evt_msg;
return($alert);
}
return(NULL);
}
/**
* Performs an alert search based on the given constraints and produces a set
* of html output files documenting the search results. An array containing
* information about the created result files is returned, and follows this
* example format (@see os_getstoredalerts):
*
* <pre>
* Array
* (
* [0] => Array
* (
* [1] => 999
* [count] => 2345
* [2] => 999
* [3] => 347
* [pg] => 3
* )
*
* [1] => ./tmp/output-tmp.1-1000-758a29e2a3652e86d21e3850767fb97c471906e7557054.23854549.php
* [2] => ./tmp/output-tmp.2-1000-758a29e2a3652e86d21e3850767fb97c471906e7557054.23854549.php
* [3] => ./tmp/output-tmp.3-348-758a29e2a3652e86d21e3850767fb97c471906e7557054.23854549.php
* [4] =>
* )
* </pre>
*
* @param array $ossec_handle
* Array of information representing an OSSEC installation.
* @param string $search_id
* A unique search identifier used to write search results to HTML files for
* later display.
* @param integer $init_time
* Unix timestamp used to constrain the list of retrieved alerts to those
* which occur AFTER the given time. Used to constrain list of files read from
* the filesystem and is also passed directly to __os_parsealert.
* @param integer $final_time
* Unix timestamp used to constrain the list of retrieved alerts to those
* which occur BEFORE the given time. Used to constrain list of files read
* from the filesystem and is also passed directly to __os_parsealert.
* @param integer $max_count
* Used to mark when an alert list should be dumped to file. One file will be
* created for each 'max_count' alerts, with one additional file for any
* left over alerts.
* @param integer $min_level
* Used to constrain events by level. Events with levels lower than this value
* will not be returned. Passed directly to __os_parsealert.
* @param string $rule_id
* Regular expression for constraining results by rule ID. This will be used
* in a call to preg_match, but should not include the enclosing '/' tokens.
* Passed directly to __os_parsealert.
* @param string $location_pattern
* String used for constraining results by location. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated. Passed directly to __os_parsealert.
* @param string $str_pattern
* String used for constraining results by message. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated. Passed directly to __os_parsealert.
* @param string $group_pattern
* String used for constraining results by event group. This will be used in a
* call to strpos unless in contains the '|' character, in which case it will
* be used in a call to preg_match. Passed directly to __os_parsealert.
* @param string $srcip_pattern
* String used for constraining results by source IP. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated. Passed directly to __os_parsealert.
* @param string $user_pattern
* String used for constraining results by user. This will be used in a
* call to strpos, and may contain an initial '!' signifying negation. If
* present, the '!' will be stripped and not used in the call to strpos, but
* the results of the call will be negated. Passed directly to __os_parsealert.
* @param string $log_pattern
* String used for constraining results by log group. This will be used in a
* call to strpos unless in contains the '|' character, in which case it will
* be used in a call to preg_match. Passed directly to __os_parsealert.
* @return array
* An array of data identifying stored search results.
*/
function os_searchalerts($ossec_handle, $search_id,
$init_time, $final_time,
$max_count,
$min_level,
$rule_id,
$location_pattern,
$str_pattern,
$group_pattern,
$srcip_pattern,
$user_pattern,
$log_pattern)
{
$alert_list = new Ossec_AlertList( );
$file_count = 0;
$file_list[0] = array();
$output_count = 1;
$output_file[0] = array();
$output_file[1] = array();
$curr_time = time(0);
/* Clearing arguments */
if($rule_id != NULL)
{
$rule_id = "/".$rule_id."/";
}
$group_regex = null;
if(strpos($group_pattern,"|") !== FALSE)
{
$group_regex = "/".$group_pattern."/";
$group_pattern = NULL;
}
$log_regex = null;
if(strpos($log_pattern,"|") !== FALSE)
{
$log_regex = "/".$log_pattern."/";
$log_pattern = NULL;
}
/* Setting rc code */
if(($user_pattern != NULL) && ($user_pattern[0] == '!'))
{
$user_pattern = substr($user_pattern, 1);
$rc_code_hash{'user_pattern'} = TRUE;
}
else
{
$rc_code_hash{'user_pattern'} = FALSE;
}
/* str */
if(($str_pattern != NULL) && ($str_pattern[0] == '!'))
{
$str_pattern = substr($str_pattern, 1);
$rc_code_hash{'str_pattern'} = FALSE;
}
else
{
$rc_code_hash{'str_pattern'} = TRUE;
}
/* srcip */
if(($srcip_pattern != NULL) && ($srcip_pattern[0] == '!'))
{
$srcip_pattern = substr($srcip_pattern, 1);
$rc_code_hash{'srcip_pattern'} = TRUE;
}
else
{
$rc_code_hash{'srcip_pattern'} = FALSE;
}
/* location */
if(($location_pattern != NULL) && ($location_pattern[0] == '!'))
{
$location_pattern = substr($location_pattern, 1);
$rc_code_hash{'location_pattern'} = TRUE;
}
else
{
$rc_code_hash{'location_pattern'} = FALSE;
}
/* Cleaning old entries */
os_cleanstored(NULL);
/* Getting first file */
$init_loop = $init_time;
while($init_loop <= $final_time)
{
$l_year_month = date('Y/M',$init_loop);
$l_day = date('d',$init_loop);
$file_list[$file_count] = "logs/alerts/".
$l_year_month."/ossec-alerts-".$l_day.".log";
/* Adding one day */
$init_loop+=86400;
$file_count++;
}
/* Getting each file */
foreach($file_list as $file)
{
// If the file does not exist, it must be gzipped so switch to a
// compressed stream for reading and try again. If that also fails,
// abort this log file and continue on to the next one.
$log_file = $ossec_handle{'dir'}.'/'.$file;
$fp = @fopen($log_file,'rb');
if($fp === false) {
$fp = @fopen("compress.zlib://$log_file.gz", 'rb');
if($fp === false) { continue; }
}
/* Reading all the entries */
while(1)
{
/* Dont get more than max count alerts per page */
if($alert_list->size( ) >= $max_count)
{
$output_file[$output_count] = "./tmp/output-tmp.".
$output_count."-".$alert_list->size( )."-".
$search_id.".php";
__os_createresults($output_file[$output_count], $alert_list);
$output_file[0]{$output_count} = $alert_list->size( ) -1;
$alert_list = new Ossec_AlertList( );
$output_count++;
$output_file[$output_count] = NULL;
}
$alert = __os_parsealert($fp, $curr_time, $init_time,
$final_time, $min_level,
$rule_id, $location_pattern,
$str_pattern, $group_pattern,
$group_regex,
$srcip_pattern, $user_pattern,
$log_pattern, $log_regex,
$rc_code_hash);
if($alert == NULL)
{
break;
}
if(! array_key_exists( 'count', $output_file[0] ) ) {
$output_file[0]['count'] = 0;
}
$output_file[0]{'count'}++;
/* Adding alert */
$alert_list->addAlert( $alert );
}
/* Closing file */
fclose($fp);
}
/* Creating last entry */
$output_file[$output_count] = "./tmp/output-tmp.".
$output_count."-".$alert_list->size( )."-".
$search_id.".php";
$output_file[0]{$output_count} = $alert_list->size( ) -1;
$output_file[$output_count +1] = NULL;
__os_createresults($output_file[$output_count], $alert_list);
$output_file[0]{'pg'} = $output_count;
return($output_file);
}
/**
* Clean out stored search result files. If a search ID is given, all result
* files for that search ID will be unlinked. If the given search ID is NULL,
* all temporary files older than 30 minutes will be deleted.
*
* @param String $search_id
* A randomly-generated unique search ID or NULL.
*/
function os_cleanstored($search_id = null)
{
if($search_id != NULL)
{
foreach (glob("./tmp/output-tmp.*-*-".$search_id.".php") as $filename)
{
unlink($filename);
}
}
else
{
foreach (glob("./tmp/*.php") as $filename)
{
if(filemtime($filename) < (time(0) - 1800))
{
unlink($filename);
}
}
}
}
/**
* Given a unique search ID, this function returns an array containing the
* information required to retrieve the stored search data from disk. The first
* element of the array contains meta-information, including a count of the
* total number of alerts, a count of the total number of pages, and the total
* number of alerts on each page. The remaining elements are the names of the
* files in which search results are stored, one for each page. For example:
*
* <pre>
* Array
* (
* [0] => Array
* (
* [1] => 999
* [count] => 2345
* [2] => 999
* [3] => 347
* [pg] => 3
* )
*
* [1] => ./tmp/output-tmp.1-1000-758a29e2a3652e86d21e3850767fb97c471906e7557054.23854549.php
* [2] => ./tmp/output-tmp.2-1000-758a29e2a3652e86d21e3850767fb97c471906e7557054.23854549.php
* [3] => ./tmp/output-tmp.3-348-758a29e2a3652e86d21e3850767fb97c471906e7557054.23854549.php
* [4] =>
* )
* </pre>
*
* @param array $ossec_handle
* Array of information representing an OSSEC installation.
* @param string $search_id
* Unique search identifier.
* @return array
* An array of data identifying stored search results.
*/
// TODO: $ossec_handle is not used here, remove it.
function os_getstoredalerts($ossec_handle, $search_id)
{
$output_file[0] = NULL;
$output_file[1] = NULL;
$output_count = 1;
/* Cleaning old entries */
os_cleanstored(NULL);
$filepattern = "/^\.\/tmp\/output-tmp\.(\d{1,3})-(\d{1,6})-[a-z0-9]+\.php$/";
foreach (glob("./tmp/output-tmp.*-*-".$search_id.".php") as $filename)
{
if(preg_match($filepattern, $filename, $regs))
{
$page_n = $regs[1];
$alert_count = $regs[2] -1;
}
else
{
continue;
}
if($page_n >= 1 && $page_n < 512)
{
$output_file[$page_n] = $filename;
$output_file[0]{$page_n} = $alert_count;
$output_file[$page_n +1] = NULL;
$output_file[0]{'count'} += $alert_count;
$output_count++;
}
}
$output_file[0]{'pg'} = $output_count -1;
return($output_file);
}
/**
* Fetch an array of alert data, possibly constrained by time and
* count. The returned array conforms to the following example:
*
* <pre>
* [0] => Array
* (
* [time] => 1193749950
* [id] => 5402
* [level] => 3
* [user] =>
* [srcip] => (none)
* [description] => Successful sudo to ROOT executed
* [location] => laptop->/var/log/secure
*
* [msg] => Array
* (
* [0] => Oct 30 09:12:30 hal sudo: dave : sorry, you must have a tty to run sudo ; TTY=unknown ; PWD=/home/dave ; USER=root ; COMMAND=/usr/sbin/open_podbay_door
* [1] =>
* )
*
* )
* </pre>
*
* @param array $ossec_handle
* Array of information representing an OSSEC installation.
* @param integer $init_time
* Unix timestamp used to constrain the list of retrieved alerts to those
* which occur AFTER the given time. Passed directly to __os_parsealert.
* @param unknown_type $final_time
* Unix timestamp used to constrain the list of retrieved alerts to those
* which occur BEFORE the given time. Passed directly to __os_parsealert.
* @param unknown_type $max_count
* Maximum number of events to return. This is used go generate a guess
* at the correct file offset needed to return the specified number of
* events.
* @return Ossec_AlertList
* An alert list
*/
// TODO: This is always called with init_time=0, final_time=0 and max_count=30.
function os_getalerts($ossec_handle, $init_time, $final_time, $max_count)
{
$file = NULL;
$alert_list = new Ossec_AlertList( );
$curr_time = time(0);
/* Checking if agent_dir is set */
if(!isset($ossec_handle{'dir'})||($ossec_handle{'dir'}==NULL))
{
$ossec_handle{'error'} = "Unable to open ossec dir: ".
$ossec_handle{'dir'};
return(NULL);
}
/* Getting log dir */
$log_file = $ossec_handle{'dir'}.'/logs/alerts/alerts.log';
/* Opening alert file */
$fp = fopen($log_file, 'r');
if($fp === false)
{
$ossec_handle{'error'} = "Unable to open log file: ".$log_file;
return(NULL);
}
/* If times are set to zero, we monitor the last *count files. */
if(($init_time == 0) && ($final_time == 0))
{
clearstatcache();
os_cleanstored();
/* Getting file size */
$f_size = filesize($log_file);
/* Average size of every event: ~900 */
$f_point = $max_count * 900;
/* If file size is large than the counter fseek to the
* average place in the file.
*/
if($f_size > $f_point)
{
$seek_place = $f_size - $f_point;
fseek($fp, $seek_place, SEEK_SET);
}
}
/* Getting alerts */
while(1) {
$alert = __os_parsealert(
$fp, $curr_time, $init_time, $final_time, 0, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
);
if($alert == NULL) {
break;
}
$alert_list->addAlert( $alert );
}
fclose($fp);
return($alert_list);
}
?>