├── .gitignore ├── README.md ├── config ├── cookie-jar.txt ├── http-headers.txt ├── parameters.txt └── urls-to-test.txt ├── example.app-settings.conf ├── extended-xss-search.py ├── inc ├── Clean.py ├── Color.py ├── Config.py ├── Connection.py ├── Headers.py ├── Parameters.py ├── Payload.py ├── Reflection.py ├── __init__.py ├── preparation │ ├── PrepareAttackRequest.py │ ├── PrepareBaseRequest.py │ └── __init__.py └── worker │ ├── WorkOnBaseRequest.py │ └── WorkOnTestRequest.py └── logs └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/README.md -------------------------------------------------------------------------------- /config/cookie-jar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/config/cookie-jar.txt -------------------------------------------------------------------------------- /config/http-headers.txt: -------------------------------------------------------------------------------- 1 | Accept: */* 2 | User-Agent: XSS Tester -------------------------------------------------------------------------------- /config/parameters.txt: -------------------------------------------------------------------------------- 1 | test 2 | more 3 | debug -------------------------------------------------------------------------------- /config/urls-to-test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example.app-settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/example.app-settings.conf -------------------------------------------------------------------------------- /extended-xss-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/extended-xss-search.py -------------------------------------------------------------------------------- /inc/Clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Clean.py -------------------------------------------------------------------------------- /inc/Color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Color.py -------------------------------------------------------------------------------- /inc/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Config.py -------------------------------------------------------------------------------- /inc/Connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Connection.py -------------------------------------------------------------------------------- /inc/Headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Headers.py -------------------------------------------------------------------------------- /inc/Parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Parameters.py -------------------------------------------------------------------------------- /inc/Payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Payload.py -------------------------------------------------------------------------------- /inc/Reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/Reflection.py -------------------------------------------------------------------------------- /inc/__init__.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /inc/preparation/PrepareAttackRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/preparation/PrepareAttackRequest.py -------------------------------------------------------------------------------- /inc/preparation/PrepareBaseRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/preparation/PrepareBaseRequest.py -------------------------------------------------------------------------------- /inc/preparation/__init__.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /inc/worker/WorkOnBaseRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/worker/WorkOnBaseRequest.py -------------------------------------------------------------------------------- /inc/worker/WorkOnTestRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damian89/extended-xss-search/HEAD/inc/worker/WorkOnTestRequest.py -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------