Skip to content

Commit

Permalink
Feature 13 (#14)
Browse files Browse the repository at this point in the history
changes for #13

Signed-off-by: Zach Christensen <[email protected]>
ZachChristensen28 authored Sep 7, 2022
1 parent 30f61e2 commit d371db0
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -36,6 +36,7 @@ Version 1.0.2
New
- added `first_seen`, `last_seen`, and `last_updated` to category field (#8).
- added `site_name` to existing `bunit` field (#13).
Updated
- Changed app logo background to transparent.
4 changes: 2 additions & 2 deletions docs/configure/bunit.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,6 @@

The bunit field will most likely need to be updated. Every organization will have different values for this field. The current configuration is described in the following table.

Mapped Field | Crowdstrike field
Mapped Field | Crowdstrike fields
------------ | -----------------
bunit | `falcon_device.ou{}`
bunit | `falcon_device.ou{}`, `falcon_device.site_name`
1 change: 1 addition & 0 deletions docs/releases/index.md
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ Crowdstrike Device Add-on Version | [3.x](https://splunkbase.splunk.com/app/5570
### New

- added `first_seen`, `last_seen`, and `last_updated` to category field ([#8](https://github.com/ZachChristensen28/SA-CrowdstrikeDevices/issues/8)).
- added `site_name` to existing `bunit` field ([#13](https://github.com/ZachChristensen28/SA-CrowdstrikeDevices/issues/13)).

### Updated

2 changes: 1 addition & 1 deletion src/SA-CrowdstrikeDevices/default/savedsearches.conf
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ search = `sa_crowdstrike_index` sourcetype="crowdstrike:device:json" \
nt_host=lower('falcon_device.hostname'),\
dns=lower(nt_host.".".'falcon_device.machine_domain'),\
mac=lower(replace('falcon_device.mac_address', "-", ":")),\
bunit=lower(replace(mvjoin('falcon_device.ou{}', ","), " ", "_")),\
bunit=lower(replace(mvjoin(mvappend('falcon_device.ou{}', 'falcon_device.site_name'), ","), " ", "_")),\
priority=case(match(category, "domain_controller"), "critical", match(category, "server|ubuntu|rhel|linux"), "high", true(), "medium"),\
is_expected=if(priority=="critical", "true", "false"),\
_key=md5(nt_host)\

0 comments on commit d371db0

Please sign in to comment.