Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-46456 — Reproducer for CVE-2026-46456 — Apache Camel camel-aws2-sqs inbound message-attribute header injection (Camel control-header injection via sqs:SendMessage → downstream producer steering / RCE) | Kitploit
工具/GitHubGitHub/oscerd/cve-2026-46456
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCloud SecurityAPI Security
GitHuboscerd/cve-2026-46456

CVE-2026-46456

Reproducer for CVE-2026-46456 — Apache Camel camel-aws2-sqs inbound message-attribute header injection (Camel control-header injection via sqs:SendMessage → downstream producer steering / RCE)

查看仓库
23天前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
内容在请求的语言中不可用。显示英文版本。

CVE-2026-46456 — camel-aws2-sqs Inbound Message-Attribute Header Injection

Runnable proof-of-concept reproducers for the same Apache Camel vulnerability, one per runtime:

RuntimeDirectoryStackHijacked sinkDemonstrated impact
Camel Spring Bootcamel-spring-boot/Spring Boot 3.2.0 + camel-spring-boot 4.18.2exec: via CamelExecCommand*remote code execution
Camel Quarkuscamel-quarkus/Quarkus 3.36.0 + Camel Quarkus 3.36.0 (bundles Camel 4.20.0)http via CamelHttpUriserver-side request forgery

Both are affected versions (fixed in 4.14.8 / 4.18.3 / 4.21.0), and both demonstrate the identical defect: Sqs2HeaderFilterStrategy configures only an outbound filter, so Sqs2Consumer maps every inbound SQS message attribute onto the Exchange — including Camel control headers. The route author never exposed a way to change the downstream target, but an attacker who can enqueue a message injects one and steers the downstream producer (CWE-20).

Why the two variants hijack different sinks

The Spring Boot variant proves RCE through an exec: sink. That sink is not reachable by default on Camel 4.20.0 (what Camel Quarkus 3.36.0 bundles): CAMEL-23315 added an allowControlHeaders option to camel-exec, defaulting to false, first shipped in 4.20.0. That hardening is independent of this CVE and does not fix it — the injected message attributes still become Exchange headers at 4.20.0. The Quarkus variant therefore hijacks the http producer via CamelHttpUri, which is honoured by default, yielding SSRF.

Each subdirectory is a self-contained project (plus a LocalStack container started by its docker-compose.yml) with its own Dockerfile and README. In short, for either:

root@kitploit:~
cd camel-spring-boot   # or: cd camel-quarkus
mvn clean package
docker compose up -d --build
curl -s http://localhost:8080/exploit/attack
docker compose down

Vulnerability Summary

Advisory: https://camel.apache.org/security/CVE-2026-46456.html

Disclaimer

These reproducers are provided for security research and authorized testing only, for a publicly disclosed and fixed vulnerability. Do not use them against systems without explicit permission.

下载工具
PropertyValue
Componentcamel-aws2-sqs
Affected Classorg.apache.camel.component.aws2.sqs.Sqs2HeaderFilterStrategy (no inbound filter) / Sqs2Consumer
CWECWE-20: Improper Input Validation
ImpactA message sender injects Camel control headers → steer downstream producers
Affected VersionsFrom 4.0.0 before 4.14.8, from 4.15.0 before 4.18.3, from 4.19.0 before 4.21.0
Fixed Versions4.14.8, 4.18.3, 4.21.0
JIRACAMEL-23506