├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── burp_csp_bypass.py ├── burp_scanner_issues.py ├── csp_known_bypasses.py ├── csp_parser.py ├── images └── csp_bypass.png └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/README.md -------------------------------------------------------------------------------- /burp_csp_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/burp_csp_bypass.py -------------------------------------------------------------------------------- /burp_scanner_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/burp_scanner_issues.py -------------------------------------------------------------------------------- /csp_known_bypasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/csp_known_bypasses.py -------------------------------------------------------------------------------- /csp_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/csp_parser.py -------------------------------------------------------------------------------- /images/csp_bypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/images/csp_bypass.png -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moloch--/CSP-Bypass/HEAD/tests.py --------------------------------------------------------------------------------