Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump electron from 2.0.18 to 22.3.25 in /frontend #5

Open
wants to merge 3 commits into
base: vue3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 14 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,23 @@
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.

# Fork enhancement

This fork integrates couple new features regarding the original repository :

- [SSO authentication ](https://github.com/AmadeusITGroup/pwndoc/blob/main/docs/sso.md) : Simplify user management and collaboration with Single Sign-On (SSO) authentication.
- **File upload:** Streamline the reporting process by allowing users to upload files directly to PwnDoc. It's especially helpful when you want to share and include your scripts, outputs, or any relevant documents as part of your vulnerability write-up.
- **Database Encryption:** Protect vulnerability details with robust encryption, ensuring confidentiality and security.

The original maintainer appears to be inactive, which is another reason for the repository's existence: to foster an active community that can contribute new features and improvements.

# Documentation
- [Installation](https://pwndoc.github.io/pwndoc/#/installation)
- [Data](https://pwndoc.github.io/pwndoc/#/data)
- [Vulnerabilities](https://pwndoc.github.io/pwndoc/#/vulnerabilities)
- [Audits](https://pwndoc.github.io/pwndoc/#/audits)
- [Templating](https://pwndoc.github.io/pwndoc/#/docxtemplate)

- [SSO authentication ](https://github.com/AmadeusITGroup/pwndoc/blob/main/docs/sso.md)

# Features

Expand All @@ -23,6 +33,9 @@ The main goal is to have more time to **Pwn** and less time to **Doc** by mutual
- Multi-User reporting
- Docx Report Generation
- Docx Template customization
- Single Sign On (SSO)
- Documents upload
- Database encryption

# Demos

Expand All @@ -35,24 +48,5 @@ The main goal is to have more time to **Pwn** and less time to **Doc** by mutual
#### Vulnerability management workflow
![Create and update demo gif](https://raw.githubusercontent.com/pwndoc/pwndoc/master/demos/create_and_update_finding.gif)

# Donate

If you would like to help me and sponsor this project

[:heart: Sponsor Me](https://github.com/sponsors/yeln4ts)

Or you can send me some crypto love

| Bitcoin | Ethereum |
|:----------------------------------------:|:--------:|
| <img src="https://user-images.githubusercontent.com/4255028/160478210-ddc3b0ec-6eeb-4112-b1f0-ff1a4ee7c074.png">| <img src="https://user-images.githubusercontent.com/4255028/160478210-ddc3b0ec-6eeb-4112-b1f0-ff1a4ee7c074.png"> |
| BTC address: `bc1q6z2n99effsmla5mj4ctk3ya6nd76truf6qfe7y` | ETH address: `0xB76cd48CD6C098DE85928e125b44057D3B372821` |

# Sponsors

Thank you for your support

[<img src="https://user-images.githubusercontent.com/4255028/160469615-51ae233b-38d3-4e05-adaf-0ad8633e101f.png" height="50">](https://www.on-x.com)

[<img src="https://github.com/relaxedricky.png" height="50" />](https://github.com/relaxedricky)
[<img src="https://github.com/belane.png" height="50" />](https://github.com/belane)
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### STAGE 1: Build ###
FROM node:lts-alpine AS build
FROM node:18-alpine AS build
WORKDIR /app
COPY package.json ./
RUN npm install
Expand Down
3 changes: 2 additions & 1 deletion frontend/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ services:
ports:
- 8081:8081
networks:
- backend
backend:
ipv4_address: 10.225.0.4

networks:
backend:
Expand Down
Loading