├── .env ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── burp_extension ├── pyritship │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── pyritship │ │ ├── PyRITShip.java │ │ ├── PyRITShipHttpHandler.java │ │ ├── PyRITShipPayloadGenerator.java │ │ ├── PyRITShipPayloadGeneratorProvider.java │ │ └── PyRITShipPayloadProcessor.java └── settings.gradle ├── docs ├── burp_extension.md ├── burp_gandalf_demo.md ├── images │ ├── burp_gandalf_intruder_marking.png │ ├── burp_gandalf_payload_generator.png │ ├── burp_gandalf_proxy.png │ ├── burp_gandalf_send_to_intruder.png │ ├── burp_gandalf_success.png │ ├── pyrit_ship.png │ └── vscode_gradle_build.png └── pyritship.md └── pyritship ├── app.py └── request_tester.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /burp_extension/pyritship/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/burp_extension/pyritship/build.gradle -------------------------------------------------------------------------------- /burp_extension/pyritship/src/main/java/pyritship/PyRITShip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/burp_extension/pyritship/src/main/java/pyritship/PyRITShip.java -------------------------------------------------------------------------------- /burp_extension/pyritship/src/main/java/pyritship/PyRITShipHttpHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/burp_extension/pyritship/src/main/java/pyritship/PyRITShipHttpHandler.java -------------------------------------------------------------------------------- /burp_extension/pyritship/src/main/java/pyritship/PyRITShipPayloadGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/burp_extension/pyritship/src/main/java/pyritship/PyRITShipPayloadGenerator.java -------------------------------------------------------------------------------- /burp_extension/pyritship/src/main/java/pyritship/PyRITShipPayloadGeneratorProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/burp_extension/pyritship/src/main/java/pyritship/PyRITShipPayloadGeneratorProvider.java -------------------------------------------------------------------------------- /burp_extension/pyritship/src/main/java/pyritship/PyRITShipPayloadProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/burp_extension/pyritship/src/main/java/pyritship/PyRITShipPayloadProcessor.java -------------------------------------------------------------------------------- /burp_extension/settings.gradle: -------------------------------------------------------------------------------- 1 | include 'pyritship' -------------------------------------------------------------------------------- /docs/burp_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/burp_extension.md -------------------------------------------------------------------------------- /docs/burp_gandalf_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/burp_gandalf_demo.md -------------------------------------------------------------------------------- /docs/images/burp_gandalf_intruder_marking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/burp_gandalf_intruder_marking.png -------------------------------------------------------------------------------- /docs/images/burp_gandalf_payload_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/burp_gandalf_payload_generator.png -------------------------------------------------------------------------------- /docs/images/burp_gandalf_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/burp_gandalf_proxy.png -------------------------------------------------------------------------------- /docs/images/burp_gandalf_send_to_intruder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/burp_gandalf_send_to_intruder.png -------------------------------------------------------------------------------- /docs/images/burp_gandalf_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/burp_gandalf_success.png -------------------------------------------------------------------------------- /docs/images/pyrit_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/pyrit_ship.png -------------------------------------------------------------------------------- /docs/images/vscode_gradle_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/images/vscode_gradle_build.png -------------------------------------------------------------------------------- /docs/pyritship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/docs/pyritship.md -------------------------------------------------------------------------------- /pyritship/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/pyritship/app.py -------------------------------------------------------------------------------- /pyritship/request_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PyRIT-Ship/HEAD/pyritship/request_tester.py --------------------------------------------------------------------------------