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

Problem child ingest pipeline bug #11367

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions packages/problemchild/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.2.0"
changes:
- description: Improved notation of painless script if block in ingest pipeline
type: enhancement
r0ot marked this conversation as resolved.
Show resolved Hide resolved
link: https://github.com/elastic/integrations/pull/11367
- version: "2.1.5"
changes:
- description: Add fields for integration package testing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: "Pipelines for ProblemChild detection"
processors:
- pipeline:
if: ctx.containsKey('event') && ctx['event'].containsKey('kind') && ctx['event'].containsKey('category') && ctx['event']['kind'] == 'event' && ctx['event']['category'].contains('process') && ctx.containsKey('host') && ctx['host'].containsKey('os') && (ctx['host']['os'].containsKey('type') || ctx['host']['os'].containsKey('family') || ctx['host']['os'].containsKey('platform')) && (ctx['host']['os']['type'] == 'windows' || ctx['host']['os']['type'] == 'Windows' || ctx['host']['os']['family'] == 'windows' || ctx['host']['os']['family'] == 'Windows' || ctx['host']['os']['platform'] == 'windows' || ctx['host']['os']['platform'] == 'Windows')
if: ctx.event?.kind == 'event' && ctx.event?.category?.contains('process') && (ctx.host?.os?.type?.toLowerCase() == 'windows' || ctx.host?.os?.family?.toLowerCase() == 'windows' || ctx.host?.os?.platform?.toLowerCase() == 'windows')
name: '{{ IngestPipeline "problem_child_inference_pipeline" }}'
on_failure:
- append:
Expand Down
2 changes: 1 addition & 1 deletion packages/problemchild/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.0.0
name: problemchild
title: "Living off the Land Attack Detection"
version: 2.1.5
version: 2.2.0
source:
license: "Elastic-2.0"
description: "ML solution package to detect Living off the Land (LotL) attacks in your environment. Requires a Platinum subscription."
Expand Down