Skip to main content

sentry-data-handling

Enables proper management of sensitive data in Sentry, ensuring compliance with GDPR and effective PII scrubbing.

Install this skill

or
34/100

Security score

The sentry-data-handling skill was audited on May 12, 2026 and we found 26 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 260

Template literal with variable interpolation in command context

SourceSKILL.md
260```bash
medium line 277

Template literal with variable interpolation in command context

SourceSKILL.md
277`https://sentry.io/api/0/projects/${org}/${project}/issues/?query=user.id:${userId}`,
medium line 278

Template literal with variable interpolation in command context

SourceSKILL.md
278{ headers: { Authorization: `Bearer ${token}` } }
medium line 282

Template literal with variable interpolation in command context

SourceSKILL.md
282throw new Error(`Search failed: ${searchRes.status} ${searchRes.statusText}`);
medium line 290

Template literal with variable interpolation in command context

SourceSKILL.md
290`https://sentry.io/api/0/projects/${org}/${project}/issues/${issue.id}/`,
medium line 291

Template literal with variable interpolation in command context

SourceSKILL.md
291{ method: 'DELETE', headers: { Authorization: `Bearer ${token}` } }
medium line 295

Template literal with variable interpolation in command context

SourceSKILL.md
295throw new Error(`Deletion failed for issue ${issue.id}: ${deleteRes.status}`);
medium line 299

Template literal with variable interpolation in command context

SourceSKILL.md
299console.log(`Deleted ${issues.length} issues for user ${userId}`);
medium line 305

Template literal with variable interpolation in command context

SourceSKILL.md
305```bash
low line 58

Access to .env file

SourceSKILL.md
58dsn: process.env.SENTRY_DSN,
low line 251

Access to .env file

SourceSKILL.md
251dsn: process.env.SENTRY_DSN,
low line 271

Access to .env file

SourceSKILL.md
271const org = process.env.SENTRY_ORG;
low line 272

Access to .env file

SourceSKILL.md
272const project = process.env.SENTRY_PROJECT;
low line 273

Access to .env file

SourceSKILL.md
273const token = process.env.SENTRY_AUTH_TOKEN;
medium line 340

Access to .env file

SourceSKILL.md
340| `sendDefaultPii: true` in production | Environment-unaware configuration | Gate PII collection: `sendDefaultPii: process.env.NODE_ENV !== 'production'` |
low line 356

Access to .env file

SourceSKILL.md
356dsn: process.env.SENTRY_DSN,
low line 357

Access to .env file

SourceSKILL.md
357environment: process.env.NODE_ENV || 'development',
low line 46

External URL reference

SourceSKILL.md
46- Data Processing Agreement signed at https://sentry.io/legal/dpa/ (GDPR requirement)
low line 264

External URL reference

SourceSKILL.md
264"https://sentry.io/api/0/projects/${SENTRY_ORG}/${SENTRY_PROJECT}/issues/${ISSUE_ID}/" \
low line 277

External URL reference

SourceSKILL.md
277`https://sentry.io/api/0/projects/${org}/${project}/issues/?query=user.id:${userId}`,
low line 290

External URL reference

SourceSKILL.md
290`https://sentry.io/api/0/projects/${org}/${project}/issues/${issue.id}/`,
low line 308

External URL reference

SourceSKILL.md
308"https://sentry.io/api/0/organizations/${SENTRY_ORG}/audit-logs/" \
low line 318

External URL reference

SourceSKILL.md
3185. Sign the DPA at https://sentry.io/legal/dpa/
low line 463

External URL reference

SourceSKILL.md
463- [Sentry GDPR Overview](https://sentry.io/legal/gdpr/)
low line 464

External URL reference

SourceSKILL.md
464- [Data Processing Agreement](https://sentry.io/legal/dpa/)
low line 465

External URL reference

SourceSKILL.md
465- [Sentry Security](https://sentry.io/security/)
Scanned on May 12, 2026
View Security Dashboard
Installation guide →