CVE-2024-27135
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedImproper input validation in the Pulsar Function Worker allows a malicious authenticated user to execute arbitrary Java code on the Pulsar Function worker, outside of the sandboxes designated for running user-provided functions. This vulnerability also applies to the Pulsar Broker when it is configured with "functionsWorkerEnabled=true". This issue affects Apache Pulsar versions from 2.4.0 to 2.10.5, from 2.11.0 to 2.11.3, from 3.0.0 to 3.0.2, from 3.1.0 to 3.1.2, and 3.2.0. 2.10 Pulsar Function Worker users should upgrade to at least 2.10.6. 2.11 Pulsar Function Worker users should upgrade to at least 2.11.4. 3.0 Pulsar Function Worker users should upgrade to at least 3.0.3. 3.1 Pulsar Function Worker users should upgrade to at least 3.1.3. 3.2 Pulsar Function Worker users should upgrade to at least 3.2.1. Users operating versions prior to those listed above should upgrade to the aforementioned patched versions or newer versions.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceImproper input validation in Apache Pulsar Function Worker allows authenticated users to escape the sandbox and execute arbitrary Java code on the worker node itself. This also affects Pulsar Brokers with functionsWorkerEnabled=true, enabling remote code execution with worker-level privileges.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data>= 2.4.0, < 2.10.6>= 2.11.0, < 2.11.4>= 3.0.0, < 3.0.3>= 3.1.0, < 3.1.3= 3.2.0CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Confirm Function Worker is enabledCheck if the Pulsar Function Worker service is running. For standalone, look for the functions worker port (usually 8080 or 8443). For broker deployments, examine conf/broker.conf or conf/broker.yaml for functionsWorkerEnabled=true, or run: grep -r 'functionsWorkerEnabled' /path/to/pulsar/conf/Affected if Function Worker is enabled (standalone or via functionsWorkerEnabled=true in broker config)
-
Identify the installed Pulsar versionRun the Pulsar admin CLI: pulsar-admin versions or pulsar version. Alternatively, check the JAR files in the pulsar directory: ls -la pulsar-home/lib/ | grep pulsarAffected if Version matches: >= 2.4.0 and < 2.10.6, OR >= 2.11.0 and < 2.11.4, OR >= 3.0.0 and < 3.0.3, OR >= 3.1.0 and < 3.1.3, OR exactly 3.2.0
-
Verify the Function Worker is network accessibleCheck if the Function Worker REST API port is exposed. Look for webServicePort or webServicePortTLS in conf/broker.conf (for embedded worker) or conf/functions_worker.yml (for standalone worker). Confirm with: curl -s http://worker-host:8080/admin/v2/tenants or similar admin endpoint respondsAffected if Function Worker REST API is accessible over the network
-
Check for function submission activityReview Pulsar function submission logs for recent user activity. Look in logs/pulsar-functions.log or logs/functions-worker.log for entries containing 'createFunction' or 'updateFunction' operations, especially from untrusted usersAffected if Any function submissions have been made by non-admin or untrusted users since deployment
Environment is affected if Function Worker is enabled and the Pulsar version falls within the affected ranges listed above.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scoped2.10.62.11.43.0.3
Upgrade to the patched versions (2.10.6+, 2.11.4+, 3.0.3+, 3.1.3+, 3.2.1+) or newer. If immediate upgrade is not possible, restrict Function Worker access to trusted authenticated users only and monitor for suspicious function submissions.
Upgrade to 2.10.6+ (2.10.x branch), 2.11.4+ (2.11.x branch), 3.0.3+ (3.0.x branch), 3.1.3+ (3.1.x branch), or 3.2.1+ (3.2.x branch) depending on current version branch
- Identify the current Apache Pulsar version deployed in the environment by checking the broker and function worker configurations
- Determine whether the Pulsar Broker has functionsWorkerEnabled=true or if a standalone Pulsar Function Worker is in use
- For Pulsar 2.10.x deployments: upgrade to version 2.10.6 or later (preferably the latest 2.10.x release)
- For Pulsar 2.11.x deployments: upgrade to version 2.11.4 or later (preferably the latest 2.11.x release)
- For Pulsar 3.0.x deployments: upgrade to version 3.0.3 or later (preferably the latest 3.0.x release)
- For Pulsar 3.1.x deployments: upgrade to version 3.1.3 or later (preferably the latest 3.1.x release)
- For Pulsar 3.2.x deployments: upgrade to version 3.2.1 or later (preferably the latest 3.2.x release)
- Test the upgrade in a non-production environment to verify functionality before deploying to production
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing8.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $6,656.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2024-27135 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2024-27135 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data