From c62237ac4b081749eaac7eb7fd0f0818a87ef9d5 Mon Sep 17 00:00:00 2001 From: Mike Schiessl <77062930+MikeSchiessl@users.noreply.github.com> Date: Mon, 20 Dec 2021 15:14:09 +0100 Subject: [PATCH] Bugfix Release for v1.3.0 --- bin/modules/UlsTools.py | 4 ++-- docs/ADDITIONAL_FEATURES.md | 3 ++- docs/CHANGELOG.md | 10 ++++++++++ 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/bin/modules/UlsTools.py b/bin/modules/UlsTools.py index 0f73e22..ddba1be 100644 --- a/bin/modules/UlsTools.py +++ b/bin/modules/UlsTools.py @@ -223,13 +223,13 @@ def write_autoresume_ckpt(input, feed, autoresume_file, logline): checkpoint_line = logline.decode() if input == "ETP" and (feed == "THREAT" or feed =="PROXY" or feed == "AUP"): checkpoint_timestamp = json.loads(checkpoint_line)['event']['detectionTime'] - if input == "ETP" and feed == "DNS": + elif input == "ETP" and feed == "DNS": checkpoint_timestamp = json.loads(checkpoint_line)['query']['time'] elif input == "EAA" and feed == "ACCESS": checkpoint_timestamp = json.loads(checkpoint_line)['datetime'] else: aka_log.log.critical( - f"AUTORESUME - Unhandled Inpute / FEed detected {input} / {feed} (this should never happen !!)- Exiting") + f"AUTORESUME - Unhandled Input / Feed detected: '{input} / {feed}' (this should never happen !!)- Exiting") sys.exit(1) # Write out the file diff --git a/docs/ADDITIONAL_FEATURES.md b/docs/ADDITIONAL_FEATURES.md index efd3744..a5c9be4 100644 --- a/docs/ADDITIONAL_FEATURES.md +++ b/docs/ADDITIONAL_FEATURES.md @@ -6,7 +6,8 @@ This document handles the usage of features not explained anywhere else. - [RAWCMD (--rawcmd) Feature](#rawcmd---rawcmd-feature) - [ULS TRANSFORMATIONS](#uls-transformations) - [AUTORESUME / RESUME](#autoresume--resume) -- +- [POST PROCESSING OF FILES (FileOutput only)](#post-processing-of-files-fileoutput-only) + ## FILTER (--filter) Feature This feature got introduced in ULS v0.9.0. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index b93ec16..00f6f28 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,4 +1,14 @@ # Version History +## v1.3.1 +||| +|---|---| +|Date|2021-12-20 +|Kind| Bugfix release +|Author|mschiess@akamai.com +- **Bugfixes** + - fixed a checkpoint issue when using ETP / THREAD + - some doc fixes + ## v1.3.0 ||| |---|---|