Skip to content

Commit

Permalink
change START / STOP regex to include <= year 2000 (#1640)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Kidston authored Jan 19, 2024
1 parent 179b1c0 commit 7451bfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

FILTERING_DATA_TYPES = {"x-qradar:INOFFENSE": "INOFFENSE"}

START_STOP_STIX_QUALIFIER = r"START((t'\d{4}(-\d{2}){2}T\d{2}(:\d{2}){2}(\.\d+)?Z')|(\s\d{13}\s))STOP"
START_STOP_STIX_QUALIFIER = r"START((t'\d{4}(-\d{2}){2}T\d{2}(:\d{2}){2}(\.\d+)?Z')|(\s\d{12,}\s))STOP"
TIMESTAMP = r"^'\d{4}(-\d{2}){2}T\d{2}(:\d{2}){2}(\.\d+)?Z'$"
TIMESTAMP_MILLISECONDS = r"\.\d+Z$"

Expand Down

0 comments on commit 7451bfd

Please sign in to comment.