• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bindings/H03-Aug-2015-24,13820,899

docs/H03-Aug-2015-11,2159,416

libmissing/H03-Aug-2015-41,01931,829

m4/H03-Aug-2015-10,1929,177

plugins/H03-Aug-2015-20,49616,796

snippet/H03-Aug-2015-420167

src/H03-Aug-2015-8,1065,540

AUTHORSH A D03-Aug-20150

COPYINGH A D03-Aug-201517.7 KiB340281

ChangeLogH A D03-Aug-2015477.5 KiB12,5769,599

HACKING.READMEH A D03-Aug-2015823 1713

INSTALLH A D03-Aug-201515.2 KiB366284

LICENSE.READMEH A D03-Aug-2015896 2115

Makefile.amH A D03-Aug-20151.6 KiB5243

Makefile.inH A D03-Aug-201556.9 KiB1,6501,546

NEWSH A D03-Aug-201520.2 KiB737379

READMEH A D03-Aug-20152.2 KiB9854

aclocal.m4H A D03-Aug-201545.4 KiB1,2771,153

compileH A D03-Aug-20153.7 KiB14479

config.guessH A D03-Aug-201543.9 KiB1,5021,291

config.h.inH A D03-Aug-201536.9 KiB1,148829

config.rpathH A D03-Aug-201518.1 KiB685588

config.subH A D03-Aug-201533.6 KiB1,7061,558

configureH A D03-Aug-20151.1 MiB40,98832,974

configure.inH A D03-Aug-201512.8 KiB387291

depcompH A D03-Aug-201518.2 KiB631407

gtk-doc.makeH A D03-Aug-20155.9 KiB197162

install-shH A D03-Aug-201513.3 KiB521344

libpreludedb-config.inH A D03-Aug-20151.6 KiB10579

ltmain.shH A D03-Aug-2015237.5 KiB8,4076,475

missingH A D03-Aug-201511.2 KiB377281

preludedb-admin.cH A D03-Aug-201539.9 KiB1,343941

HACKING.README

1This directory and its children contain LibPreludeDB, a library for using
2the Prelude database.
3
4Changes: if you wish to contribute a change which is a significant one
5in terms of the amount of code changes, please be aware that CS-SI wishes
6to retain copyright of the PreludeDB library. Therefore you will have to
7sign over copyright ownership of your code to CS-SI before we can include
8your changes in the main source tree.
9
10Before you start modifying anything for real, you should probably join
11the prelude-devel mailing list and send a mail describing what you want to
12do and how you want to do it so you don't waste time working on something we
13can't integrate. This also allows us to keep track of what's being worked on
14so efforts aren't duplicated.
15
16Please also read the information in the file LICENSE.README.
17

LICENSE.README

1This directory and its children contain LibPreludeDB, a library for using
2the Prelude database.
3
4Copyright (C) 2005-2015 CS-SI. All rights reserved.
5
6This library is made available under a dual licensing scheme.
7
8If you link LibPreludeDB against other code all of which is itself
9licensed under the terms of the GNU General Public License version 2
10dated June 1991 ("GPL v2") or compatible, then you may use LibPreludeDB
11under the terms of the GPL v2,as appearing in the file COPYING.  If the
12file COPYING is missing, you can obtain a copy of the GPL v2 from the
13Free Software Foundation Inc., 51 Franklin St, Fifth Floor, Boston, MA
1402110-1301, USA.
15
16For any other uses of LibPreludeDB, you must first obtain a commercial license
17from CS-SI.  Please send a mail to contact.prelude@c-s.fr for
18information about commercial licensing.
19
20Please also read the information in the file HACKING.README.
21

README

1PreludeDB Library (http://www.prelude-siem.com)
2PreludeDB is brought to you by CS-SI (http://www.c-s.fr).
3
4
5PreludeDB Library Overview
6========================
7
8The PreludeDB Library provides an abstraction layer upon the type and the format
9of the database used to store IDMEF alerts.
10It allows developers to use the Prelude IDMEF database easily and efficiently without worrying about SQL,
11and to access the database independently of the type/format of the database.
12
13
14
15Dependencies
16============
17
18   Libprelude must be installed first.
19
20   For Redhat based systems (CentOS, Fedora, etc.)
21       MySQL Plugin        :    mysql-devel
22       PostgresSQL Plugin  :    postgresql-devel
23       SQLite Plugin       :    sqlite-devel
24
25   For Debian systems
26       MySQL Plugin        :    libmysqlclient-dev
27       PostgresSQL Plugin  :    libpq-dev
28       SQLite Plugin       :    libsqlite3-dev
29
30
31
32IRC
33===
34
35If there's something you just can't find out elsewhere, you want to
36give feedback directly to the authors or you're just bored, visit
37#prelude on irc.freenode.net
38
39
40
41Get Support
42===========
43
44
45Prelude-user forums can be accessed at:
46	https://www.prelude-siem.org/projects/prelude/boards
47
48
49Commercial Support is available through the CS-SI company:
50	http://www.prelude-siem.com, contact.prelude@c-s.fr
51
52
53
54Help development
55================
56
571. SUBMITTING PATCHES
58
59The Prelude source is constantly changing. If you want to submit a patch,
60please do so from the most recent GIT source tree, subscribe to the
61prelude-devel forum and post your patch with a description of functionality.
62You can also attach patches to bugs on
63
64        https://www.prelude-siem.org
65
66
672. BUGS
68
69If you find any bugs, please report them to:
70
71	https://www.prelude-siem.org
72
73Please make sure that what you're reporting is actually a BUG and not
74a problem on your side.
75
76
773. SUGGESTIONS
78
79Subscribe to prelude-devel and give us your suggestions.
80
81
82
83How to install the PreludeDB Library
84==================================
85
86
87If you don't want to build the PreludeDB Library yourself, some distributions include binary packages for prelude.
88
89If you want to build PreludeDB, unpack the tarball and cd into the
90newly created directory. Then type :
91
92	./configure
93	make
94
95If everything works, su to root and type:
96
97	make install
98