
PwnDoc is a pentest reporting application making it simple and easy to write your findings and generate a customizable Docx report. The main goal is to have more time to Pwn and less time to Doc by mutualizing data like vulnerabilities between users. https://github.com/pwndoc/pwndoc Features Multiple Language support Multiple Data support Great Customization Manage reusable Audit and Vulnerability Data Create Custom Sections Add custom fields to Vulnerabilities Vulnerabilities Management Multi-User reporting Docx Report Generation Docx Template customization Installation PwnDoc uses 3 containers: the backend, the frontend and the database. Production All 3 containers can be run at once using the docker-compose file in the root directory. For production, usage make sure to change the JWT secret in «src/lib/auth.js» and certificates in «ssl» folder Build and run Docker containers docker-compose up -d --build Display backend container logs docker-compose logs -f pwndoc-backend Stop/Start containers docker-compose stop docker-compose start Remove containers docker-compose down Update....