Use this section to tell people about which versions of your project are currently being supported with security updates.
| Version | Supported |
|---|---|
| 0.1.x | ✅ |
If you discover a security vulnerability within this project, please send an email to jadilson12@gmail.com. All security vulnerabilities will be promptly addressed.
- Description of the vulnerability
- Steps to reproduce the issue
- Potential impact of the vulnerability
- Suggested fix (if any)
- Never commit sensitive files like
.envto version control - Keep your Spotify credentials secure and private
- Use environment variables for all sensitive configuration
- Regularly update dependencies to patch security vulnerabilities
- Follow the principle of least privilege when configuring Spotify app scopes
This project uses the Spotify Web API. Please ensure:
- Your Spotify app credentials are kept secure
- You use appropriate scopes for your use case
- You follow Spotify's API Security Guidelines
- You regularly rotate your client secret if needed
Always use environment variables for sensitive data:
# ✅ Good - Use environment variables
SPOTIFY_CLIENT_ID=your_client_id
SPOTIFY_CLIENT_SECRET=your_client_secret
# ❌ Bad - Never hardcode credentials
SPOTIFY_CLIENT_ID=abc123...We regularly update dependencies to ensure security. To check for vulnerabilities:
# Install security tools
pip install safety bandit
# Check for known vulnerabilities
safety check
# Run security linter
bandit -r src/This project is licensed under the MIT License - see the LICENSE file for details.