Skip to content

Commit 93a9a01

Browse files
committed
Learn Editor: Update work-with-stix-objects-indicators.md
1 parent f1f94ed commit 93a9a01

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

articles/sentinel/work-with-stix-objects-indicators.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ For more information about threat intelligence in Microsoft Sentinel, see [Threa
2424
> Microsoft Sentinel will ingest all threat intelligence into the new `ThreatIntelIndicators` and `ThreatIntelObjects` tables, while continuing to ingest the same data into the legacy `ThreatIntelligenceIndicator` table until July 31, 2025.
2525
> **Be sure to update your custom queries, analytics and detection rules, workbooks, and automation to use the new tables by July 31, 2025.** After this date, Microsoft Sentinel will stop ingesting data to the legacy `ThreatIntelligenceIndicator` table. We're updating all out-of-the-box threat intelligence solutions in Content hub to leverage the new tables.
2626
> We've made some important updates that may explain an increase in data ingestion.
27-
> 1. Data is now being republished to Log Analytics every week instead of every 12 days. This will cause spikes in traffic at the beginning of every week. This data is identifiable in the `ThreatIntelIndicators` and `ThreatIntelObjects` tables by filtering `SouceSystem=="LogARepublisher"`.
28-
> 2. The new tables now supports more rows, including the entire data object used in advanced hunting scenarios.
27+
> 1. Data is now republished to Log Analytics every **7 days** instead of every **12 days**. This change will result in traffic spikes at the beginning of each week. This data is identifiable in the `ThreatIntelIndicators` and `ThreatIntelObjects` tables by filtering `SouceSystem=="LogARepublisher"`.
28+
> 1. The new tables now support additional columns, including the full data object used in advanced hunting scenarios. To exclude specific columns, please refer to the [Transform away columns sent to Log Analytics](#transform-away-columns-sent-to-log-analytics)[Transform away columns sent to Log Analytics](#transform-away-columns-sent-to-log-analytics) section.
2929
> For more details on the updated schema and how it may affect your usage, see [ThreatIntelIndicators](/azure/azure-monitor/reference/tables/threatintelindicators) and [ThreatIntelObjects](/azure/azure-monitor/reference/tables/threatintelobjects).
30-
30+
>
3131
## Identify threat actors associated with specific threat indicators
3232

3333
This query is an example of how to correlate threat indicators, such as IP addresses, with threat actors:
@@ -144,6 +144,17 @@ ThreatIntelIndicators
144144
| project-reorder TimeGenerated, WorkspaceId, AzureTenantId, ThreatType, ObservableKey, ObservableValue, Confidence, Name, Description, LastUpdateMethod, SourceSystem, Created, Modified, ValidFrom, ValidUntil, IsDeleted, Tags, AdditionalFields, CreatedByRef, Extensions, ExternalReferences, GranularMarkings, IndicatorId, KillChainPhases, Labels, Lang, ObjectMarkingRefs, Pattern, PatternType, PatternVersion, Revoked, SpecVersion, NetworkIP, NetworkDestinationIP, NetworkSourceIP, DomainName, EmailAddress, FileHashType, FileHashValue, Url, x509Certificate, x509Issuer, x509CertificateNumber, Data
145145
```
146146

147+
## Transform away columns sent to Log Analytics.
148+
149+
[Transformations in Azure Monitor](/azure/azure-monitor/data-collection/data-collection-transformations) allow you to filter or modify incoming data before it's stored in a Log Analytics workspace. They're implemented as a Kusto Query Language (KQL) statement in a [data collection rule (DCR)](/azure/azure-monitor/data-collection/data-collection-rule-overview).
150+
151+
This example shows how to remove the Pattern column from the `ThreatIntelIndicators` table.
152+
153+
```
154+
source
155+
| project-away Pattern
156+
```
157+
147158
## Related content
148159

149160
For more information, see the following articles:

0 commit comments

Comments
 (0)