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
32d2d8ef
Commit
32d2d8ef
authored
12 years ago
by
Tomáš Plesník
Browse files
Options
Downloads
Patches
Plain Diff
odstranena moznost pouziti retezce 'null' v jednotlivych parametrech udalosti
parent
56dc92c5
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
src/warden-client/doc/README
+7
-7
7 additions, 7 deletions
src/warden-client/doc/README
with
7 additions
and
7 deletions
src/warden-client/doc/README
+
7
−
7
View file @
32d2d8ef
...
@@ -371,7 +371,7 @@ I. Functions, Arguments and Calls
...
@@ -371,7 +371,7 @@ I. Functions, Arguments and Calls
# SOURCE_TYPE - VARCHAR 64
# SOURCE_TYPE - VARCHAR 64
# Type of source of reported attack/issue. Currently supported values are:
# Type of source of reported attack/issue. Currently supported values are:
# IP, URL, Reply-To:
, null
# IP, URL, Reply-To:
$source_type = "IP";
$source_type = "IP";
# SOURCE - VARCHAR 256
# SOURCE - VARCHAR 256
...
@@ -380,11 +380,11 @@ I. Functions, Arguments and Calls
...
@@ -380,11 +380,11 @@ I. Functions, Arguments and Calls
# TARGET_PROTO - VARCHAR 16
# TARGET_PROTO - VARCHAR 16
# Protocol type of reported attack/issue target. Supported are all L3 and L4
# Protocol type of reported attack/issue target. Supported are all L3 and L4
# protocols
and null
.
# protocols.
$target_proto = "TCP";
$target_proto = "TCP";
# TARGET_PORT - INT 2
# TARGET_PORT - INT 2
# Port number of reported attack/issue target
or null
.
# Port number of reported attack/issue target.
$target_port = "22";
$target_port = "22";
# ATTACK_SCALE - INT 4
# ATTACK_SCALE - INT 4
...
@@ -393,17 +393,17 @@ I. Functions, Arguments and Calls
...
@@ -393,17 +393,17 @@ I. Functions, Arguments and Calls
$attack_scale = "1234567890";
$attack_scale = "1234567890";
# NOTE - TEXT
# NOTE - TEXT
# Some important(!) note or comment
or null
. Also, it may contain virus
# Some important(!) note or comment. Also, it may contain virus
# sample, phishing e-mail with headers and other accordingly to event type.
# sample, phishing e-mail with headers and other accordingly to event type.
$note = "this threat is dangerous";
$note = "this threat is dangerous";
# PRIORITY - INT 1
# PRIORITY - INT 1
# Subjective definition of incident severity. Values 0-255
or null
are
# Subjective definition of incident severity. Values 0-255 are
# possible where 0 is the lowest priority.
# possible where 0 is the lowest priority.
$priority = "
null
";
$priority = "
1
";
# TIMEOUT - INT 2
# TIMEOUT - INT 2
# Subjective time (in minutes)
or null
. After this time event might be
# Subjective time (in minutes). After this time event might be
# considered timeouted.
# considered timeouted.
$timeout = "20";
$timeout = "20";
...
...
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