1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-05-05 20:16:13 +02:00

Merge pull request #277 from bolli95/master

XSS detection tools added
This commit is contained in:
Swissky 2020-10-27 15:08:56 +01:00 committed by GitHub
commit ae3a4d4336
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,8 @@ Cross-site scripting (XSS) is a type of computer security vulnerability typicall
- [CSP Bypass](#csp-bypass)
- [Common WAF Bypass](#common-waf-bypass)
## Exploit code or POC
### Data grabber for XSS
@ -123,6 +125,16 @@ More exploits at [http://www.xss-payloads.com/payloads-list.html?a#category=all]
<script>debugger;</script>
```
### Tools
Most tools are also suitable for blind XSS attacks:
* [XSSStrike](https://github.com/s0md3v/XSStrike): Very popular but unfortunately not very well maintained
* [xsser](https://github.com/epsylon/xsser): Utilizes a headless browser to detect XSS vulnerabilities
* [Dalfox](https://github.com/hahwul/dalfox): Extensive functionality and extremely fast thanks to the implementation in Go
* [XSpear](https://github.com/hahwul/XSpear): Similar to Dalfox but based on Ruby
* [domdig](https://github.com/fcavallarin/domdig): Headless Chrome XSS Tester
## XSS in HTML/Applications
### Common Payloads