forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SigmaHQ#4127 from D4rkCiph3r/in-memory-payload
Create proc_creation_macos_in-memory_payload_transfer.yml
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
rules/macos/process_creation/proc_creation_macos_susp_in_memory_download_and_compile.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
title: Potential In-Memory Download And Compile Of Payloads | ||
id: 13db8d2e-7723-4c2c-93c1-a4d36994f7ef | ||
status: experimental | ||
description: Detects potential in-memory downloading and compiling of applets using curl and osacompile as seen used by XCSSET malware | ||
references: | ||
- https://redcanary.com/blog/mac-application-bundles/ | ||
author: Sohan G (D4rkCiph3r), Red Canary (idea) | ||
date: 2023/08/22 | ||
tags: | ||
- attack.command_and_control | ||
- attack.execution | ||
- attack.t1059.007 | ||
- attack.t1105 | ||
logsource: | ||
category: process_creation | ||
product: macos | ||
detection: | ||
selection: | ||
CommandLine|contains|all: | ||
- 'osacompile' | ||
- 'curl' | ||
condition: selection | ||
falsepositives: | ||
- Unknown | ||
level: medium |