Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

![](./.github/banner.png)


A python library to interact with Pwndoc instances for pentest reports generation.


PyPI
GitHub release (latest by date)
Python pip build

YouTube Channel Subscribers


## 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 pwndocapi

p = 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.