Skip to content

Commit

Permalink
crypto_campaign
Browse files Browse the repository at this point in the history
  • Loading branch information
tccontre committed Dec 17, 2024
1 parent 6581cc6 commit 4a5edfb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type: Anomaly
status: production
description: The following analytic detects the creation of RAR Self-Extracting (SFX) files by monitoring the generation of file related to rar sfx .tmp file creation during sfx installation. This method leverages a heuristic to identify RAR SFX archives based on specific markers that indicate a combination of executable code and compressed RAR data. By tracking such activity, the analytic helps pinpoint potentially unauthorized or suspicious file creation events, which are often associated with malware packaging or data exfiltration. Legitimate usage may include custom installers or compressed file delivery.
kind: endpoint
search: '`sysmon` EventCode=11 Image="*.exe" TargetFilename IN ("*__tmp_rar_sfx_access_check*")
search: '`sysmon` EventCode=11 TargetFilename IN ("*__tmp_rar_sfx_access_check*")
| stats count min(_time) as firstTime max(_time) as lastTime by Image TargetFilename Computer
| rename Computer as dest
| rename TargetFilename as file_name
Expand Down

0 comments on commit 4a5edfb

Please sign in to comment.