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

pridana moznost pouziti 'undef' u vybranych polozek udalosti

parent f89e9d8a
No related branches found
No related tags found
No related merge requests found
......@@ -371,39 +371,39 @@ I. Functions, Arguments and Calls
# SOURCE_TYPE - VARCHAR 64
# Type of source of reported attack/issue. Currently supported values are:
# IP, URL, Reply-To:
# 'IP', 'URL', 'Reply-To:'
$source_type = "IP";
# SOURCE - VARCHAR 256
# identification of an attack source/origin according to source_type
# Identification of an attack source/origin according to source_type.
$source = "123.123.123.123";
# TARGET_PROTO - VARCHAR 16
# Protocol type of reported attack/issue target. Supported are all L3 and L4
# protocols.
# protocols or 'undef'.
$target_proto = "TCP";
# TARGET_PORT - INT 2
# Port number of reported attack/issue target.
# Port number of reported attack/issue target or 'undef'.
$target_port = "22";
# ATTACK_SCALE - INT 4
# Definition of attack scale, e.g., number of affected targets. Null is also
# Definition of attack scale, e.g., number of affected targets. 'undef' is also
# possible when attack scale is not known or clear enough.
$attack_scale = "1234567890";
# NOTE - TEXT
# Some important(!) note or comment. Also, it may contain virus
# Some important(!) note, comment or 'undef'. Also, it may contain virus
# sample, phishing e-mail with headers and other accordingly to event type.
$note = "this threat is dangerous";
# PRIORITY - INT 1
# Subjective definition of incident severity. Values 0-255 are
# possible where 0 is the lowest priority.
# possible where 0 is the lowest priority or 'undef'.
$priority = "1";
# TIMEOUT - INT 2
# Subjective time (in minutes). After this time event might be
# Subjective time (in minutes) or 'undef'. After this time event might be
# considered timeouted.
$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