Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Warden
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pavel Valach
Warden
Commits
f388dfdc
Commit
f388dfdc
authored
9 years ago
by
Pavel Kácha
Browse files
Options
Downloads
Patches
Plain Diff
Documentation fixes (thanks to Radko Krkos)
parent
22669967
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
warden3/warden_server/README
+8
-7
8 additions, 7 deletions
warden3/warden_server/README
with
8 additions
and
7 deletions
warden3/warden_server/README
+
8
−
7
View file @
f388dfdc
...
@@ -13,8 +13,8 @@ Content
...
@@ -13,8 +13,8 @@ Content
------------------------------------------------------------------------------
------------------------------------------------------------------------------
A. Introduction
A. Introduction
Warden is a system for efficient sharing information about detected
events
Warden is a system for efficient sharing
of
information about detected
(threats). Warden Server is server-side part of the software, the
events
(threats). Warden Server is server-side part of the software, the
communication hub, allowing to publish detected events and download yet
communication hub, allowing to publish detected events and download yet
unprocessed ones.
unprocessed ones.
...
@@ -28,7 +28,7 @@ of Warden Server administration.
...
@@ -28,7 +28,7 @@ of Warden Server administration.
Warden Server is Python/WSGI based, written primarily with Apache mod_wsgi
Warden Server is Python/WSGI based, written primarily with Apache mod_wsgi
in mind. Other WSGI servers/frameworks are not yet tested, so your mileage
in mind. Other WSGI servers/frameworks are not yet tested, so your mileage
may vary. Authentication is X509 certificate (for machine or client
may vary. Authentication is X509 certificate (for machine or client
identification) + shared secret (for client i
c
entification, where
identification) + shared secret (for client i
d
entification, where
certificate does not suffice).
certificate does not suffice).
------------------------------------------------------------------------------
------------------------------------------------------------------------------
...
@@ -65,11 +65,11 @@ C. Installation
...
@@ -65,11 +65,11 @@ C. Installation
mysql> CREATE DATABASE warden3;
mysql> CREATE DATABASE warden3;
mysql> GRANT ALL ON warden3.* TO `warden`@`localhost`;
mysql> GRANT ALL ON warden3.* TO `warden`@`localhost`;
mysql> SET PASSWORD FOR 'warden'@'localhost' = PASSWORD('example');
mysql> SET PASSWORD FOR 'warden'@'localhost' = PASSWORD('example');
mysql> FLUSH PRIVILE
D
GES;
mysql> FLUSH PRIVILEGES;
* Create necessary table structure
* Create necessary table structure
mysql -p -u warden warden3 < warden3.0.sql
mysql -p -u warden warden3 < warden
_
3.0.sql
* Enable mod_wsgi, mod_ssl, include Warden configuration
* Enable mod_wsgi, mod_ssl, include Warden configuration
...
@@ -122,7 +122,7 @@ particular implementation object of the aspect, for example type of logger
...
@@ -122,7 +122,7 @@ particular implementation object of the aspect, for example type of logger
Log: FileLogger, SysLogger
Log: FileLogger, SysLogger
DB: MySQL
DB: MySQL
Auth: X509Authenticator, NoAuthenticator
Auth: X509Authenticator, NoAuthenticator
Validator: JSONSchemaValidator,
"
NoValidator
Validator: JSONSchemaValidator, NoValidator
Handler: WardenHandler
Handler: WardenHandler
"type" keyword is not mandatory, if not specified, first implementation
"type" keyword is not mandatory, if not specified, first implementation
...
@@ -150,7 +150,8 @@ object from particular section list is used ("FileLogger" for example).
...
@@ -150,7 +150,8 @@ object from particular section list is used ("FileLogger" for example).
JSONSchemaValidator: validate incoming events based on JSON schema file
JSONSchemaValidator: validate incoming events based on JSON schema file
filename: path to schema file, defaults to "idea.schema" at
filename: path to schema file, defaults to "idea.schema" at
installation directory
installation directory, for information on obtaining current
IDEA schema file, refer to https://idea.cesnet.cz/en/schema
MySQL: database storage backend
MySQL: database storage backend
host: database server host, default "localhost"
host: database server host, default "localhost"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment