1
0
Форкнуть 0

Create Suspicious Google Doc Links.md

This commit is contained in:
Justin C 2021-06-03 13:43:07 -07:00 коммит произвёл GitHub
Родитель 1cbb8fd2b5
Коммит 186129a02d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 39 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,39 @@
# Suspicious Google Doc Links
Use this query to find emails with message IDs that resemble IDs used in known attack emails and contain a link a document in Google Docs. These behaviors have
been observed leading to ransomware attacks.
## Query
```
EmailUrlInfo
| where Url startswith "https://docs.google.com/document/"
| join (EmailEvents
| where EmailDirection == "Inbound"
| where InternetMessageId matches regex "\\<\\w{ 38,42} \\@") on NetworkMessageId
```
## Category
This query can be used to detect the following attack techniques and tactics ([see MITRE ATT&CK framework](https://attack.mitre.org/)) or security configuration states.
| Technique, tactic, or state | Covered? (v=yes) | Notes |
|------------------------|----------|-------|
| Initial access |V | |
| Execution | | |
| Persistence | | |
| Privilege escalation | | |
| Defense evasion | | |
| Credential Access | | |
| Discovery | | |
| Lateral movement | | |
| Collection | | |
| Command and control | | |
| Exfiltration | | |
| Impact | | |
| Vulnerability | | |
| Exploit | | |
| Misconfiguration | | |
| Malware, component | | |
| Ransomware |V | |
## Contributor info
**Contributor:** Microsoft 365 Defender