remind-me
Audited by Socket on Jul 13, 2026
3 alerts found:
Anomalyx3This is primarily a clipboard payload generator: it creates a styled attributed string, embeds an image read from a predictable temp path (`/tmp/sticky_img.png`) into an `NSTextAttachment`, serializes the result to both RTFD and RTF, and overwrites the system clipboard with those rich-text payloads. While it shows no direct malware behavior (no network/process execution/credential access), the combination of (1) attacker-influencable content from `/tmp` and (2) delivery of rich-text-with-attachment to a system-wide clipboard is a meaningful security risk and could be used as part of a broader exploitation or social-engineering chain in downstream paste/open targets. Additional context would be needed to determine whether the workflow is benign testing or part of an attack.
This code is a macOS LaunchAgent installer that establishes user-level persistence to repeatedly run a bundled local wakeup_handler.sh script on load/mount and at a 60-second interval. The snippet itself shows no direct malicious payloads (no network, secrets, or obfuscated logic), but it does enable indirect execution of another file and routes output to fixed /tmp log files, which could expose sensitive data depending on what the handler does. Risk is therefore moderate and hinges on the missing wakeup_handler.sh implementation.
The code sets up user-context persistence via Windows Task Scheduler and executes a local PowerShell handler on logon and workstation unlock. The most concerning traits are stealth (-WindowStyle Hidden) and weakened execution safeguards (-ExecutionPolicy Bypass), combined with direct execution of an unverified local script path. While there is no explicit evidence of data theft or network activity in this fragment, the persistence + hidden + execution-policy-bypass pattern warrants review of wakeup_handler.ps1 and the packaging/integrity chain.