Skip to content

Commit

Permalink
Bugfix Release for v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSchiessl authored Dec 20, 2021
1 parent 25ed2a6 commit c62237a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/modules/UlsTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion docs/ADDITIONAL_FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 10 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Version History
## v1.3.1
|||
|---|---|
|Date|2021-12-20
|Kind| Bugfix release
|Author|[email protected]
- **Bugfixes**
- fixed a checkpoint issue when using ETP / THREAD
- some doc fixes

## v1.3.0
|||
|---|---|
Expand Down

0 comments on commit c62237a

Please sign in to comment.