WriteHat as a pentesting reports tool
WriteHat is a reporting tool developed in the Django web framework that provides some components to present beautiful reports for penetration/red/blue/purple team engagements. You can find the source code in the GitHub repository: https://github.com/blacklanternsecurity/writehat.
The fastest way to install this tool is by using Docker and docker-compose
, which we can install with the following command:
$ sudo apt install docker.io docker-compose
You can deploy WriteHat with the following commands:
$ git clone https://github.com/blacklanternsecurity/writehat
$ cd writehat
$ sudo chmod -R 777 /writehat/static
$ docker-compose up
The previous command will deploy the application using the following docker-compose.yml
file:
version: '3.7'
services:
nginx:
image: nginx
volumes:
- ./nginx:/opt/writehat/nginx
- ./writehat/config/nginx.conf:/etc/nginx/conf.d/writehat.conf
- ./writehat/static...