imgur
Uploads images to Imgur for free hosting, providing shareable URLs for articles and documentation.
Install this skill
Security score
The imgur skill was audited on Feb 12, 2026 and we found 22 security issues across 3 threat categories, including 1 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 43 | ```bash |
Template literal with variable interpolation in command context
| 49 | ```bash |
Template literal with variable interpolation in command context
| 55 | ```bash |
Template literal with variable interpolation in command context
| 67 | ```bash |
Template literal with variable interpolation in command context
| 93 | ```bash |
Curl to non-GitHub URL
| 36 | > bash -c 'curl -s "https://api.example.com" -H "Authorization: Bearer $API_KEY"' |
Curl to non-GitHub URL
| 44 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "image=@/path/to/image.png" |
Curl to non-GitHub URL
| 50 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "image=https://example.com/image.png" -F "type=url" |
Curl to non-GitHub URL
| 56 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "image=$(base64 -i /path/to/image.png)" -F "type=base64" |
Curl to non-GitHub URL
| 68 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "[email protected]" -F "title=My Screenshot" -F "description=Screenshot from my app" |
Curl to non-GitHub URL
| 94 | curl -X DELETE https://api.imgur.com/3/image/<your-deletehash> -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" |
External URL reference
| 27 | Get your Client ID from: https://api.imgur.com/oauth2/addclient |
External URL reference
| 36 | > bash -c 'curl -s "https://api.example.com" -H "Authorization: Bearer $API_KEY"' |
External URL reference
| 44 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "image=@/path/to/image.png" |
External URL reference
| 50 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "image=https://example.com/image.png" -F "type=url" |
External URL reference
| 56 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "image=$(base64 -i /path/to/image.png)" -F "type=base64" |
External URL reference
| 68 | curl -X POST https://api.imgur.com/3/image -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" -F "[email protected]" -F "title=My Screenshot" -F "description=Screenshot from my app" |
External URL reference
| 77 | "link": "https://i.imgur.com/abc123.png", |
External URL reference
| 86 | - `data.link` - Public URL to use in Markdown: `` |
External URL reference
| 94 | curl -X DELETE https://api.imgur.com/3/image/<your-deletehash> -H "Authorization: Client-ID ${IMGUR_CLIENT_ID}" |
External URL reference
| 112 | - Documentation: https://apidocs.imgur.com/ |
External URL reference
| 113 | - Register App: https://api.imgur.com/oauth2/addclient |