hootsuite-install-auth
Facilitates the installation and configuration of Hootsuite SDK/CLI authentication for seamless API integration.
Install this skill
Security score
The hootsuite-install-auth skill was audited on May 18, 2026 and we found 17 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 75 | return `https://platform.hootsuite.com/oauth2/auth?${params}`; |
Template literal with variable interpolation in command context
| 84 | 'Authorization': `Basic ${Buffer.from(`${HOOTSUITE_CLIENT_ID}:${HOOTSUITE_CLIENT_SECRET}`).toString('base64')}`, |
Template literal with variable interpolation in command context
| 106 | 'Authorization': `Basic ${Buffer.from(`${HOOTSUITE_CLIENT_ID}:${HOOTSUITE_CLIENT_SECRET}`).toString('base64')}`, |
Template literal with variable interpolation in command context
| 122 | headers: { 'Authorization': `Bearer ${accessToken}` }, |
Fetch to external URL
| 80 | const response = await fetch('https://platform.hootsuite.com/oauth2/token', { |
Fetch to external URL
| 102 | const response = await fetch('https://platform.hootsuite.com/oauth2/token', { |
Fetch to external URL
| 121 | const response = await fetch('https://platform.hootsuite.com/v1/me', { |
Access to .env file
| 48 | # .env (NEVER commit) |
Access to .env file
| 55 | .env |
Access to .env file
| 56 | .env.local |
Access to .env file
| 65 | const { HOOTSUITE_CLIENT_ID, HOOTSUITE_CLIENT_SECRET, HOOTSUITE_REDIRECT_URI } = process.env; |
External URL reference
| 43 | 4. Set redirect URI to `https://your-app.com/callback` |
External URL reference
| 51 | HOOTSUITE_REDIRECT_URI=https://your-app.com/callback |
External URL reference
| 75 | return `https://platform.hootsuite.com/oauth2/auth?${params}`; |
External URL reference
| 80 | const response = await fetch('https://platform.hootsuite.com/oauth2/token', { |
External URL reference
| 102 | const response = await fetch('https://platform.hootsuite.com/oauth2/token', { |
External URL reference
| 121 | const response = await fetch('https://platform.hootsuite.com/v1/me', { |