EXPLORE
← Back to Explore
kqlHunting

APTNotes table that can be used to join with other data connectors

APTNotes table that can be used to join with other data connectors

Detection Query

let APTInfo = externaldata(Filename: string, Title: string, Source: 
string, Link: string, SHA1: string, Date: datetime, Year: int)
[@"https://raw.githubusercontent.com/aptnotes/data/master/APTnotes.csv"] 
with (format="csv", ignoreFirstRecord=True);
APTInfo
| where Year > 2015

Platforms

azure-sentinelmicrosoft-defender

Tags

threat-hunting
Raw Content
# APTNotes table that can be used to join with other data connectors

## Query Information

#### Description
APTNotes table that can be used to join with other data connectors

## Defender XDR
```KQL
let APTInfo = externaldata(Filename: string, Title: string, Source: 
string, Link: string, SHA1: string, Date: datetime, Year: int)
[@"https://raw.githubusercontent.com/aptnotes/data/master/APTnotes.csv"] 
with (format="csv", ignoreFirstRecord=True);
APTInfo
| where Year > 2015
```

## Sentinel
```KQL
let APTInfo = externaldata(Filename: string, Title: string, Source: 
string, Link: string, SHA1: string, Date: datetime, Year: int)
[@"https://raw.githubusercontent.com/aptnotes/data/master/APTnotes.csv"] 
with (format="csv", ignoreFirstRecord=True);
APTInfo
| where Year > 2015
```