【笔记】XSStrike学习笔记
前言
Advanced XSS Detection Suite(Github)
下载项目
1 | git clone https://github.com/s0md3v/XSStrike.git |
下载依赖
1 | python3 -m venv venv |
配置代理(可选)
- 修改
core/config.py文件第9行
1 | proxies = {'http': 'http://0.0.0.0:8080', 'https': 'http://0.0.0.0:8080'} |
XSS检测
--proxy:使用代理
1 | python3 xsstrike.py -u <url> |