sentry-advanced-troubleshooting
Facilitates advanced troubleshooting for Sentry SDK issues, ensuring effective debugging of events, source maps, and performance anomalies.
Install this skill
Security score
The sentry-advanced-troubleshooting skill was audited on May 30, 2026 and we found 19 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 104 | console.log('DSN:', `${dsn.protocol}://${dsn.host}/${dsn.projectId}`); |
Template literal with variable interpolation in command context
| 153 | ```bash |
Template literal with variable interpolation in command context
| 243 | heapUsed: `${(mem.heapUsed / 1024 / 1024).toFixed(1)} MB`, |
Template literal with variable interpolation in command context
| 244 | rss: `${(mem.rss / 1024 / 1024).toFixed(1)} MB`, |
Curl to non-GitHub URL
| 139 | curl -v -X POST "https://yourapp.com/api/sentry-tunnel" \ |
Access to .env file
| 62 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 219 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 250 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 294 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 295 | environment: process.env.NODE_ENV || 'development', |
Access to .env file
| 296 | release: process.env.SENTRY_RELEASE, |
Access to .env file
| 297 | debug: process.env.SENTRY_DEBUG === 'true', |
Access to .env file
| 299 | tracesSampleRate: process.env.NODE_ENV === 'production' ? 0.2 : 1.0, |
Access to .env file
| 307 | if (process.env.SENTRY_DEBUG === 'true') { |
External URL reference
| 139 | curl -v -X POST "https://yourapp.com/api/sentry-tunnel" \ |
External URL reference
| 141 | -d '{"dsn":"https://[email protected]/123"} |
External URL reference
| 186 | **Check the URL matching rule:** The stack frame URL (e.g., `https://example.com/static/js/main.abc123.js`) must match the artifact URL (e.g., `~/static/js/main.abc123.js`) after the tilde prefix subs |
External URL reference
| 367 | r"^https://api\.yourapp\.com", |
External URL reference
| 368 | r"^https://internal\.", |