Skip to main content
mySites.guru
New features added last monthRelease RadarFile ManagerImpostor FilesUpdate QueueRogue AdminsMCP & APIJoomla VELCVE Index

Five Security Issues in JEM (Joomla Event Manager), and No Stable Fix Yet

Five Security Issues in JEM (Joomla Event Manager), and No Stable Fix Yet

JEM, the Joomla Event Manager, is a long-running events component for Joomla. During security research on the extensions our customers rely on, mySites.guru found several security issues in JEM and reported them privately to the developers and to the Joomla Security Strike Team. The Joomla project’s CVE Numbering Authority has assigned five CVE IDs.

The most serious of them lets an anonymous visitor, with no account at all, overwrite and publish a Joomla article. There is one catch that shapes everything below: the fixes exist so far only in a release candidate, not a stable release, so there is no finished version to update to yet. This post covers what was found, the CVE numbers, and what you can do right now.

TL;DR

  • mySites.guru found and privately reported multiple security issues in JEM (Joomla Event Manager), the com_jem component, confirmed against JEM 5
  • The most serious lets an anonymous visitor overwrite and publish a Joomla article with no login. Others allow a registered user to take over another user’s event or venue, a reflected cross-site scripting flaw in the PDF export link, and attendee data readable by any logged-in user
  • The Joomla CNA assigned five CVE IDs, and all five published on 27 August 2026, each crediting mySites.guru as the finder: CVE-2026-77991 (9.4 Critical), CVE-2026-77034 (6.9), CVE-2026-77990 and CVE-2026-77989 (5.3 each), and CVE-2026-77035 (5.1)
  • The fixes are in JEM 5.0.1, which at the time of writing exists only as a public release candidate, not a stable release. The newest stable version, 5.0.0, is affected
  • There is no stable fix to install yet. Apply the mitigations below, and update to JEM 5.0.1 the moment the stable release is available
  • mySites.guru flags every connected Joomla site running an affected version of JEM automatically

We reported these issues privately, as we always do. The reason this is public before a stable release exists is that the vendor pushed the corrected code to a public release candidate on GitHub, and once the fix is public the flaw is too. We are publishing now, with mitigations, so the site owners who depend on JEM hear it from us.

What was found

We confirmed four issues against JEM 5 and noted two more from reading the code. We are describing them at the level of what an attacker can do and how to limit it, not publishing working exploits.

An anonymous visitor can overwrite and publish an article

JEM has a front-end action that updates the Joomla content article linked to an event, and it performed no permission check before writing to that article, including setting it to published. A visitor with nothing more than an ordinary session could republish and overwrite an article, including one that was unpublished. This is the most serious of the set because it needs no account at all and it writes to core Joomla content.

A registered user can take over another user’s event or venue

The check that decides whether you may edit a record trusted values sent in the request rather than the values stored in the database. A logged-in user with permission to edit their own events could send another user’s record along with their own identifier and take the record over. This needs only a plain registered account on a site that lets members create events.

The export link copied the page’s request parameters into the page without escaping them, so a crafted link could inject markup that runs in the victim’s browser. Joomla’s standard text filtering does not stop this, because the injection does not need HTML tags.

Attendee data readable by any logged-in user

The attendee list only checked that a visitor was logged in, not that they were entitled to see that event’s attendees. Any registered user could read attendee names, usernames, registration dates and statuses for events they do not manage, including events that are not published.

Two further items we noted from the code but did not exploit: an authenticated back-end file write that did not restrict file types, and a stored cross-site scripting issue through unescaped category names. Both need an account with elevated permissions, so they rank below the four above.

The five CVEs

The Joomla project operates its own CVE Numbering Authority, and it assigned five identifiers for these issues on 22 August. All five published on 27 August 2026, and every record credits mySites.guru as the finder. Each one gives the affected range as 1.0.0 to 5.0.0, fixed in 5.0.1.

CVEIssueCVSS 4.0
CVE-2026-77991Privileged remote code execution, through the administrator source model writing dangerous file types including PHP9.4 Critical
CVE-2026-77034Unauthenticated article overwrite and force-publish6.9 Medium
CVE-2026-77990Attendee lists readable by any logged-in user5.3 Medium
CVE-2026-77989Reflected cross-site scripting via the PDF export link5.3 Medium
CVE-2026-77035Cross-user event and venue takeover through forged form fields5.1 Medium

The top score revises what we said above. We put the back-end file write in the “noted from the code, did not exploit” pile and ranked it below the four confirmed issues. The CNA scored it 9.4 Critical, the highest of the set, because writing PHP to the server is code execution however you arrive at it. It does need an account that already holds administrator access, which is why the record calls it privileged rather than unauthenticated. But if you are deciding who gets an administrator login on a site running JEM, decide it on the 9.4.

What to do right now

There is no stable release to update to yet, so the immediate job is to reduce who can reach the affected features:

  1. Find your JEM sites. If you use mySites.guru, we have already flagged every connected site running an affected version of JEM, so you have the list. If not, check each site’s installed extensions for JEM and confirm the version.
  2. Restrict front-end editing. If your site lets members create or edit events and venues from the front end, limit that to trusted users, or turn it off until you can update. This closes the record-takeover route and the article-overwrite route on any site that had front-end submission enabled.
  3. Restrict the front-end attendees view to event managers rather than any logged-in user, so attendee lists are not readable by ordinary members.
  4. Watch for JEM 5.0.1 stable and update the moment it ships. The fixes are already written; they just need to be released as a stable version rather than a release candidate. We will update this post when that happens.

Do not put the release candidate straight onto a production site you care about. A release candidate is a test build, not a finished release. The safer path is the mitigations above now, then the stable 5.0.1 when it is out.

How mySites.guru handles this across many sites

If you manage more than a handful of Joomla sites, the hard part of a story like this is not the fix, it is finding every site that needs it before an attacker does. mySites.guru keeps a live inventory of every extension on every connected site and flags the ones running affected versions, so a vulnerability like this turns into a filtered list rather than an afternoon of logging into control panels. When JEM 5.0.1 stable ships, the same list tells you which sites still need the update.

A note on how this was disclosed

Why is a set of security issues public before there is a stable fix to install? Because the corrected code was pushed to a public release candidate on GitHub before a coordinated release. Once the fix is public, anyone can compare it against the current version and see what changed, which is the moment a private disclosure stops being private. The Joomla Security Strike Team, which assigned the CVE numbers, put it to the vendor: the uncoordinated release candidate turned a responsible disclosure of security issues into a public matter.

We recently republished the Joomla project’s own guidance for extension developers handling a security report, twenty documented practices, and a couple of them are worth noting here. One is to keep the fix private until a coordinated stable release, rather than shipping it in a public release candidate. Another, point 17, is not to hide security fixes in vague language: the commits with these fixes are described with lines like “Improve frontend attendee access handling”, which give no sign that they are security fixes at all. None of this is a swipe at the JEM developers, who are volunteers and who engaged once the report reached them. It is why coordinated disclosure exists, and it is the same standard we hold every extension to.

Where this stands, four days on

Updated 26 August 2026. Four days after the CVE IDs were assigned there is still no stable JEM release, and the gap between what is public and what is installable has got wider rather than narrower.

Nine flaws, mapped in public

RC2 shipped on 24 August with nine security fixes listed in public, each one graded CRITICAL or HIGH, each naming the affected versions and linking the exact commit that fixes it. That is a complete guide to every flaw, published while there is still no stable release anyone can install.

Four days to open an email

The Joomla Security Strike Team assigned the five CVE IDs on 22 August and asked the vendor to push a stable release as soon as possible. The reply came on 26 August: “I apologise for the late response, I initially missed this email.”

RC2 was already two days old

That same message told us RC2 was expected to be ready “today”, and would go public after testing. It had been published on the project's own website on 24 August, security changelog and all, two days earlier.

Five CVE IDs, nothing to link to

Assigned on 22 August and still unpublished on 26 August, so there is no public record, no CVSS score and no official affected range for any of the five. Site owners cannot look up what they are exposed to.

One useful thing did come out of the RC2 changelog. The vendor’s own version labels list 4.4.2 and 4.5.0 as affected alongside 5.0.0, which is the first confirmation that this reaches back beyond JEM 5 into the 4.x line. If you run JEM 4.x and had filed this away as a JEM 5 problem, it affects you too. The same changelog notes that only stable releases confirmed in the project history are labelled, so older versions are not cleared, they are simply unlabelled.

We will update this post with the CVE record links, scores and the stable release version once they are available.

Timeline

  1. We report the issues privately

    mySites.guru is asked to review JEM 5. We confirm four issues live and note two more from reading the code, and report all of them the same day to the vendor and to the Joomla Security Strike Team.

  2. The vendor puts the fixes in a public release candidate

    JEM announces the corrections in a 5.0.1 release candidate and asks us to re-test. Shipping corrected code before a coordinated stable release is the moment this stopped being private, because anyone can compare it against the current version and see what changed.

  3. The Joomla CNA assigns five CVE IDs

    CVE-2026-77034, CVE-2026-77035, CVE-2026-77989, CVE-2026-77990 and CVE-2026-77991. The Strike Team tells the vendor that the uncoordinated release candidate has turned a responsible disclosure of security issues into a public matter. The records are reserved, not published.

  4. We publish this post and write to affected customers

    JEM is added to our vulnerability checks so every connected site on an affected version is flagged, and we email the affected accounts directly rather than waiting for a dashboard badge to change.

  5. RC2 ships with a full public security changelog

    Nine security entries, each graded CRITICAL or HIGH, each naming the affected stable versions and linking the commit that fixes it. The labels list 4.4.2 and 4.5.0 alongside 5.0.0, so this reaches back beyond JEM 5. There is still no stable release.

  6. The vendor breaks four days of silence

    The project's site admin apologises for missing the Strike Team's email, says the developers are working through the reports, and expects RC2 to be ready that day. RC2 had been public on the project's own website since 24 August.

  7. Still no stable fix, and still no published CVEs

    The newest JEM release remains 5.0.0-stable, from 8 July. All five CVE records still return nothing on cve.org. Every JEM site is on an affected version with no finished release to move to.

  8. All five CVE records publish

    Five days after assignment, all five records go live, and every one credits mySites.guru as the finder. The affected range is 1.0.0 to 5.0.0. The privileged remote code execution issue scores 9.4 Critical, the highest of the set. The newest JEM release is still 5.0.0-stable, so there is still nothing to install.

Further Reading

Frequently Asked Questions

What is affected?
JEM, the Joomla Event Manager component (element com_jem), by the JEM Community. We confirmed the issues against JEM 5. The fixes are in the 5.0.1 release, which at the time of writing exists only as a public release candidate on the vendor's GitHub, not as a stable download. Every JEM version below 5.0.1 should be treated as affected until a stable release is available.
What can an attacker actually do?
The most serious issue lets an anonymous visitor, with no login at all, overwrite and publish a Joomla content article. A registered member can take over another user's event or venue. A reflected cross-site scripting flaw in the PDF export link can run script in a visitor's browser. And any logged-in user can read attendee lists, including names, usernames and registration details, for events they do not manage. Two further issues need an elevated account: an arbitrary file write and a stored cross-site scripting flaw through category names.
Which CVEs cover this?
The Joomla project's CVE Numbering Authority assigned five IDs on 22 August 2026 and published all five on 27 August 2026, each one crediting mySites.guru as the finder: CVE-2026-77991 (9.4 Critical, privileged remote code execution), CVE-2026-77034 (6.9), CVE-2026-77990 (5.3), CVE-2026-77989 (5.3) and CVE-2026-77035 (5.1). Every record gives the affected range as 1.0.0 to 5.0.0, fixed in 5.0.1. Publishing the records does not change the practical position for site owners, because 5.0.1 still has no stable release.
Is there a fixed version I can install?
Not a stable one yet. The vendor has committed fixes to a public 5.0.1 release candidate (the 5.0.1-bugfixes branch on GitHub), but there is no 5.0.1 stable release at the time of writing. The newest stable version is 5.0.0, which is affected. Until 5.0.1 stable ships, the practical answer is mitigation, not an update. mySites.guru flags every connected JEM site so you know which ones to act on the moment a stable fix is released.
Do attackers need to log in?
For the most serious issue, no. One of the confirmed problems lets an anonymous visitor overwrite and publish a Joomla content article with no login. Others need only a plain registered account on a site that allows front-end event submission. One issue affects any logged-in user. The severity depends on how your site is configured, which is why the mitigations centre on restricting who can use JEM's front-end editing and attendee features.
How do I know which of my sites run JEM?
If you manage Joomla sites with mySites.guru, we already flag every connected site running an affected version of JEM automatically, so you get a list rather than checking each site by hand. If you do not use mySites.guru, search each site's installed extensions for JEM or Joomla Event Manager and check the version against 5.0.1.
EU icon: AI MODIFIEDWritten and edited by a human, with AI assistance. Our approach to AI

What our users say

Accredited Design LLC
Accredited Design LLCManaging Member
★★★★★

I've been with mySites.guru for years now, and it's a central function of my business. Managing multiple site updates at once has saved me untold hours of work to have otherwise needed to login to many sites individually. The other tools to remove unnecessary files, automate backups of websites and scan for malicious code are also extremely helpful. On many occasions, timely warnings from Phil Taylor about security holes in components, plugins and core CMS updates have saved me a lot of grief before bad things happened to my websites. When bad updates have already broken my websites, Phil was always two steps ahead and has surgically accurate information readily available to fix them. Sure, there are other similar services and self-hosted solutions out there, but having all of the things I've mentioned in one place and on one control panel are worth the price of admission in my book. Thank you Phil for all your hard work and for the service you provide to the Joomla and Wordpress communities!

Read more reviews
Johann de Jager
Johann de JagerBiographix
★★★★★

mySites.Guru is the Web industry's version of the Swiss Army Knife. I have total control over all my websites to manage logins, bulk add or update websites and plugins, monitor online status, scan websites for malware and more. mySites.Guru is my Big Brother that looks over my shoulder. If you are serious about managing website portfolio's effectively, this affordable service is a must.

Read more reviews

Read all 282 reviews →

Ready to Take Control?

Start with a free site audit. No credit card required.

Get Your Free Site Audit