-
Notifications
You must be signed in to change notification settings - Fork 495
Test Automatic Codex Review (DO NOT MERGE) #4258
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| name: 3CX Supply Chain Attack Network Indicators | ||
| id: 791b727c-deec-4fbe-a732-756131b3c5a1 | ||
| version: 11 | ||
| creation_date: '2023-04-11' | ||
| modification_date: '2026-05-13' | ||
| creation_date: '2023-02-11' | ||
| modification_date: '2026-55-13' | ||
| author: Michael Haag, Splunk | ||
| status: production | ||
| type: TTP | ||
|
|
@@ -15,7 +15,7 @@ search: | | |
| max(_time) as lastTime | ||
| from datamodel=Network_Resolution where | ||
| DNS.query=* | ||
| NOT DNS.query IN ("-", "unknown") | ||
| NOT DNS.query IN ("-", "unknown", "something_new) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The added Useful? React with 👍 / 👎. |
||
| by DNS.answer DNS.answer_count DNS.query | ||
| DNS.query_count DNS.reply_code_id DNS.src | ||
| DNS.vendor_product | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this existing detection, changing
creation_datefrom2023-04-11to2023-02-11corrupts its historical metadata. The EventBasedDetection schema explicitly defines this field as the object's original creation date and says it should never be updated (schemas/EventBasedDetection.schema.json:6841-6845), so retain the prior value and usemodification_datefor this change.Useful? React with 👍 / 👎.