We actively support the following versions of Vue3 Tooltip with security updates:
| Version | Supported |
|---|---|
| 2.3.x | ✅ |
| 2.2.x | ✅ |
| 2.1.x | ❌ |
| < 2.0 | ❌ |
We take security vulnerabilities seriously. If you discover a security issue, please follow these steps:
Please DO NOT open a public issue. Instead, report security vulnerabilities privately:
- Email: neluckoff@gmail.com
- Subject:
[SECURITY] Vue3 Tooltip - Brief description - Include:
- Description of the vulnerability
- Steps to reproduce
- Potential impact
- Suggested fix (if any)
- Your contact information
- Initial Response: Within 48 hours
- Status Update: Within 7 days
- Fix Timeline: Depends on severity
- Critical: 1-3 days
- High: 1-2 weeks
- Medium: 2-4 weeks
- Low: Next release cycle
- Critical: Remote code execution, data breach
- High: XSS vulnerabilities, authentication bypass
- Medium: Information disclosure, DoS
- Low: Minor issues with limited impact
- We'll acknowledge receipt of your report
- We'll investigate and validate the issue
- We'll develop and test a fix
- We'll release a security patch
- We'll publicly disclose the issue (with credit to you, if desired)
We appreciate security researchers who help keep Vue3 Tooltip safe:
- You'll be credited in the release notes (unless you prefer anonymity)
- Your contribution will be mentioned in our CHANGELOG
- We'll add you to our security acknowledgments
When using Vue3 Tooltip:
- Always use the latest version to benefit from security patches
- Sanitize user input if passing dynamic content to tooltips
- Review CSP policies to ensure compatibility
- Monitor dependencies using
npm auditregularly
Vue3 Tooltip renders text content. If you're displaying user-generated content:
<!-- ❌ Avoid -->
<div v-tooltip="userInput">...</div>
<!-- ✅ Better -->
<div v-tooltip="sanitizeInput(userInput)">...</div>Vue 3's template compiler provides built-in XSS protection, but always sanitize untrusted input.
For security-related questions or concerns:
- Email: neluckoff@gmail.com
- GitHub: @neluckoff
Thank you for helping keep Vue3 Tooltip and its users safe! 🛡️