A python library to interact with Pwndoc instances for pentest reports generation.
- Connect to a remote pwndoc instance.
- Manages the audits (create, delete, list audits).
- Add new findings to your audit.
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)
Pull requests are welcome. Feel free to open an issue if you want to add other features.