If you discover a security vulnerability in Paracle, please report it responsibly by emailing security@ibiface.com.
Please do NOT open a public GitHub issue for security vulnerabilities.
- Description of the vulnerability
- Steps to reproduce
- Potential impact assessment
- Any suggested fixes (optional)
- Initial acknowledgment: Within 48 hours
- Status update: Within 7 days
- Resolution target: Within 30-90 days depending on severity
| Version | Supported |
|---|---|
| 1.0.x | ✅ |
| < 1.0 | ❌ |
We regularly scan dependencies for vulnerabilities using:
bandit- Python security lintersafety- Dependency vulnerability scannerpip-audit- Python package audit
- All code changes require review
- Automated security scanning in CI/CD
- Type hints and Pydantic validation throughout
- Never commit secrets to the repository
- Use environment variables for API keys
.envfiles are gitignored
Before submitting code:
-
Run security linters locally:
bandit -r packages/ safety check
-
Ensure no secrets are committed:
detect-secrets scan
-
Follow secure coding practices in CONTRIBUTING.md