SShortSingh.
Back to feed

Hackers Use Google Sheets and Tampermonkey to Steal Crypto via Browser Hijack

0
·1 views

Cisco Talos has disclosed a high-priority ClickFix campaign in which attackers distribute fake cryptocurrency API vulnerability reports through forums and Telegram to trick users into pasting malicious JavaScript into their own browsers. The injected code establishes persistence via the Tampermonkey browser extension and fetches obfuscated scripts from publicly accessible Google Sheets using the Google Visualization API. Once active, the scripts hook browser fetch requests and clipboard activity, silently replacing legitimate cryptocurrency deposit addresses with attacker-controlled ones. Because the campaign relies entirely on legitimate Google infrastructure and user-trusted sites, the malicious traffic blends into normal browsing activity and largely evades detection. Security researchers recommend managing browser extension allowlists, monitoring script retrievals from Google Sheets APIs, and independently verifying destination wallet addresses through a separate trusted channel.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

AI Amplifies Senior Engineers Rather Than Replacing Them, Experts Say

The rise of large language models has triggered a structural shift in software engineering, boosting productivity and enabling lean teams — sometimes just a single founder — to build scalable products. Tools like Claude have removed code-writing as the primary bottleneck, shifting the real competitive edge toward system design, architecture, and complex integration. While some senior engineers feel uncertain about their relevance, industry observers argue this view is incomplete. Experienced professionals are considered more valuable than ever, as skills like sustainable architecture design, production reliability, and global-scale operations are amplified — not replaced — by AI. In precision-driven sectors such as banking and fintech, senior engineers who already operate at a high level stand to benefit most from these new capabilities.

0
ProgrammingDEV Community ·

Developer Builds Free Email Signature Generator After Fighting Outlook Rendering Issues

A developer named Nikolay has released SimpleSignature, a free email signature generator built from years of experimenting with pure CSS icons dating back to 2017. While applying CSS icon techniques to an email signature at his most recent job, he encountered significant rendering challenges with Classic Outlook, including spacing quirks and inconsistent behaviour across email clients. One notable workaround he discovered was using line-height: 0.5pt to effectively eliminate unwanted spacing in Classic Outlook. The tool requires no registration and does not store any user data. SimpleSignature is available for free at nikolaisabev.eu/SimpleSignature, with the developer welcoming feedback and bug reports from users.

0
ProgrammingDEV Community ·

Why WPF ScrollViewer Fails to Scroll Inside StackPanel and How to Fix It

A common WPF issue causes ScrollViewer to display no scrollbar when placed inside a vertical StackPanel, even with VerticalScrollBarVisibility set to Auto. The root cause is that StackPanel passes infinite available height to its children during layout measurement, so ScrollViewer never detects an overflow and expands to match its full content height. This results in ScrollableHeight being zero and the scrollbar remaining hidden, regardless of how many items the control contains. The fix is to place ScrollViewer inside a container that enforces a finite height constraint, such as a Grid row sized with a star value, a DockPanel using LastChildFill, or by assigning an explicit Height or MaxHeight directly to the ScrollViewer. Once a real height constraint is passed down, the ScrollViewer correctly calculates overflow and renders a functional scrollbar.

0
ProgrammingDEV Community ·

Developer builds GitHub Action that auto-explains CI failures in plain English

A developer named Gopalcnepal has built explain-ci, a GitHub Action that reads failed CI job logs and automatically posts a plain-English explanation as a pull request comment. The tool runs as a separate job after a failure, since the failed job's log is only queryable via API once that job has completed. Users must supply their own API key, and the action supports multiple AI providers including OpenAI, Gemini, Claude, Groq, and Mistral, as well as self-hosted Ollama instances for privacy-sensitive environments. During development, the creator discovered two bugs — one involving over-aggressive log redaction and another stemming from test inputs that did not reflect real-world data. The project is open source under the MIT license and is available on the GitHub Marketplace.

Hackers Use Google Sheets and Tampermonkey to Steal Crypto via Browser Hijack · ShortSingh