A large-scale attack campaign targets Amazon AI to deploy malware that takes over the system.

Search for a command to run...

No comments yet. Be the first to comment.
Tổng Quan Hãy tưởng tượng: một nhân viên nhân sự tại một công ty hàng không ở Pakistan nhận được lời mời phỏng vấn hấp dẫn từ một thương hiệu tuyển dụng có vẻ rất quen thuộc. Một cuộc gọi video được l

Tóm tắt Ngày 19/03/2026, cơ quan chức năng Mỹ, Canada và Đức triệt phá hạ tầng của bốn botnet IoT lớn nhất từng được ghi nhận — Aisuru, Kimwolf, JackSkid và Mossad. Hơn ba triệu thiết bị bị nhiễm. Hơn

Tóm tắt Không có malware nào trong chiến dịch này. Payload cuối cùng mà nạn nhân nhận được là trình cài đặt chính thức của Level RMM, tải trực tiếp từ hạ tầng của chính Level, cài đặt bằng msiexec với

Phần lớn dữ liệu thu được từ một honeypot SSH internet-facing là nhiễu: dò mật khẩu liên tục, hoặc bot đăng nhập thành công rồi tải payload xuống chạy ngay lập tức. Nhưng ngày 27/6/2026, honeypot của

Từ tháng 1/2025, một nhóm tấn công chưa xác định danh tính đã duy trì hoạt động gián điệp mạng nhắm vào các cơ quan chính phủ tại Afghanistan, Kyrgyzstan, Tajikistan, Uzbekistan, Kazakhstan và Syria,

On July 13, 2025, a hacker used a GitHub account with the name “lkmanka58“ to submit a pull request to the open-source repository of Amazon Q – an AI programming extension for Visual Studio Code (VS Code). After gaining access, the attacker inserted a malicious prompt into the version 1.84.0 release, which instructed the AI to perform actions like deleting data: from system directories, using AWS CLI to terminate EC2, deleting S3 buckets, and removing IAM users...
Amazon stated that no customers were harmed, as the prompt could not execute in the user environment. However, some experts believe the prompt could execute but did not cause any damage.

Infected Amazon Q Extension:
Extension Name: amazon.q
Version: 1.84.0
Release Date: 07/17/2025
If your organization or system has version 1.84.0 installed, you should remove it immediately and review all IDE/terminal logs from the time this version was in use.
As mentioned above, initially, the attacker used phishing to gain permission to commit code to Amazon AI's GitHub repository. The attacker created a fake GitHub account with the name “lkmanka58.” This account submitted a pull request to the Amazon Q extension repository. Due to a mistake or oversight, this account was granted direct commit rights (write access). This means the attacker could push code to the main branch or release branches.

The next step the attacker would take is to insert a malicious prompt into the AI configuration file. In the Amazon Q source code, there is a file containing default prompts (system prompts) used to guide the AI on how to handle specific tasks. However, the attacker exploited this by editing the file src/agent/prompts/default-system-prompt.txt by adding the following command:

This is not a dangerous malicious code; it does not execute directly, but the clever part is that it instructs the AI to generate a dangerous Bash script:

Then it will continue to call AWS CLI

All three commands have significant impacts on the system:
aws s3 rb s3://[bucket-name] --force:
Deletes all data and structure in an S3 bucket.
Cannot be restored without a snapshot or backup.
aws ec2 terminate-instances --instance-ids [ids]
EC2 instances will be permanently shut down, and EBS volumes will also be deleted unless configured to be retained.
May cause loss of production data or important dev environments.
aws iam delete-user --user-name [user]
The deleted user will lose access permanently.
Can disrupt CI/CD pipelines or production apps if the user is associated with a token.
This is a very sophisticated and dangerous attack campaign, not requiring software vulnerabilities, where attackers exploit the AI model's code generation feature to carry out destructive actions "willingly."
Prompt injection attacks on AI agents have opened up a new and extremely dangerous direction in software and cloud security.
| IOC | Type | Description |
1294b38 | Git commit | Contains malicious prompt |
CLEANER.LOG | File log | File ghi log delete data at /tmp |
aws ec2 terminate-instances | CLI | Destroy EC2 server |
aws s3 rb --force | CLI | Delete all S3 data |
aws iam delete-user | CLI | Delete IAM user |
lkmanka58 | GitHub | Fake account contributing code |