From 8d0087154a827bda466d85798de0eb825ede9820 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Fri, 26 Oct 2018 10:23:57 -0500 Subject: [PATCH] Add missing record field comments --- CHANGES | 4 ++++ VERSION | 2 +- scripts/base/protocols/krb/files.bro | 12 ++++++------ scripts/policy/integration/barnyard2/main.bro | 3 +++ 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGES b/CHANGES index edae33a80f..4557b5f5ee 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ +2.6-beta2-50 | 2018-10-26 10:23:57 -0500 + + * Add missing record field comments (Jon Siwek, Corelight) + 2.6-beta2-49 | 2018-10-25 18:56:02 -0500 * Fix minor documentation mistakes (Jon Siwek, Corelight) diff --git a/VERSION b/VERSION index b47fe5c7f6..d5fd7c3652 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.6-beta2-49 +2.6-beta2-50 diff --git a/scripts/base/protocols/krb/files.bro b/scripts/base/protocols/krb/files.bro index 43e782c696..5a155d9184 100644 --- a/scripts/base/protocols/krb/files.bro +++ b/scripts/base/protocols/krb/files.bro @@ -7,18 +7,18 @@ module KRB; export { redef record Info += { - # Client certificate + ## Client certificate client_cert: Files::Info &optional; - # Subject of client certificate, if any + ## Subject of client certificate, if any client_cert_subject: string &log &optional; - # File unique ID of client cert, if any + ## File unique ID of client cert, if any client_cert_fuid: string &log &optional; - # Server certificate + ## Server certificate server_cert: Files::Info &optional; - # Subject of server certificate, if any + ## Subject of server certificate, if any server_cert_subject: string &log &optional; - # File unique ID of server cert, if any + ## File unique ID of server cert, if any server_cert_fuid: string &log &optional; }; diff --git a/scripts/policy/integration/barnyard2/main.bro b/scripts/policy/integration/barnyard2/main.bro index 10dd242049..96c74043f7 100644 --- a/scripts/policy/integration/barnyard2/main.bro +++ b/scripts/policy/integration/barnyard2/main.bro @@ -10,8 +10,11 @@ export { redef enum Log::ID += { LOG }; type Info: record { + ## Timestamp of the alert. ts: time &log; + ## Associated packet ID. pid: PacketID &log; + ## Associated alert data. alert: AlertData &log; };