Skip to main content

apollo-security-basics

Implements security best practices for Apollo.io API integrations, focusing on key management and data protection.

Install this skill

or
67/100

Security score

The apollo-security-basics skill was audited on Feb 21, 2026 and we found 21 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 170

Template literal with variable interpolation in command context

SourceSKILL.md
170return `${local.substring(0, 2)}***@${domain}`;
medium line 173

Template literal with variable interpolation in command context

SourceSKILL.md
173return `***-***-${value.slice(-4)}`;
low line 28

Access to .env file

SourceSKILL.md
28const apiKey = process.env.APOLLO_API_KEY;
low line 31

Access to .env file

SourceSKILL.md
31if (!process.env.APOLLO_API_KEY) {
low line 38

Access to .env file

SourceSKILL.md
38# .env file (never commit!)
low line 42

Access to .env file

SourceSKILL.md
42.env
low line 43

Access to .env file

SourceSKILL.md
43.env.local
low line 44

Access to .env file

SourceSKILL.md
44.env.*.local
low line 62

Access to .env file

SourceSKILL.md
62primary: process.env.APOLLO_API_KEY!,
low line 63

Access to .env file

SourceSKILL.md
63secondary: process.env.APOLLO_API_KEY_SECONDARY,
low line 64

Access to .env file

SourceSKILL.md
64rotateAt: process.env.APOLLO_KEY_ROTATE_AT
low line 65

Access to .env file

SourceSKILL.md
65? new Date(process.env.APOLLO_KEY_ROTATE_AT)
low line 282

Access to .env file

SourceSKILL.md
282readonly: process.env.APOLLO_API_KEY_READONLY,
low line 283

Access to .env file

SourceSKILL.md
283standard: process.env.APOLLO_API_KEY_STANDARD,
low line 284

Access to .env file

SourceSKILL.md
284admin: process.env.APOLLO_API_KEY_ADMIN,
medium line 305

Access to .env file

SourceSKILL.md
305- [ ] .env files added to .gitignore
low line 82

External URL reference

SourceSKILL.md
82const response = await axios.get('https://api.apollo.io/v1/auth/health', {
low line 117

External URL reference

SourceSKILL.md
117baseURL: 'https://api.apollo.io/v1', // Always HTTPS
low line 342

External URL reference

SourceSKILL.md
342- [Apollo Security Practices](https://www.apollo.io/security)
low line 343

External URL reference

SourceSKILL.md
343- [OWASP API Security](https://owasp.org/www-project-api-security/)
low line 344

External URL reference

SourceSKILL.md
344- [GDPR for API Developers](https://gdpr.eu/)
Scanned on Feb 21, 2026
View Security Dashboard
Installation guide →