forked from ossec/ossec.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
988 lines (482 loc) · 22.8 KB
/
blog.html
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
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>All Posts — OSSEC</title>
<link rel="stylesheet" href="_static/basic.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/bootstrap-3.2.0/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="_static/bootstrap-3.2.0/css/bootstrap-theme.min.css" type="text/css" />
<link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
<link rel="stylesheet" href="_static/parallax.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '2.8.3',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="_static/js/jquery-fix.js"></script>
<script type="text/javascript" src="_static/bootstrap-3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="_static/bootstrap-sphinx.js"></script>
<link rel="author" title="About these documents" href="about.html" />
<link rel="top" title="OSSEC" href="index.html" />
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
<meta name="apple-mobile-web-app-capable" content="yes">
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
ul.ablog-archive {list-style: none; overflow: auto; margin-left: 0px}
ul.ablog-archive li {float: left; margin-right: 5px; font-size: 80%}
</style>
</head>
<body role="document">
<div id="navbar" class="navbar navbar-inverse navbar-default ">
<div class="container">
<div class="navbar-header">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="_static/ossec_logo_bare_small.png">
OSSEC</a>
<span class="navbar-text navbar-version pull-left"><b>2.8</b></span>
</div>
<div class="collapse navbar-collapse nav-collapse">
<ul class="nav navbar-nav">
<li><a href="about.html">About <i class="fa fa-info-circle"></i></a></li>
<li><a href="#">Blog <i class="fa fa-archive"></i></a></li>
<li><a href="docs/">Documentaton <i class="fa fa-book"></i></a></li>
<li><a href="downloads.html">Downloads <i class="fa fa-download"></i></a></li>
<li class="dropdown globaltoc-container">
<a role="button"
id="dLabelGlobalToc"
data-toggle="dropdown"
data-target="#"
href="index.html">Site <b class="caret"></b></a>
<ul class="dropdown-menu globaltoc"
role="menu"
aria-labelledby="dLabelGlobalToc"></ul>
</li>
</ul>
<form class="navbar-form navbar-right" action="search.html" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-3">
<div id="sidebar" class="bs-sidenav" role="complementary">
<ul class="nav nav-list">
<li>
<a class="reference internal nav-header" href="#">Recent Posts</a>
<ul class="nav nav-list">
<li><a class="reference internal" href="blog/posts/2015-11-05-OSSEC-2.8.3-Released.html">Nov 05 - OSSEC 2.8.3 Released</a></li>
<li><a class="reference internal" href="blog/posts/2015-06-11-cve-2015-3222-fix.markdown.html">Jun 11 - CVE-2015-3222 Vulnerability Fixed in OSSEC 2.8.2</a></li>
<li><a class="reference internal" href="blog/posts/2014-10-09-ossec-ova-2_8_1.markdown.html">Oct 09 - OSSEC Virtual Appliance 2.8.1 Available</a></li>
<li><a class="reference internal" href="blog/posts/2014-10-09-ossec-con-2014-recap.markdown.html">Oct 09 - OSSEC CON 2014 Recap</a></li>
<li><a class="reference internal" href="blog/posts/2014-09-09-cve-2014-5284-fix.markdown.html">Oct 09 - CVE-2014-5284 Vulnerability Fixed in OSSEC 2.8.1</a></li>
</ul>
</li>
</ul>
<ul class="nav nav-list">
<li>
<a href="blog/category.html">Categories</a>
<ul class="nav nav-list">
<li><a class="reference internal" href="blog/category/announcements.html">Announcements (6)</a></li>
<li><a class="reference internal" href="blog/category/anouncements.html">Anouncements (1)</a></li>
<li><a class="reference internal" href="blog/category/integrations.html">Integrations (2)</a></li>
<li><a class="reference internal" href="blog/category/releases.html">Releases (5)</a></li>
</ul>
</li>
</ul>
<ul class="nav nav-list">
<li>
<a href="blog/archive.html">Archives</a>
<ul>
<li><a href="blog/2015.html"><i class="fa fa-folder"></i> 2015 (2)</a></li>
<li><a href="blog/2014.html"><i class="fa fa-folder"></i> 2014 (10)</a></li>
<li><a href="blog/2013.html"><i class="fa fa-folder"></i> 2013 (1)</a></li>
</ul>
</li>
</ul>
<form action="search.html" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="col-md-9">
<div class="section">
<h1>
All
Posts
</h1>
<div class="section">
<h2><a href="blog/posts/2015-11-05-OSSEC-2.8.3-Released.html">OSSEC 2.8.3 Released</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Nov 05, 2015
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/releases.html">Releases</a>
</li>
<li><i class="fa-fw fa fa-tag"></i>
<a href="blog/tag/minor.html">minor</a>
</li>
</ul>
<p>OSSEC 2.8.3 has been released and posted on our <a class="reference external" href="http://ossec.github.io/downloads.html">Downloads
page</a>. You can check the <a class="reference external" href="https://bintray.com/ossec/ossec-hids/ossec-hids/view#release">Release
Notes</a> to find out
what has been updated in this release.</p>
<p><a href="blog/posts/2015-11-05-OSSEC-2.8.3-Released.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2015-06-11-cve-2015-3222-fix.markdown.html">CVE-2015-3222 Vulnerability Fixed in OSSEC 2.8.2</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Jun 11, 2015
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/releases.html">Releases</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/ossec.html">ossec</a>,
<a href="blog/tag/security.html">security</a>,
<a href="blog/tag/cve.html">cve</a>
</li>
</ul>
<p>The CVE-2015-3222 vulnerability, which allows for root escalation via syscheck
has been fixed in OSSEC 2.8.2. Full details of the issue can be found on the
OSSEC Github repository –
<a class="reference external" href="https://github.com/ossec/ossec-hids/releases/tag/2.8.2">https://github.com/ossec/ossec-hids/releases/tag/2.8.2</a>.</p>
<p><a href="blog/posts/2015-06-11-cve-2015-3222-fix.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-10-09-ossec-ova-2_8_1.markdown.html">OSSEC Virtual Appliance 2.8.1 Available</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Oct 09, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/integrations.html">Integrations</a>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/announcements.html">Announcements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/ossec.html">ossec</a>,
<a href="blog/tag/ova.html">ova</a>,
<a href="blog/tag/elasticsearch.html">elasticsearch</a>
</li>
</ul>
<p>I have updated the OSSEC Virtual Appliance to include OSSEC 2.8.1 and
Elasticsearch-Logstash-Kibana (ELK) log management and the ElasticHQ
system to handle ELK monitoring. It is a single gzipped OVA that can be
easily imported into VirtualBox or any other virtualization system that
supports OVA files.</p>
<p><a href="blog/posts/2014-10-09-ossec-ova-2_8_1.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-10-09-ossec-con-2014-recap.markdown.html">OSSEC CON 2014 Recap</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Oct 09, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/announcements.html">Announcements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/ossec.html">ossec</a>,
<a href="blog/tag/osssecon.html">osssecon</a>,
<a href="blog/tag/conf.html">conf</a>,
<a href="blog/tag/aleinvault.html">aleinvault</a>,
<a href="blog/tag/atomicorp.html">atomicorp</a>
</li>
</ul>
<p>OSSEC CON 2014 was held in Cork Ireland this year to promote OSSEC in
EMEA where we have many users. This year we had several members of the
current OSSEC Team speak to our audience.</p>
<p><a href="blog/posts/2014-10-09-ossec-con-2014-recap.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-09-09-cve-2014-5284-fix.markdown.html">CVE-2014-5284 Vulnerability Fixed in OSSEC 2.8.1</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Oct 09, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/releases.html">Releases</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/ossec.html">ossec</a>,
<a href="blog/tag/security.html">security</a>,
<a href="blog/tag/cve.html">cve</a>
</li>
</ul>
<p>OSSEC 2.8.1 has been released to address the security issue identified
by Jeff Petersen of Roka Security LLC. Full details of the issue can be
found on the OSSEC Github repository –
<a class="reference external" href="https://github.com/ossec/ossec-hids/releases/tag/2.8.1">https://github.com/ossec/ossec-hids/releases/tag/2.8.1</a>.</p>
<p><a href="blog/posts/2014-09-09-cve-2014-5284-fix.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-06-04-2_8-release.markdown.html">OSSEC 2.8 Released</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Jun 04, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/releases.html">Releases</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/ossec.html">ossec</a>,
<a href="blog/tag/support.html">support</a>
</li>
</ul>
<p><a href="blog/posts/2014-06-04-2_8-release.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-05-12-OSSEC-Commercial-Support-Contracts.markdown.html">OSSEC Commercial Support Contracts</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
May 12, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/announcements.html">Announcements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/ossec.html">ossec</a>,
<a href="blog/tag/support.html">support</a>
</li>
</ul>
<p>OSSEC Commercial Support contracts will no longer be available directly
from Trend Micro as of March 2014; however all existing agreements will
continue to be fully supported until the end of their respective terms.</p>
<p><a href="blog/posts/2014-05-12-OSSEC-Commercial-Support-Contracts.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2013-09-20-OSSEC-2.7.1-Released.html">OSSEC 2.7.1 Released</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Apr 15, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/releases.html">Releases</a>
</li>
<li><i class="fa-fw fa fa-tag"></i>
<a href="blog/tag/minor.html">minor</a>
</li>
</ul>
<p>OSSEC 2.7.1 has been released and posted on our <a class="reference external" href="../../download">download
page</a>. You can check the <a class="reference external" href="/release-notes/ossec-hids-2.7.1-release-note.txt">release
notes</a> to find out
what has been updated in this release.</p>
<p><a href="blog/posts/2013-09-20-OSSEC-2.7.1-Released.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-04-29-OSSEC-2.8-Beta-1-is-Available.markdown.html">OSSEC 2.8 Beta-1 is Available</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Mar 29, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/announcements.html">Announcements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/beta.html">beta</a>,
<a href="blog/tag/ossec.html">ossec</a>
</li>
</ul>
<p>The OSSEC developers have been hard at work on version 2.8 and we have
made Beta-1 packages available for testing. See the
<a class="reference external" href="../..//downloads.html/">Downloads</a> page. Helps us with the testing and fine
tuning of this preliminary release.</p>
<p><a href="blog/posts/2014-04-29-OSSEC-2.8-Beta-1-is-Available.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-04-09-cve-2014-0160-heartbleed.markdown.html">CVE-2014-0160 (Heartbleed bug) Advisory for OSSEC</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Mar 09, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/announcements.html">Announcements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/security.html">security</a>,
<a href="blog/tag/cve.html">cve</a>,
<a href="blog/tag/update.html">update</a>
</li>
</ul>
<p>The recently disclosed CVE-2014-0160 vulnerability – heartbleed read
overrun – in OpenSSL may impact OSSEC installations where OSSEC was
deployed with OpenSSL support, either when built from source or
installed from RPMs. In particular this issue leaves ossec-authd open to
attack.</p>
<p><a href="blog/posts/2014-04-09-cve-2014-0160-heartbleed.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-04-08-Debian-Packages-Now-Available.markdown.html">Debian Packages Now Available</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Mar 04, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/announcements.html">Announcements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/debian.html">debian</a>,
<a href="blog/tag/deb.html">deb</a>
</li>
</ul>
<p>Our friends at <a class="reference external" href="http://www.alienvault.com/">AlienVault</a> have created
and now host Debian packages of OSSEC for Ubuntu Wheezy, Jessie and Sid.
See the <a class="reference external" href="../../downloads.html/">Downloads</a> page for the links to the packages
and AlienVault’s respositories. Thanks to OSSEC Project team member
Santiago Gonzalez for taking the time to create these packages and
AlientVault for hosting them</p>
<p><a href="blog/posts/2014-04-08-Debian-Packages-Now-Available.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2014-01-28-OSSEC-Moving-to-Github.markdown.html">OSSEC Moving to Github</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Jan 01, 2014
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/anouncements.html">Anouncements</a>
</li>
<li><i class="fa-fw fa fa-tags"></i>
<a href="blog/tag/git.html">git</a>,
<a href="blog/tag/hg.html">hg</a>,
<a href="blog/tag/development.html">development</a>
</li>
</ul>
<p>OSSEC is moving from bitbucket to github, and in the process moving to a
new method for accepting contributions. This is an exciting change that
we feel will help push OSSEC forward in 2014 and further into the
future.</p>
<p><a href="blog/posts/2014-01-28-OSSEC-Moving-to-Github.markdown.html">Read more ...</a></p>
<hr>
</div>
<div class="section">
<h2><a href="blog/posts/2013-12-15-OSSEC-Log-Management-with-Elasticsearch.markdown.html">OSSEC Log Management with Elasticsearch</a></h2>
<ul class="ablog-archive">
<li>
<i class="fa fa-calendar"></i>
Oct 15, 2013
</li>
<li>
<i class="fa-fw fa fa-user"></i><a href="blog/author/vic-hargrave.html">Vic Hargrave</a>
</li>
<li>
<i class="fa-fw fa fa-folder-open"></i><a href="blog/category/integrations.html">Integrations</a>
</li>
<li><i class="fa-fw fa fa-tag"></i>
<a href="blog/tag/siem.html">siem</a>
</li>
</ul>
<p>Among the many useful features of OSSEC is its capability to send alerts
to any system that can consume syslog data. This makes it easy to
combine OSSEC with a number of 3rd party SIEMs to store, search and
visualize security events. <a class="reference external" href="http://apps.splunk.com/app/300/">Splunk for
OSSEC</a> is one such system that works
on top of the Splunk platform.</p>
<p><a href="blog/posts/2013-12-15-OSSEC-Log-Management-with-Elasticsearch.markdown.html">Read more ...</a></p>
<hr>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="pull-right">
<a href="#">Back to top</a>
</p>
<p>
© Copyright 2010-2015, OSSEC Project Team.<br/>
OSSEC trademark and domain owned by <a href="http://www.trendmicro.com" target="_blank">Trend Micro, Inc.</a><br/>
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.3.1 -
Home page graphics courtesy of <a href="https://pixabay.com" target="_blank">pixabay</a>
</p>
</div>
</footer>
</body>
</html>