Skip to content

Commit

Permalink
[Filebeat][Crowdstrike] Adding fix to ingest pipeline for command lin…
Browse files Browse the repository at this point in the history
…e array handling (elastic#36496)

* [Filebeat][Crowdstrike] Adding fix to ingest pipeline for command line args array handling

* changelog PR link update

* adding missing semicolon

* adding testdata to test the process commandline arg being an empty string
  • Loading branch information
P1llus authored and Scholar-Li committed Feb 5, 2024
1 parent e1d7cb8 commit 4bd2a98
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Fix Filebeat Cisco module with missing escape character {issue}36325[36325] {pull}36326[36326]
- Fix panic when redact option is not provided to CEL input. {issue}36387[36387] {pull}36388[36388]
- Remove 'onFilteredOut' and 'onDroppedOnPublish' callback logs {issue}36299[36299] {pull}36399[36399]
- Added a fix for Crowdstrike pipeline handling process arrays {pull}36496[36496]

*Heartbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ processors:
commandLine = commandLine.trim();
if (commandLine != "") {
def args = Arrays.asList(/ /.split(commandLine));
def args = new ArrayList(Arrays.asList(/ /.split(commandLine)));
args.removeIf(arg -> arg == "");
ctx['process'] = new HashMap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"SeverityName": "High",
"FileName": "explorer.exe",
"FilePath": "\\Device\\HarddiskVolume1\\Windows",
"CommandLine": "C:\\Windows\\Explorer.EXE",
"CommandLine": "C:\\Windows\\Explorer.EXE --test",
"SHA256String": "6a671b92a69755de6fd063fcbe4ba926d83b49f78c42dbaeed8cdb6bbc57576a",
"MD5String": "ac4c51eb24aa95b77f705ab159189e24",
"MachineDomain": "CORP-DOMAIN",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"crowdstrike.event.CommandLine": "C:\\Windows\\Explorer.EXE",
"crowdstrike.event.CommandLine": "C:\\Windows\\Explorer.EXE --test",
"crowdstrike.event.ComputerName": "alice-laptop",
"crowdstrike.event.DetectDescription": "Terminated a process related to the deletion of backups, which is often indicative of ransomware activity.",
"crowdstrike.event.DetectId": "ldt:ec86abd353824e96765ecbe18eb4f0b4:38655257584",
Expand Down Expand Up @@ -67,9 +67,10 @@
"log.offset": 0,
"message": "Terminated a process related to the deletion of backups, which is often indicative of ransomware activity.",
"process.args": [
"C:\\Windows\\Explorer.EXE"
"C:\\Windows\\Explorer.EXE",
"--test"
],
"process.command_line": "C:\\Windows\\Explorer.EXE",
"process.command_line": "C:\\Windows\\Explorer.EXE --test",
"process.executable": "C:\\Windows\\Explorer.EXE",
"process.name": "explorer.exe",
"process.pid": 38684386611,
Expand Down Expand Up @@ -126,7 +127,7 @@
"log.flags": [
"multiline"
],
"log.offset": 2063,
"log.offset": 2071,
"message": "Incident score 1.2",
"service.type": "crowdstrike",
"tags": [
Expand Down Expand Up @@ -169,7 +170,7 @@
"log.flags": [
"multiline"
],
"log.offset": 2579,
"log.offset": 2587,
"message": "quarantined_file_update",
"related.user": [
"Crowdstrike"
Expand Down

0 comments on commit 4bd2a98

Please sign in to comment.