├── .gitignore ├── LICENSE ├── README.md ├── burpcollaborator.service ├── cleanup.sh ├── collaborator.config ├── dnshook.sh ├── install.sh ├── renewcert.sh └── startcollab.sh /.gitignore: -------------------------------------------------------------------------------- 1 | burp.jar 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/README.md -------------------------------------------------------------------------------- /burpcollaborator.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/burpcollaborator.service -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/cleanup.sh -------------------------------------------------------------------------------- /collaborator.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/collaborator.config -------------------------------------------------------------------------------- /dnshook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/dnshook.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/install.sh -------------------------------------------------------------------------------- /renewcert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/renewcert.sh -------------------------------------------------------------------------------- /startcollab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putsi/privatecollaborator/HEAD/startcollab.sh --------------------------------------------------------------------------------