Urgent.News

One page, thousands of outlets. See who else covered it.

Editions

Tech

Go malware targets Mac crypto wallets and credentials

A newly analysed macOS information-stealing malware is targeting cryptocurrency holdings, passwords and Apple Keychain data after victims are tricked into executing malicious commands through ClickFix social-engineering attacks. The malware, written in the Go programming language and compiled as a native Mach-O executable, can steal browser credentials and cached authentication data while also…

A new macOS malware, written in Go and compiled as a Mach-O executable, is specifically targeting cryptocurrency wallets, credentials, and Apple Keychain data. This malware is delivered through ClickFix social engineering attacks, where victims are tricked into copying and pasting malicious commands into Terminal. Once executed, the malware can steal browser credentials, cached authentication data, and manipulate cryptocurrency transactions.

Its distinctive feature is the ability to siphon part or all of a victim's cryptocurrency balance, rather than just emptying a wallet. The malware searches for browser passwords, Apple Keychain information, browser cookies, and other files containing cached credentials. It can also target specific cryptocurrencies such as Bitcoin, Litecoin, Dogecoin, Monero, Ethereum, and XRP.

The malware was discovered while investigating an infection where a Mac user clicked a link delivered via email. ClickFix campaigns typically involve fake verification messages, troubleshooting instructions, or CAPTCHA-like prompts that trick users into executing commands themselves, rather than relying on conventional software installers or exploitable vulnerabilities.

Threat groups have increasingly adopted this approach, distributing information stealers through fake maintenance guides, system optimization pages, and other seemingly helpful content. The malware uses Go Garbler, a tool that obfuscates strings inside compiled Go programs, making it more difficult for analysts and security products to examine.

Researchers identified hardcoded attacker-controlled addresses in the malware samples, but the financial scale of the operation remains unclear due to the absence of publicly visible addresses. The malware was distributed by the Aeza Group network, a bulletproof hosting operation linked to cybercrime and ransomware activity.

Written by urgent.news from Arabian Post's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at thearabianpost.com →

More in Tech

"I built a lying MCP server on purpose — here's how you catch it"

TL;DR — A server's README can say anything. Its tools/list response either backs that up or it doesn't. I built mcp-worse — a second binary, sharing two of mcp-better 's tool names, that deliberately…

  • Author created malicious MCP server named mcp-worse
  • Server intentionally violates protocol's claims
  • mcp-worse used to test contrast-smoke tool

Spring proxies: JDK dynamic vs CGLIB

You put @Transactional on a method and a database transaction opens before it runs and commits when it returns — yet you never wrote a line to start or end one.

  • Spring uses proxies to add cross-cutting concerns like transactions and caching
  • JDK dynamic proxy generates object at runtime with interfaces, requires bean to have interface
  • CGLIB proxy creates subclass of real class at runtime, overrides methods for extra functionality

More from Monday 17 August →