Generated docs from job=generate-docs branch=master [ci skip]

This commit is contained in:
Atomic Red Team doc generator
2025-08-21 02:55:29 +00:00
parent 095f02e89a
commit 2b81f68a5c
3 changed files with 40 additions and 11 deletions
+13 -4
View File
@@ -85846,13 +85846,22 @@ collection:
atomic_tests:
- name: using device audio capture commandlet
auto_generated_guid: 9c3ad250-b185-4444-b5a9-d69218a10c95
description: "[AudioDeviceCmdlets](https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet)\n"
description: |
Uses AudioDeviceCmdlets to set the default recording device and simulate audio capture.
Module repo: [AudioDeviceCmdlets](https://github.com/frgnca/AudioDeviceCmdlets)
supported_platforms:
- windows
dependencies:
- description: AudioDeviceCmdlets module must be installed
prereq_command: "if (Get-Module -ListAvailable -Name AudioDeviceCmdlets) {
exit 0 } else { exit 1 } \n"
get_prereq_command: "Install with: Install-Module -Name AudioDeviceCmdlets
-Force\" \n"
executor:
command: 'powershell.exe -Command WindowsAudioDevice-Powershell-Cmdlet
'
command: |
$mic = Get-AudioDevice -Recording
Set-AudioDevice -ID $mic.ID
Start-Sleep -Seconds 5
name: powershell
- name: Registry artefact when application use microphone
auto_generated_guid: 7a21cce2-6ada-4f7c-afd9-e1e9c481e44a
+13 -4
View File
@@ -70902,13 +70902,22 @@ collection:
atomic_tests:
- name: using device audio capture commandlet
auto_generated_guid: 9c3ad250-b185-4444-b5a9-d69218a10c95
description: "[AudioDeviceCmdlets](https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet)\n"
description: |
Uses AudioDeviceCmdlets to set the default recording device and simulate audio capture.
Module repo: [AudioDeviceCmdlets](https://github.com/frgnca/AudioDeviceCmdlets)
supported_platforms:
- windows
dependencies:
- description: AudioDeviceCmdlets module must be installed
prereq_command: "if (Get-Module -ListAvailable -Name AudioDeviceCmdlets) {
exit 0 } else { exit 1 } \n"
get_prereq_command: "Install with: Install-Module -Name AudioDeviceCmdlets
-Force\" \n"
executor:
command: 'powershell.exe -Command WindowsAudioDevice-Powershell-Cmdlet
'
command: |
$mic = Get-AudioDevice -Recording
Set-AudioDevice -ID $mic.ID
Start-Sleep -Seconds 5
name: powershell
- name: Registry artefact when application use microphone
auto_generated_guid: 7a21cce2-6ada-4f7c-afd9-e1e9c481e44a
+14 -3
View File
@@ -20,7 +20,8 @@ Malware or scripts may be used to interact with the devices through an available
<br/>
## Atomic Test #1 - using device audio capture commandlet
[AudioDeviceCmdlets](https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet)
Uses AudioDeviceCmdlets to set the default recording device and simulate audio capture.
Module repo: [AudioDeviceCmdlets](https://github.com/frgnca/AudioDeviceCmdlets)
**Supported Platforms:** Windows
@@ -41,10 +42,20 @@ Set-AudioDevice -ID $mic.ID
Start-Sleep -Seconds 5
```
#### Dependencies
#### Dependencies: Run with `powershell`!
##### Description: AudioDeviceCmdlets module must be installed
##### Check Prereq Commands:
```powershell
Install-Module -Name AudioDeviceCmdlets -Force
if (Get-Module -ListAvailable -Name AudioDeviceCmdlets) { exit 0 } else { exit 1 }
```
##### Get Prereq Commands:
```powershell
Install with: Install-Module -Name AudioDeviceCmdlets -Force"
```