Files
blue-team-tools/rules/proxy/proxy_empty_ua.yml
T

28 lines
642 B
YAML
Raw Normal View History

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