Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.16 KB

File metadata and controls

46 lines (31 loc) · 1.16 KB

P4X-V1.1-Ultimate-AI-Pentesting-Platform-prototype

💋💻🤖V1.1 design and code blueprint provides a fully integrated, extensible, live, admin-focused, production-ready pentesting AI platform

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Additional Notes

Replace 'YOUR_JWT_TOKEN' with a valid JWT from your auth system.

Set environment variables properly before running backend.

Install required dependencies via pip for backend and npm for frontend.

Run backend with uvicorn server:app --reload.

Run frontend with npm start in React app folder.

Add your own user management and token issuance system to generate JWT tokens.

pentest-platform-v1.1/ │ ├── backend/ │ ├── agents.py │ ├── plugin_manager.py │ ├── auth.py │ ├── middleware.py │ ├── kill_switch.py │ ├── server.py │ ├── requirements.txt │ └── Dockerfile │ ├── frontend/ │ ├── src/ │ │ ├── App.js │ │ ├── index.js │ │ └── ... │ ├── package.json │ └── Dockerfile │ └── README.md