├── .gitignore ├── LICENSE ├── README.md └── json ├── angularjs.json ├── classic.json ├── consuming_tags.json ├── content-types.json ├── dangling_markup.json ├── encodings.json ├── events.json ├── file_uploads.json ├── frameworks.json ├── hoisting.json ├── impossible.json ├── obfuscation.json ├── polyglot.json ├── protocols.json ├── prototype-pollution.json ├── response-content-types.json ├── restricted_characters.json ├── special_tags.json ├── useful_tags.json ├── vuejs.json └── waf_bypass_global_obj.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/README.md -------------------------------------------------------------------------------- /json/angularjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/angularjs.json -------------------------------------------------------------------------------- /json/classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/classic.json -------------------------------------------------------------------------------- /json/consuming_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/consuming_tags.json -------------------------------------------------------------------------------- /json/content-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/content-types.json -------------------------------------------------------------------------------- /json/dangling_markup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/dangling_markup.json -------------------------------------------------------------------------------- /json/encodings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/encodings.json -------------------------------------------------------------------------------- /json/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/events.json -------------------------------------------------------------------------------- /json/file_uploads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/file_uploads.json -------------------------------------------------------------------------------- /json/frameworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/frameworks.json -------------------------------------------------------------------------------- /json/hoisting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/hoisting.json -------------------------------------------------------------------------------- /json/impossible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/impossible.json -------------------------------------------------------------------------------- /json/obfuscation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/obfuscation.json -------------------------------------------------------------------------------- /json/polyglot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/polyglot.json -------------------------------------------------------------------------------- /json/protocols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/protocols.json -------------------------------------------------------------------------------- /json/prototype-pollution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/prototype-pollution.json -------------------------------------------------------------------------------- /json/response-content-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/response-content-types.json -------------------------------------------------------------------------------- /json/restricted_characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/restricted_characters.json -------------------------------------------------------------------------------- /json/special_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/special_tags.json -------------------------------------------------------------------------------- /json/useful_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/useful_tags.json -------------------------------------------------------------------------------- /json/vuejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/vuejs.json -------------------------------------------------------------------------------- /json/waf_bypass_global_obj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PortSwigger/xss-cheatsheet-data/HEAD/json/waf_bypass_global_obj.json --------------------------------------------------------------------------------