| Version | Supported |
|---|---|
main (latest) |
✅ |
| Older releases | ❌ — please upgrade |
Brain-Storm takes security seriously. If you discover a potential vulnerability, we ask that you follow responsible disclosure:
- Do not open a public GitHub issue for security vulnerabilities.
- Email us privately at
security@brainstorm.appwith:- A clear description of the vulnerability.
- Steps to reproduce (proof-of-concept if possible).
- The potential impact and affected components.
- Your suggested fix (optional but appreciated).
- Allow us reasonable time to investigate and release a fix before any public disclosure. We aim to:
- Acknowledge your report within 48 hours.
- Provide an initial assessment within 5 business days.
- Release a fix or mitigation within 30 days for critical issues.
- Act in good faith — avoid accessing, modifying, or deleting user data beyond what is needed to demonstrate the vulnerability.
We will credit researchers who responsibly disclose vulnerabilities (unless you prefer to remain anonymous).
The following are in scope:
apps/backend— NestJS REST APIapps/frontend— Next.js web applicationcontracts/— Soroban smart contracts- Authentication and authorisation flows
- Data handling and storage
The following are out of scope:
- Denial-of-service attacks
- Social engineering of maintainers
- Vulnerabilities in third-party dependencies (report those upstream)
- Issues already publicly known
- Cross-Site Scripting (XSS)
- SQL Injection
- Broken Access Control / IDOR
- Authentication bypass
- Sensitive data exposure
- Smart contract exploits (reentrancy, integer overflow, etc.)
- JWT secret exposure or weak signing
- Input sanitisation via
class-sanitizerandsanitize-htmlon all DTO string fields. - TypeORM parameterised queries — no raw string interpolation.
- JWT authentication with short-lived access tokens (15 min) and rotating refresh tokens.
- API key authentication (SHA-256 hashed) for service-to-service calls.
- Rate limiting via
@nestjs/throttlerbacked by Redis. - MFA (TOTP) support for user accounts.
- Helmet and CORS configured on the API.
Thank you for helping keep Brain-Storm and its users safe!