Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p0dalirius/pwndocapi
A python library to interact with Pwndoc instances for pentest reports generation
https://github.com/p0dalirius/pwndocapi
pentest pwndoc report
Last synced: 5 days ago
JSON representation
A python library to interact with Pwndoc instances for pentest reports generation
- Host: GitHub
- URL: https://github.com/p0dalirius/pwndocapi
- Owner: p0dalirius
- License: gpl-3.0
- Created: 2022-01-26T11:55:31.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T16:01:29.000Z (3 months ago)
- Last Synced: 2024-12-18T18:45:17.741Z (17 days ago)
- Topics: pentest, pwndoc, report
- Language: Python
- Homepage: https://podalirius.net/
- Size: 84 KB
- Stars: 15
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![](./.github/banner.png)
A python library to interact with Pwndoc instances for pentest reports generation.
## Features
- [x] Connect to a remote pwndoc instance.
- [x] Manages the audits (create, delete, list audits).
- [x] Add new findings to your audit.## Examples of usage
### Create a new audit
```py
import pwndocapip = pwndocapi.pwndoc("192.168.1.19", 8443, verbose=True)
p.login("username", "password")
# Create a new audit
audit = p.audits.create("PoC Audit", "fr", "TI Externe")
print("audit:", audit)
```## Contributing
Pull requests are welcome. Feel free to open an issue if you want to add other features.