Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Winscp rule from Akira Ransomware report #4939

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
title: Winscp Launch From Uncommon Folder
id: 7674f8ef-7141-4cf0-a311-ee359264c64c
status: experimental
description: Use Winscp from an uncommon folder
references:
- https://blogs.blackberry.com/en/2024/07/akira-ransomware-targets-the-latam-airline-industry
author: frack113
date: 2024-07-30
tags:
- attack.exfiltration
- attack.t1048
- detection.threat-hunting
logsource:
category: process_creation
product: windows
detection:
selection:
- Image|endswith: '\WinSCP.exe'
- OriginalFileName: 'winscp.exe'
filter:
Image|contains: ':\Program Files (x86)\WinSCP\'
condition: selection and not filter
falsepositives:
- Unknown
level: medium
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
title: Winscp CLI Command To Open FTP Connexion
id: c1477deb-37cf-4439-9ffb-44499acb89d0
status: experimental
description: Use Winscp command cli option to open a connexion
references:
- https://blogs.blackberry.com/en/2024/07/akira-ransomware-targets-the-latam-airline-industry
author: frack113
date: 2024-07-30
tags:
- attack.exfiltration
- attack.t1048
- detection.threat-hunting
logsource:
category: process_creation
product: windows
detection:
selection_img:
- Image|endswith: '\WinSCP.exe'
- OriginalFileName: 'winscp.exe'
selection_cmd:
CommandLine|contains|windash: '-command'
CommandLine|contains|all:
- 'open '
- 'ftp://' # cover ftp and sftp
condition: all of selection_*
falsepositives:
- Unknown
level: medium
Loading