├── .gitignore ├── CommandLineUtils.py ├── LICENSE ├── NOTICE ├── PageRenderAPI.py ├── README.md ├── ReflectionChecker.py ├── RequestVariableProbe.py ├── Vagrantfile ├── XssMap.py ├── XssMapObject.py ├── XssMapPayloads.py ├── XssMapSettings.py ├── XssScanner.py ├── demo-site ├── demo-site-setup.sh └── demo-xss-site.php ├── install.sh ├── phantom-render.js ├── requirements.txt ├── sample-json ├── demoPresentation_GET_allExamples.json ├── xssmap_single_test_GET_input.json ├── xssmap_single_test_GET_output.json ├── xssmap_test_GET_input.json ├── xssmap_test_GET_output.json ├── xssmap_test_POST_input.json └── xssmap_test_POST_output.json ├── xss-tool-input.schema.json └── xss-tool-output.schema.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/.gitignore -------------------------------------------------------------------------------- /CommandLineUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/CommandLineUtils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/NOTICE -------------------------------------------------------------------------------- /PageRenderAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/PageRenderAPI.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/README.md -------------------------------------------------------------------------------- /ReflectionChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/ReflectionChecker.py -------------------------------------------------------------------------------- /RequestVariableProbe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/RequestVariableProbe.py -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/Vagrantfile -------------------------------------------------------------------------------- /XssMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/XssMap.py -------------------------------------------------------------------------------- /XssMapObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/XssMapObject.py -------------------------------------------------------------------------------- /XssMapPayloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/XssMapPayloads.py -------------------------------------------------------------------------------- /XssMapSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/XssMapSettings.py -------------------------------------------------------------------------------- /XssScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/XssScanner.py -------------------------------------------------------------------------------- /demo-site/demo-site-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/demo-site/demo-site-setup.sh -------------------------------------------------------------------------------- /demo-site/demo-xss-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/demo-site/demo-xss-site.php -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/install.sh -------------------------------------------------------------------------------- /phantom-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/phantom-render.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample-json/demoPresentation_GET_allExamples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/demoPresentation_GET_allExamples.json -------------------------------------------------------------------------------- /sample-json/xssmap_single_test_GET_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/xssmap_single_test_GET_input.json -------------------------------------------------------------------------------- /sample-json/xssmap_single_test_GET_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/xssmap_single_test_GET_output.json -------------------------------------------------------------------------------- /sample-json/xssmap_test_GET_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/xssmap_test_GET_input.json -------------------------------------------------------------------------------- /sample-json/xssmap_test_GET_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/xssmap_test_GET_output.json -------------------------------------------------------------------------------- /sample-json/xssmap_test_POST_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/xssmap_test_POST_input.json -------------------------------------------------------------------------------- /sample-json/xssmap_test_POST_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/sample-json/xssmap_test_POST_output.json -------------------------------------------------------------------------------- /xss-tool-input.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/xss-tool-input.schema.json -------------------------------------------------------------------------------- /xss-tool-output.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secdec/xssmap/HEAD/xss-tool-output.schema.json --------------------------------------------------------------------------------