| Version | Supported |
|---|---|
| Latest | Yes |
Do not open a public GitHub issue for security vulnerabilities.
Please report vulnerabilities privately to: Exemplo Empresa SA / had-nu
Include:
- Description of the vulnerability
- Steps to reproduce
- Impact assessment
- Suggested fix (optional)
You will receive acknowledgment within 48 hours and a resolution update within 7 days.
The WARDEX_ACCEPT_SECRET environment variable is used to generate HMAC-SHA256 signatures for risk acceptances. To safely rotate this key:
- Generate a new high-entropy secret string.
- Update
WARDEX_ACCEPT_SECRETin your CI/CD runner environments or local profiles. - New acceptances will be signed with the new key. Wardex schemas support a
signature_versionfield to help audit and trace which key generated which record.
This project follows secure development practices:
- Dependencies are scanned with Dependabot
- Code is analyzed with
gosecandgovulncheck - All PRs run security checks in CI before merge
- Race conditions are detected via
go test -race