Skip to content

Commit

Permalink
Generated docs from job=generate-docs branch=master [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Atomic Red Team doc generator committed Nov 5, 2024
1 parent 67f47a0 commit 25e3c39
Show file tree
Hide file tree
Showing 12 changed files with 61 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Atomic Red Team

![GitHub Action Status](https://github.com/redcanaryco/atomic-red-team/actions/workflows/validate-atomics.yml/badge.svg?branch=master) ![Atomics](https://img.shields.io/badge/Atomics-1660-flat.svg) ![GitHub Action Status](https://github.com/redcanaryco/atomic-red-team/actions/workflows/generate-docs.yml/badge.svg?branch=master)
![GitHub Action Status](https://github.com/redcanaryco/atomic-red-team/actions/workflows/validate-atomics.yml/badge.svg?branch=master) ![Atomics](https://img.shields.io/badge/Atomics-1661-flat.svg) ![GitHub Action Status](https://github.com/redcanaryco/atomic-red-team/actions/workflows/generate-docs.yml/badge.svg?branch=master)

Atomic Red Team™ is a library of tests mapped to the
[MITRE ATT&CK®](https://attack.mitre.org/) framework. Security teams can use
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions atomics/Indexes/Indexes-CSV/index.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1826,6 +1826,7 @@ discovery,T1082,System Information Discovery,34,operating system discovery ,70e1
discovery,T1082,System Information Discovery,35,"Check OS version via ""ver"" command",f6ecb109-df24-4303-8d85-1987dbae6160,command_prompt
discovery,T1082,System Information Discovery,36,"Display volume shadow copies with ""vssadmin""",7161b085-816a-491f-bab4-d68e974b7995,command_prompt
discovery,T1082,System Information Discovery,37,Identify System Locale and Regional Settings with PowerShell,ce479c1a-e8fa-42b2-812a-96b0f2f4d28a,command_prompt
discovery,T1082,System Information Discovery,38,Enumerate Available Drives via gdr,c187c9bc-4511-40b3-aa10-487b2c70b6a5,command_prompt
discovery,T1016.002,System Network Configuration Discovery: Wi-Fi Discovery,1,Enumerate Stored Wi-Fi Profiles And Passwords via netsh,53cf1903-0fa7-4177-ab14-f358ae809eec,command_prompt
discovery,T1010,Application Window Discovery,1,List Process Main Windows - C# .NET,fe94a1c3-3e22-4dc9-9fdf-3a8bdbc10dc4,command_prompt
discovery,T1497.003,Time Based Evasion,1,Delay execution with ping,8b87dd03-8204-478c-bac3-3959f6528de3,sh
Expand Down
1 change: 1 addition & 0 deletions atomics/Indexes/Indexes-CSV/windows-index.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1234,6 +1234,7 @@ discovery,T1082,System Information Discovery,34,operating system discovery ,70e1
discovery,T1082,System Information Discovery,35,"Check OS version via ""ver"" command",f6ecb109-df24-4303-8d85-1987dbae6160,command_prompt
discovery,T1082,System Information Discovery,36,"Display volume shadow copies with ""vssadmin""",7161b085-816a-491f-bab4-d68e974b7995,command_prompt
discovery,T1082,System Information Discovery,37,Identify System Locale and Regional Settings with PowerShell,ce479c1a-e8fa-42b2-812a-96b0f2f4d28a,command_prompt
discovery,T1082,System Information Discovery,38,Enumerate Available Drives via gdr,c187c9bc-4511-40b3-aa10-487b2c70b6a5,command_prompt
discovery,T1016.002,System Network Configuration Discovery: Wi-Fi Discovery,1,Enumerate Stored Wi-Fi Profiles And Passwords via netsh,53cf1903-0fa7-4177-ab14-f358ae809eec,command_prompt
discovery,T1010,Application Window Discovery,1,List Process Main Windows - C# .NET,fe94a1c3-3e22-4dc9-9fdf-3a8bdbc10dc4,command_prompt
discovery,T1217,Browser Bookmark Discovery,5,List Google Chrome / Opera Bookmarks on Windows with powershell,faab755e-4299-48ec-8202-fc7885eb6545,powershell
Expand Down
1 change: 1 addition & 0 deletions atomics/Indexes/Indexes-Markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2485,6 +2485,7 @@
- Atomic Test #35: Check OS version via "ver" command [windows]
- Atomic Test #36: Display volume shadow copies with "vssadmin" [windows]
- Atomic Test #37: Identify System Locale and Regional Settings with PowerShell [windows]
- Atomic Test #38: Enumerate Available Drives via gdr [windows]
- [T1016.002 System Network Configuration Discovery: Wi-Fi Discovery](../../T1016.002/T1016.002.md)
- Atomic Test #1: Enumerate Stored Wi-Fi Profiles And Passwords via netsh [windows]
- [T1010 Application Window Discovery](../../T1010/T1010.md)
Expand Down
1 change: 1 addition & 0 deletions atomics/Indexes/Indexes-Markdown/windows-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1742,6 +1742,7 @@
- Atomic Test #35: Check OS version via "ver" command [windows]
- Atomic Test #36: Display volume shadow copies with "vssadmin" [windows]
- Atomic Test #37: Identify System Locale and Regional Settings with PowerShell [windows]
- Atomic Test #38: Enumerate Available Drives via gdr [windows]
- [T1016.002 System Network Configuration Discovery: Wi-Fi Discovery](../../T1016.002/T1016.002.md)
- Atomic Test #1: Enumerate Stored Wi-Fi Profiles And Passwords via netsh [windows]
- [T1010 Application Window Discovery](../../T1010/T1010.md)
Expand Down
11 changes: 11 additions & 0 deletions atomics/Indexes/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102484,6 +102484,17 @@ discovery:
cleanup_command: 'cmd.exe /c del "%TMP%\a.txt"

'
- name: Enumerate Available Drives via gdr
auto_generated_guid: c187c9bc-4511-40b3-aa10-487b2c70b6a5
description: 'This test simulates an attacker attempting to list the available
drives on the system to gather data about file storage locations.

'
supported_platforms:
- windows
executor:
name: command_prompt
command: powershell.exe -c "gdr -PSProvider 'FileSystem'"
T1016.002:
technique:
modified: '2023-10-05T11:35:30.887Z'
Expand Down
11 changes: 11 additions & 0 deletions atomics/Indexes/windows-index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83921,6 +83921,17 @@ discovery:
cleanup_command: 'cmd.exe /c del "%TMP%\a.txt"

'
- name: Enumerate Available Drives via gdr
auto_generated_guid: c187c9bc-4511-40b3-aa10-487b2c70b6a5
description: 'This test simulates an attacker attempting to list the available
drives on the system to gather data about file storage locations.

'
supported_platforms:
- windows
executor:
name: command_prompt
command: powershell.exe -c "gdr -PSProvider 'FileSystem'"
T1016.002:
technique:
modified: '2023-10-05T11:35:30.887Z'
Expand Down
30 changes: 30 additions & 0 deletions atomics/T1082/T1082.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ Infrastructure as a Service (IaaS) cloud providers such as AWS, GCP, and Azure a

- [Atomic Test #37 - Identify System Locale and Regional Settings with PowerShell](#atomic-test-37---identify-system-locale-and-regional-settings-with-powershell)

- [Atomic Test #38 - Enumerate Available Drives via gdr](#atomic-test-38---enumerate-available-drives-via-gdr)


<br/>

Expand Down Expand Up @@ -1317,4 +1319,32 @@ cmd.exe /c del "%TMP%\a.txt"



<br/>
<br/>

## Atomic Test #38 - Enumerate Available Drives via gdr
This test simulates an attacker attempting to list the available drives on the system to gather data about file storage locations.

**Supported Platforms:** Windows


**auto_generated_guid:** c187c9bc-4511-40b3-aa10-487b2c70b6a5






#### Attack Commands: Run with `command_prompt`!


```cmd
powershell.exe -c "gdr -PSProvider 'FileSystem'"
```






<br/>
1 change: 1 addition & 0 deletions atomics/T1082/T1082.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ atomic_tests:
cmd.exe /c del "%TMP%\a.txt"
- name: Enumerate Available Drives via gdr
auto_generated_guid: c187c9bc-4511-40b3-aa10-487b2c70b6a5
description: |
This test simulates an attacker attempting to list the available drives on the system to gather data about file storage locations.
supported_platforms:
Expand Down
1 change: 1 addition & 0 deletions atomics/used_guids.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1689,3 +1689,4 @@ f6ecb109-df24-4303-8d85-1987dbae6160
e31564c8-4c60-40cd-a8f4-9261307e8336
bc177ef9-6a12-4ebc-a2ec-d41e19c2791d
ce479c1a-e8fa-42b2-812a-96b0f2f4d28a
c187c9bc-4511-40b3-aa10-487b2c70b6a5

0 comments on commit 25e3c39

Please sign in to comment.