Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Barracuda Update #27545

Merged
merged 17 commits into from
Jun 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[INGEST:vendor = barracuda, product = email_protection, target_dataset = barracuda_email_protection_raw, no_hit = keep]
alter
tmp_payload = arrayindex(regextract(_raw_log, "\[\d\]: (\{.*?$)"), 0) |
alter
tmp_payload = arrayindex(regextract(_raw_log, "\[\d\]: (\{.*?$)"), 0)
| alter
tmp_get_timestamp = json_extract_scalar(tmp_payload, "$.timestamp")
| alter
// 2020-11-29T19:49:46+0000
_time = to_timestamp(parse_epoch("%Y-%m-%dT%H:%M:%S%z", json_extract_scalar(tmp_payload, "$.timestamp")) , "SECONDS") |
fields -tmp_payload;
_time = parse_timestamp("%Y-%m-%dT%H:%M:%S%z", tmp_get_timestamp)
| fields -tmp_payload, tmp_get_timestamp;
6 changes: 6 additions & 0 deletions Packs/BarracudaEmailProtection/ReleaseNotes/1_0_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Parsing Rules

##### Barracuda Email Protection Parsing Rule

- Updated the Parsing Rule logic.
2 changes: 1 addition & 1 deletion Packs/BarracudaEmailProtection/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Barracuda Email Protection",
"description": "Email protection from Barracuda",
"support": "xsoar",
"currentVersion": "1.0.0",
"currentVersion": "1.0.1",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down