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 12, 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
| 103 | console.log('DSN:', `${dsn.protocol}://${dsn.host}/${dsn.projectId}`); |
Template literal with variable interpolation in command context
| 152 | ```bash |
Template literal with variable interpolation in command context
| 242 | heapUsed: `${(mem.heapUsed / 1024 / 1024).toFixed(1)} MB`, |
Template literal with variable interpolation in command context
| 243 | rss: `${(mem.rss / 1024 / 1024).toFixed(1)} MB`, |
Curl to non-GitHub URL
| 138 | curl -v -X POST "https://yourapp.com/api/sentry-tunnel" \ |
Access to .env file
| 61 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 218 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 249 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 292 | dsn: process.env.SENTRY_DSN, |
Access to .env file
| 293 | environment: process.env.NODE_ENV || 'development', |
Access to .env file
| 294 | release: process.env.SENTRY_RELEASE, |
Access to .env file
| 295 | debug: process.env.SENTRY_DEBUG === 'true', |
Access to .env file
| 297 | tracesSampleRate: process.env.NODE_ENV === 'production' ? 0.2 : 1.0, |
Access to .env file
| 305 | if (process.env.SENTRY_DEBUG === 'true') { |
External URL reference
| 138 | curl -v -X POST "https://yourapp.com/api/sentry-tunnel" \ |
External URL reference
| 140 | -d '{"dsn":"https://[email protected]/123"} |
External URL reference
| 185 | **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
| 365 | r"^https://api\.yourapp\.com", |
External URL reference
| 366 | r"^https://internal\.", |