SigmaHQ/rules/proxy/proxy_empty_ua.yml

27 lines
667 B
YAML
Raw Normal View History

2017-07-08 14:37:44 +00:00
title: Empty User Agent
2019-11-12 22:12:27 +00:00
id: 21e44d78-95e7-421b-a464-ffd8395659c4
2017-07-08 14:37:44 +00:00
status: experimental
description: Detects suspicious empty user agent strings in proxy logs
author: Florian Roth
date: 2017/07/08
modified: 2020/09/03
2020-09-15 13:02:30 +00:00
references:
- https://twitter.com/Carlos_Perez/status/883455096645931008
2017-07-08 14:37:44 +00:00
logsource:
category: proxy
2017-07-08 14:37:44 +00:00
detection:
selection:
# Empty string - as used by Powershell's (New-Object Net.WebClient).DownloadString
2019-12-06 23:11:33 +00:00
c-useragent: ''
2017-07-08 14:37:44 +00:00
condition: selection
2017-09-12 21:54:04 +00:00
fields:
- ClientIP
2019-12-06 23:11:33 +00:00
- c-uri
- c-useragent
2017-07-08 14:37:44 +00:00
falsepositives:
- Unknown
level: medium
2020-09-15 13:02:30 +00:00
tags:
- attack.defense_evasion
- attack.command_and_control
- attack.t1071.001