Automated penetration testing UI implemented by Vue.js framework. A user interface
to use PTaaS application. In order to setup the user interface, first make sure to have
gateway api, base api, and ftp server up and running.
After that read the manuals to setup the ui app in your kubernetes cluster.
UI app docker image address:
docker pull amirhossein21/ptaas-tool:dashboard-v0.X.XMake sure to create .env file with the following variable init:
# backend url address which is the ptaas api
VITE_API_URL=http://localhost:8080
# dashboard version
VITE_VERSION=v0.X.XSetup ui application in docker container with following command:
docker run -d \
-v type=bind,source=$(pwd)/.env,dest=/app/.env \
-p 80:80 \
amirhossein21/ptaas-tool:dashboard-v0.X.X