Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 688 Bytes

Ransomware - APTNotesJoinTable.md

File metadata and controls

22 lines (20 loc) · 688 Bytes

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


Defender For Endpoint

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

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