Skip to content
Snippets Groups Projects
Commit 32d2d8ef authored by Tomáš Plesník's avatar Tomáš Plesník
Browse files

odstranena moznost pouziti retezce 'null' v jednotlivych parametrech udalosti

parent 56dc92c5
No related branches found
No related tags found
No related merge requests found
...@@ -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";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment