Files
blue-team-tools/rules/network/net_susp_dns_txt_exec_strings.yml
T

27 lines
677 B
YAML
Raw Normal View History

2020-01-30 17:26:09 +01:00
title: DNS TXT Answer with Possible Execution Strings
2019-11-12 23:12:27 +01:00
id: 8ae51330-899c-4641-8125-e39f2e07da72
2021-11-27 11:33:14 +01:00
status: test
2019-11-12 23:12:27 +01:00
description: Detects strings used in command execution in DNS TXT Answer
author: Markus Neis
2020-09-15 07:02:30 -06:00
references:
2021-11-27 11:33:14 +01:00
- https://twitter.com/stvemillertime/status/1024707932447854592
- https://github.com/samratashok/nishang/blob/master/Backdoors/DNS_TXT_Pwnage.ps1
date: 2018/08/08
modified: 2021/11/27
logsource:
2021-11-27 11:33:14 +01:00
category: dns
detection:
2021-11-27 11:33:14 +01:00
selection:
record_type: 'TXT'
answer|contains:
- 'IEX'
- 'Invoke-Expression'
- 'cmd.exe'
condition: selection
falsepositives:
2021-11-27 11:33:14 +01:00
- Unknown
level: high
2020-09-15 07:02:30 -06:00
tags:
2021-11-27 11:33:14 +01:00
- attack.command_and_control
- attack.t1071.004