| Package | Version | Supported |
|---|---|---|
| pdf-autofillr-mapper | 1.0.10 | ✅ |
| pdf-autofillr-chatbot | 0.3.0 | ✅ |
| pdf-autofillr-doc-upload | 0.1.5 | ✅ |
| pdf-autofillr-rag | 0.2.4 | ✅ |
| pdf-autofillr (umbrella) | 1.1.4 | ✅ |
| Any previous version | < latest | ❌ |
Do NOT open a public GitHub issue for security vulnerabilities.
Public issues expose users to 0-days before a fix is available.
https://github.com/Engineersmind/pdf-autofillr-python-sdk/security/advisories/new
GitHub keeps this completely private until a fix is released.
security@engineersmind.com
Subject: [SECURITY] <brief description>
| Severity | First Response | Patch Target |
|---|---|---|
| Critical | 24 hours | 7 days |
| High | 48 hours | 14 days |
| Medium / Low | 5 business days | Next release |
We follow coordinated disclosure — we'll work with you on timing before anything is made public.
Areas most relevant for security research in this codebase:
- LLM prompt injection — chatbot and doc-upload extraction prompts
- PDF parsing — PyMuPDF field extraction in mapper
- File upload handling — doc-upload document reader (path traversal, malicious files)
- API key exposure —
.envhandling, storage backends - Cloud storage — S3, Azure Blob, GCS backend access controls
- Java subprocess calls — form_field_filler, form_field_rebuilder, form_field_refresher
# Never commit .env — always use .env.example
cp .env.example .env
echo ".env" >> .gitignore
# Scan dependencies for known CVEs
pip-audit
# Static analysis
bandit -r packages/mapper/src/ \
packages/chatbot/src/ \
packages/doc_upload/src/ \
packages/rag/src/- Never log API keys, LLM responses containing PII, or raw user input
- All storage backends must use the configured credentials — never hardcode
.envfiles are in.gitignoreand must never be committed
Once a vulnerability is confirmed:
- We open a private GitHub Security Advisory
- We develop and test a fix on a private branch
- We coordinate a disclosure date with the reporter
- We release the patch and publish the advisory simultaneously
- Reporter is credited in the advisory (unless they prefer anonymity)