Skip to content

Commit

Permalink
Update RustDesk T1219.yaml (#2706)
Browse files Browse the repository at this point in the history
* Update RustDesk T1219.yaml

Update RustDesk T1219

* Update T1219.yaml

* Update T1219.yaml

---------

Co-authored-by: Carrie Roberts <clr2of8@gmail.com>
  • Loading branch information
swathinator and clr2of8 authored Feb 26, 2024
1 parent e9b9f2e commit 29e3c6e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions atomics/T1219/T1219.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,18 @@ atomic_tests:
Stop-Process -Name "Connect" -force -erroraction silentlycontinue
name: powershell
elevation_required: true
- name: RustDesk Files Detected Test on Windows
description: |
An adversary may attempt to trick the user into downloading RustDesk and use this to maintain access to the machine.
Download of RustDesk installer will be at the destination location when successfully executed.
supported_platforms:
- windows
executor:
command: |-
$file = Join-Path $env:USERPROFILE "Desktop\rustdesk-1.2.3-1-x86_64.exe"
Invoke-WebRequest -OutFile $file https://github.com/rustdesk/rustdesk/releases/download/1.2.3-1/rustdesk-1.2.3-1-x86_64.exe
Start-Process -FilePath $file "/S"
cleanup_command: |-
$file = Join-Path $env:USERPROFILE "Desktop\rustdesk-1.2.3-1-x86_64.exe"
Remove-Item $file1 -ErrorAction Ignore
name: powershell

0 comments on commit 29e3c6e

Please sign in to comment.