Security Policy
Supported Versions
| Version | Supported |
|---|---|
| 1.x | ✅ |
Reporting a Vulnerability
Please do not open a public issue for security vulnerabilities.
Email: security@safetensors-studio.local (or open a private GitHub Security Advisory).
Include:
- Description
- Steps to reproduce (e.g.,
POST /api/benchmark/custom/scanpath traversal) - Impact
We will acknowledge within 48h and patch within 7 days.
Known Considerations
POST /api/model/validate?path=and/api/benchmark/custom/scan?folder_path=accept local filesystem paths — restrict to trusted users only or run behind auth proxy in production.- No authentication by default (local-first). For public deployment, put behind
nginx+basic_authorOAuth. sharetokens are in-memory and not cryptographically signed — do not use for sensitive reports.
Best Practices for Production
- Run
backendwithuvicorn --host 127.0.0.1behind reverse proxy - Set
NEXT_PUBLIC_API_URLto HTTPS - Enable
CORSallowlist inbackend/app/main.py:17(replace"*"with your domain)