├── .gitignore ├── README.md ├── bypass ├── README.md ├── path-bypass.bcheck └── waf-bypass.bcheck ├── img └── banner.jpg ├── information-gathering ├── README.md ├── backend-language.bcheck └── server-detect.bcheck └── injection ├── README.md └── template-injection.bcheck /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/README.md -------------------------------------------------------------------------------- /bypass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/bypass/README.md -------------------------------------------------------------------------------- /bypass/path-bypass.bcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/bypass/path-bypass.bcheck -------------------------------------------------------------------------------- /bypass/waf-bypass.bcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/bypass/waf-bypass.bcheck -------------------------------------------------------------------------------- /img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/img/banner.jpg -------------------------------------------------------------------------------- /information-gathering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/information-gathering/README.md -------------------------------------------------------------------------------- /information-gathering/backend-language.bcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/information-gathering/backend-language.bcheck -------------------------------------------------------------------------------- /information-gathering/server-detect.bcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/information-gathering/server-detect.bcheck -------------------------------------------------------------------------------- /injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/injection/README.md -------------------------------------------------------------------------------- /injection/template-injection.bcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/BCheck-Burp-scripts/HEAD/injection/template-injection.bcheck --------------------------------------------------------------------------------