| Version | Supported |
|---|---|
Latest (main) |
β Active |
| Older tagged releases | β No backports |
Always use the latest version. Run git pull && bash install.sh to update.
This policy covers security vulnerabilities in:
- Install scripts β
install.sh,install.ps1,bootstrap-project.sh,sync-project.sh/sync-project.ps1 - Hook scripts β
hooks/git-guard.sh,hooks/session-context.sh - Rules and skills β any content that could cause an agent to execute unsafe commands or exfiltrate data
Out of scope:
- Vulnerabilities in Cursor itself β report those to Anysphere
- Vulnerabilities in third-party tools referenced by skills (GitHub CLI, ShellCheck, etc.)
- Issues in repos that have adopted the kit but added their own modifications
Do not open a public GitHub issue for security vulnerabilities.
Report privately via email: ssurange.dev@gmail.com
Include in your report:
- A description of the vulnerability and its potential impact
- Steps to reproduce or a proof-of-concept
- The version or commit SHA where you found it
- Any suggested fix (optional but appreciated)
| Step | Target time |
|---|---|
| Acknowledgement of report | Within 48 hours |
| Initial assessment and severity triage | Within 5 days |
| Fix or mitigation released | Within 14 days for HIGH/CRITICAL |
| Public disclosure | After fix is released and users have had time to update |
- We will acknowledge your report promptly
- We will keep you informed of progress
- We will credit you in the fix commit and changelog (unless you prefer anonymity)
- We will not take legal action against good-faith security researchers
For contributors and users who want to understand the security posture of the kit:
- Install scripts run with your user permissions β they symlink or copy files into
~/.cursor/. They do not requiresudoand do not modify system directories. - Hook scripts execute before shell commands β
git-guard.shonly reads the command string and outputs a JSON allow/deny response. It does not execute the command itself. - No network calls β no install or hook script makes outbound network requests.
session-context.shonly reads a local file. - No package dependencies β the kit requires only
bash,git, and standard POSIX tools. Nonpm installorpip install.