Skip to main content

apollo-debug-bundle

Collects detailed debug information for Apollo.io to assist in troubleshooting and support ticket preparation.

Install this skill

or
0/100

Security score

The apollo-debug-bundle skill was audited on Feb 9, 2026 and we found 33 security issues across 4 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 103

Template literal with variable interpolation in command context

SourceSKILL.md
103url: `https://api.apollo.io/v1${endpoint.url}`,
medium line 135

Template literal with variable interpolation in command context

SourceSKILL.md
135sanitized.people = `[${sanitized.people.length} contacts]`;
medium line 148

Template literal with variable interpolation in command context

SourceSKILL.md
148console.log(`Timestamp: ${bundle.timestamp}`);
medium line 149

Template literal with variable interpolation in command context

SourceSKILL.md
149console.log(`Node: ${bundle.environment.nodeVersion}`);
medium line 150

Template literal with variable interpolation in command context

SourceSKILL.md
150console.log(`API Key Present: ${bundle.environment.apiKeyPresent}`);
medium line 151

Template literal with variable interpolation in command context

SourceSKILL.md
151console.log(`API Reachable: ${bundle.connectivity.reachable}`);
medium line 152

Template literal with variable interpolation in command context

SourceSKILL.md
152console.log(`API Health: ${bundle.apiHealth.status}`);
medium line 153

Template literal with variable interpolation in command context

SourceSKILL.md
153console.log(`Successful Tests: ${bundle.recentRequests.length}`);
medium line 154

Template literal with variable interpolation in command context

SourceSKILL.md
154console.log(`Failed Tests: ${bundle.errors.length}`);
medium line 157

Template literal with variable interpolation in command context

SourceSKILL.md
157const filename = `apollo-debug-${Date.now()}.json`;
medium line 159

Template literal with variable interpolation in command context

SourceSKILL.md
159console.log(`\nBundle saved to: ${filename}`);
medium line 165

Template literal with variable interpolation in command context

SourceSKILL.md
165console.log(`\n${err.endpoint}:`);
medium line 166

Template literal with variable interpolation in command context

SourceSKILL.md
166console.log(` Status: ${err.responseCode}`);
medium line 167

Template literal with variable interpolation in command context

SourceSKILL.md
167console.log(` Error: ${err.error}`);
medium line 177

Template literal with variable interpolation in command context

SourceSKILL.md
177```bash
medium line 188

Curl to non-GitHub URL

SourceSKILL.md
188curl -s "https://api.apollo.io/v1/auth/health?api_key=$APOLLO_API_KEY" | jq
medium line 191

Curl to non-GitHub URL

SourceSKILL.md
191curl -s -X POST "https://api.apollo.io/v1/people/search" \
medium line 196

Curl to non-GitHub URL

SourceSKILL.md
196curl -I -s -X POST "https://api.apollo.io/v1/people/search" \
low line 51

Access to .env file

SourceSKILL.md
51apiKeyPresent: !!process.env.APOLLO_API_KEY,
low line 52

Access to .env file

SourceSKILL.md
52apiKeyLength: process.env.APOLLO_API_KEY?.length || 0,
low line 53

Access to .env file

SourceSKILL.md
53apiKeyPrefix: process.env.APOLLO_API_KEY?.substring(0, 8) + '...',
low line 75

Access to .env file

SourceSKILL.md
75params: { api_key: process.env.APOLLO_API_KEY },
low line 104

Access to .env file

SourceSKILL.md
104params: { api_key: process.env.APOLLO_API_KEY, ...endpoint.params },
low line 59

External URL reference

SourceSKILL.md
59await axios.get('https://api.apollo.io', { timeout: 5000 });
low line 74

External URL reference

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

External URL reference

SourceSKILL.md
103url: `https://api.apollo.io/v1${endpoint.url}`,
low line 185

External URL reference

SourceSKILL.md
185"https://api.apollo.io"
low line 188

External URL reference

SourceSKILL.md
188curl -s "https://api.apollo.io/v1/auth/health?api_key=$APOLLO_API_KEY" | jq
low line 191

External URL reference

SourceSKILL.md
191curl -s -X POST "https://api.apollo.io/v1/people/search" \
low line 196

External URL reference

SourceSKILL.md
196curl -I -s -X POST "https://api.apollo.io/v1/people/search" \
low line 291

External URL reference

SourceSKILL.md
291- [Apollo Status Page](https://status.apollo.io)
low line 292

External URL reference

SourceSKILL.md
292- [Apollo Support Portal](https://support.apollo.io)
low line 293

External URL reference

SourceSKILL.md
293- [Apollo API Documentation](https://apolloio.github.io/apollo-api-docs/)
Scanned on Feb 9, 2026
View Security Dashboard
Installation guide →