Files
blue-team-tools/rules/web/web_exchange_proxyshell.yml
T

38 lines
1.3 KiB
YAML
Raw Normal View History

2021-08-07 09:22:24 +02:00
title: Exchange ProxyShell Pattern
id: 23eee45e-933b-49f9-ae1b-df706d2d52ef
status: experimental
2021-08-12 10:11:17 +02:00
description: Detects URL patterns that could be found in ProxyShell exploitation attempts against Exchange servers (failed and successful)
2021-08-07 09:22:24 +02:00
references:
- https://youtu.be/5mqid-7zp8k?t=2231
- https://blog.orange.tw/2021/08/proxylogon-a-new-attack-surface-on-ms-exchange-part-1.html
2021-08-07 10:10:12 +02:00
- https://peterjson.medium.com/reproducing-the-proxyshell-pwn2own-exploit-49743a4ea9a1
2021-08-08 23:05:23 +02:00
author: Florian Roth, Rich Warren
2021-08-08 18:52:49 +02:00
date: 2021/08/07
modified: 2021/08/08
2021-08-07 09:22:24 +02:00
tags:
- attack.initial_access
logsource:
category: webserver
detection:
2021-08-08 18:52:49 +02:00
selection_auto:
2021-08-08 23:05:56 +02:00
c-uri|contains: '/autodiscover.json'
2021-08-08 18:52:49 +02:00
selection_uri:
c-uri|contains:
2021-08-07 10:10:12 +02:00
- '/powershell'
2021-08-08 18:52:49 +02:00
- '/mapi/nspi'
2021-08-08 23:05:23 +02:00
- '/EWS'
- 'X-Rps-CAT'
2021-08-09 17:57:34 +02:00
selection:
sc-status: 401
2021-08-08 18:52:49 +02:00
selection_poc:
2021-08-07 09:22:24 +02:00
c-uri|contains:
# since we don't know how it will appear in the log files, we'll just use all versions
- 'autodiscover.json?@'
- 'autodiscover.json%3f@'
- '%3f@foo.com'
- 'Email=autodiscover/autodiscover.json'
- 'json?@foo.com'
2021-08-08 18:52:49 +02:00
condition: selection_auto and selection_uri or selection_poc
2021-08-07 09:22:24 +02:00
falsepositives:
2021-08-09 17:57:34 +02:00
- Unknown
level: medium