[backend] Upsert indicator: skip decay computation if no score change (#15476)#15525
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #15525 +/- ##
=======================================
Coverage 33.52% 33.53%
=======================================
Files 3167 3167
Lines 214711 214732 +21
Branches 39437 39438 +1
=======================================
+ Hits 71990 72011 +21
Misses 142721 142721
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
ValentinBouzinFiligran
approved these changes
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposed changes
Related issues
Checklist
Further comments
When a Playbook sends a bundle that contains decayed Indicators, the function
addIndicatoris called with as input an object with for value ofx_opencti_scorethe current decayed score of the indicator. This decayed score is used to compute thevalid_untildate but the computation awaits the base score, not a decayed one, so the result date is invalid.This behavior cannot be resolved directly in the
addIndicatorfunction as we have no idea at this point if it is a creation or an upsert. So the fix is done directly in the upsert codebase, there are already some specific conditions to skip decay computation on upsert, the fix adds a new one when the live score does not changed.