Exposure of Private Personal Information to an Unauthorized Actor in xwiki-platform-rest-server
Description
XWiki Platform is a generic wiki platform offering runtime services for applications built on top of it. The modifications rest endpoint does not filter out entries according to the user's rights. Therefore, information hidden from unauthorized users are exposed though the modifications rest endpoint (comments and page names etc). Users should upgrade to XWiki 14.6+, 14.4.3+, or 13.10.8+. Older versions have not been patched. There are no known workarounds.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
org.xwiki.platform:xwiki-platform-rest-serverMaven | >= 8.1, < 13.10.8 | 13.10.8 |
org.xwiki.platform:xwiki-platform-rest-serverMaven | >= 14.0.0, < 14.4.3 | 14.4.3 |
org.xwiki.platform:xwiki-platform-rest-serverMaven | >= 14.5.0, < 14.6 | 14.6 |
Affected products
1- Range: >= 8.1, < 13.10.8
Patches
138dc1aa1a443XWIKI-19997: Improved modifications rest endpoint history summary filtering
3 files changed · +236 −14
xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/pom.xml+1 −1 modified@@ -32,7 +32,7 @@ <name>XWiki Platform - REST - Server</name> <description>Service for accessing XWiki through a RESTful API</description> <properties> - <xwiki.jacoco.instructionRatio>0.26</xwiki.jacoco.instructionRatio> + <xwiki.jacoco.instructionRatio>0.29</xwiki.jacoco.instructionRatio> </properties> <dependencies> <dependency>
xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/src/main/java/org/xwiki/rest/internal/resources/ModificationsResourceImpl.java+30 −13 modified@@ -23,9 +23,12 @@ import java.util.Date; import java.util.List; +import javax.inject.Inject; import javax.inject.Named; import org.xwiki.component.annotation.Component; +import org.xwiki.model.reference.DocumentReference; +import org.xwiki.model.reference.DocumentReferenceResolver; import org.xwiki.query.Query; import org.xwiki.query.QueryException; import org.xwiki.rest.XWikiResource; @@ -35,16 +38,25 @@ import org.xwiki.rest.model.jaxb.History; import org.xwiki.rest.model.jaxb.HistorySummary; import org.xwiki.rest.resources.ModificationsResource; +import org.xwiki.security.authorization.ContextualAuthorizationManager; import com.xpn.xwiki.doc.rcs.XWikiRCSNodeId; +import static org.xwiki.security.authorization.Right.VIEW; + /** * @version $Id$ */ @Component @Named("org.xwiki.rest.internal.resources.ModificationsResourceImpl") public class ModificationsResourceImpl extends XWikiResource implements ModificationsResource { + @Inject + private ContextualAuthorizationManager authorizationManager; + + @Inject + private DocumentReferenceResolver<String> resolver; + @Override public History getModifications(String wikiName, Integer start, Integer number, String order, Long ts, Boolean withPrettyNames) throws XWikiRestException @@ -67,21 +79,26 @@ public History getModifications(String wikiName, Integer start, Integer number, String spaceId = (String) fields[0]; List<String> spaces = Utils.getSpacesFromSpaceId(spaceId); String pageName = (String) fields[1]; - String language = (String) fields[2]; - if (language.equals("")) { - language = null; - } - XWikiRCSNodeId nodeId = (XWikiRCSNodeId) fields[3]; - Timestamp timestamp = (Timestamp) fields[4]; - Date modified = new Date(timestamp.getTime()); - String modifier = (String) fields[5]; - String comment = (String) fields[6]; - HistorySummary historySummary = DomainObjectFactory.createHistorySummary(objectFactory, - uriInfo.getBaseUri(), wikiName, spaces, pageName, language, nodeId.getVersion(), modifier, - modified, comment, Utils.getXWikiApi(componentManager), withPrettyNames); + DocumentReference documentReference = + this.resolver.resolve(Utils.getPageId(wikiName, spaces, pageName)); + if (this.authorizationManager.hasAccess(VIEW, documentReference)) { + String language = (String) fields[2]; + if (language.equals("")) { + language = null; + } + XWikiRCSNodeId nodeId = (XWikiRCSNodeId) fields[3]; + Timestamp timestamp = (Timestamp) fields[4]; + Date modified = new Date(timestamp.getTime()); + String modifier = (String) fields[5]; + String comment = (String) fields[6]; - history.getHistorySummaries().add(historySummary); + HistorySummary historySummary = + DomainObjectFactory.createHistorySummary(this.objectFactory, this.uriInfo.getBaseUri(), + wikiName, spaces, pageName, language, nodeId.getVersion(), modifier, modified, comment, + Utils.getXWikiApi(this.componentManager), withPrettyNames); + history.getHistorySummaries().add(historySummary); + } } return history;
xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/src/test/java/org/xwiki/rest/internal/resources/ModificationsResourceImplTest.java+205 −0 added@@ -0,0 +1,205 @@ +/* + * See the NOTICE file distributed with this work for additional + * information regarding copyright ownership. + * + * This is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this software; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. + */ +package org.xwiki.rest.internal.resources; + +import java.net.URI; +import java.sql.Timestamp; +import java.util.Calendar; +import java.util.Date; + +import javax.inject.Named; +import javax.inject.Provider; +import javax.ws.rs.core.UriInfo; + +import org.junit.jupiter.api.Test; +import org.mockito.Mock; +import org.suigeneris.jrcs.rcs.Version; +import org.xwiki.component.manager.ComponentManager; +import org.xwiki.component.util.ReflectionUtils; +import org.xwiki.model.reference.DocumentReference; +import org.xwiki.model.reference.DocumentReferenceResolver; +import org.xwiki.model.reference.EntityReferenceSerializer; +import org.xwiki.model.reference.SpaceReference; +import org.xwiki.model.reference.SpaceReferenceResolver; +import org.xwiki.model.reference.WikiReference; +import org.xwiki.query.Query; +import org.xwiki.query.QueryManager; +import org.xwiki.rest.model.jaxb.History; +import org.xwiki.rest.model.jaxb.HistorySummary; +import org.xwiki.rest.model.jaxb.Link; +import org.xwiki.security.authorization.ContextualAuthorizationManager; +import org.xwiki.test.annotation.BeforeComponent; +import org.xwiki.test.junit5.mockito.ComponentTest; +import org.xwiki.test.junit5.mockito.InjectComponentManager; +import org.xwiki.test.junit5.mockito.InjectMockComponents; +import org.xwiki.test.junit5.mockito.MockComponent; +import org.xwiki.test.mockito.MockitoComponentManager; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.xpn.xwiki.XWikiContext; +import com.xpn.xwiki.doc.rcs.XWikiRCSNodeId; +import com.xpn.xwiki.web.Utils; + +import static java.util.Arrays.asList; +import static java.util.Collections.singleton; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; +import static org.xwiki.security.authorization.Right.VIEW; + +/** + * Test of {@link ModificationsResourceImpl}. + * + * @version $Id$ + * @since 14.6 + * @since 14.4.3 + * @since 13.10.8 + */ +@ComponentTest +class ModificationsResourceImplTest +{ + @InjectMockComponents + private ModificationsResourceImpl modificationsResource; + + @MockComponent + private ContextualAuthorizationManager authorizationManager; + + @MockComponent + private DocumentReferenceResolver<String> resolver; + + @MockComponent + private QueryManager queryManager; + + @MockComponent + private SpaceReferenceResolver<String> spaceReferenceResolver; + + @MockComponent + private EntityReferenceSerializer<String> entityReferenceSerializer; + + @MockComponent + private Provider<XWikiContext> xcontextProvider; + + @MockComponent + @Named("local") + private EntityReferenceSerializer<String> localEntityReferenceSerializer; + + @InjectComponentManager + private MockitoComponentManager componentManager; + + @Mock + private Query query; + + @Mock + private XWikiContext xcontext; + + @BeforeComponent + void beforeComponent() throws Exception + { + this.xcontext = mock(XWikiContext.class); + when(this.xcontextProvider.get()).thenReturn(this.xcontext); + this.componentManager.registerComponent(ComponentManager.class, "context", this.componentManager); + } + + @Test + void getModifications() throws Exception + { + when(this.xcontextProvider.get()).thenReturn(this.xcontext); + UriInfo uriInfo = mock(UriInfo.class); + when(uriInfo.getBaseUri()).thenReturn(new URI("/xwiki/rest")); + ReflectionUtils.setFieldValue(this.modificationsResource, "uriInfo", uriInfo); + Utils.setComponentManager(this.componentManager); + + when(this.queryManager.createQuery( + "select doc.space, doc.name, doc.language, rcs.id, rcs.date, rcs.author, rcs.comment " + + "from XWikiRCSNodeInfo as rcs, XWikiDocument as doc " + + "where rcs.id.docId = doc.id " + + "and rcs.date > :date " + + "order by rcs.date desc, rcs.id.version1 desc, rcs.id.version2 desc", + Query.XWQL)).thenReturn(this.query); + when(this.query.bindValue(any(), any())).thenReturn(this.query); + when(this.query.setLimit(anyInt())).thenReturn(this.query); + when(this.query.setOffset(anyInt())).thenReturn(this.query); + when(this.query.setWiki(any())).thenReturn(this.query); + when(this.query.execute()).thenReturn(asList( + new Object[] { + "Space", + "Viewable", + "en", + new XWikiRCSNodeId(new WikiReference("wikiId"), 42, new Version(1, 1)), + new Timestamp(1), + "modifierViewable", + "commentViewable" + }, + new Object[] { + "Space", + "NotViewable", + "fr", + new XWikiRCSNodeId(new WikiReference("wikiId"), 43, new Version(1, 2)), + new Timestamp(2), + "modifierNotViewable", + "commentNotViewable" + } + )); + + DocumentReference viewableDocumentReference = new DocumentReference("wikiId", "Space", "Viewable"); + DocumentReference notViewableDocumentReference = new DocumentReference("wikiId", "Space", "NotViewable"); + SpaceReference whateverSpaceReference = new SpaceReference("Space", new WikiReference("whatever")); + String viewableSerializedReference = "wikiId:Space.Viewable"; + String notViewableSerializedReference = "wikiId:Space.NotViewable"; + + when(this.authorizationManager.hasAccess(VIEW, viewableDocumentReference)).thenReturn(true); + when(this.authorizationManager.hasAccess(VIEW, notViewableDocumentReference)).thenReturn(false); + when(this.spaceReferenceResolver.resolve("Space", new WikiReference("whatever"))) + .thenReturn(whateverSpaceReference); + when(this.entityReferenceSerializer.serialize(viewableDocumentReference)) + .thenReturn(viewableSerializedReference); + when(this.resolver.resolve(viewableSerializedReference)).thenReturn(viewableDocumentReference); + when(this.entityReferenceSerializer.serialize(notViewableDocumentReference)) + .thenReturn(notViewableSerializedReference); + when(this.resolver.resolve(notViewableSerializedReference)).thenReturn(notViewableDocumentReference); + when(this.localEntityReferenceSerializer.serialize(whateverSpaceReference)).thenReturn("Space"); + + History history = this.modificationsResource.getModifications("wikiId", 0, 10, "desc", 1L, false); + + HistorySummary expectedHistorySummary = new HistorySummary(); + expectedHistorySummary.setPageId("wikiId:Space.Viewable"); + expectedHistorySummary.setWiki("wikiId"); + expectedHistorySummary.setSpace("Space"); + expectedHistorySummary.setName("Viewable"); + expectedHistorySummary.setVersion("1.1"); + expectedHistorySummary.setMajorVersion(1); + expectedHistorySummary.setMinorVersion(1); + Calendar expectedCalendar = Calendar.getInstance(); + expectedCalendar.setTime(new Date(new Timestamp(1).getTime())); + expectedHistorySummary.setModified(expectedCalendar); + expectedHistorySummary.setModifier("modifierViewable"); + expectedHistorySummary.setLanguage("en"); + expectedHistorySummary.setComment("commentViewable"); + Link expectedLink = new Link(); + expectedLink.setHref("/xwiki/rest/wikis/wikiId/spaces/Space/pages/Viewable/translations/en/history/1.1"); + expectedLink.setRel("http://www.xwiki.org/rel/page"); + expectedHistorySummary.withLinks(expectedLink); + ObjectMapper objectMapper = new ObjectMapper(); + assertEquals(objectMapper.writeValueAsString(singleton(expectedHistorySummary)), + objectMapper.writeValueAsString(history.getHistorySummaries())); + } +}
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
5- github.com/advisories/GHSA-p88w-fhxw-xvccghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2022-41936ghsaADVISORY
- github.com/xwiki/xwiki-platform/commit/38dc1aa1a4435f24d58f5b8e4566cbcb0971f8ffghsaWEB
- github.com/xwiki/xwiki-platform/security/advisories/GHSA-p88w-fhxw-xvccghsaWEB
- jira.xwiki.org/browse/XWIKI-19997ghsaWEB
News mentions
0No linked articles in our index yet.