social-data
Fetches and analyzes social media data from platforms like Twitter, Reddit, and Hacker News for insights and trends.
Install this skill
Security score
The social-data skill was audited on May 21, 2026 and we found 23 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Curl to non-GitHub URL
| 16 | curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" | head -c 200 |
Curl to non-GitHub URL
| 22 | curl -s "https://hacker-news.firebaseio.com/v0/item/12345678.json" |
Curl to non-GitHub URL
| 28 | curl -s "https://hn.algolia.com/api/v1/search?query=rust+programming&tags=story&hitsPerPage=10" |
Curl to non-GitHub URL
| 38 | curl -s "https://hn.algolia.com/api/v1/search?tags=front_page&hitsPerPage=30" |
Curl to non-GitHub URL
| 46 | curl -s "https://www.reddit.com/r/programming/hot.json?limit=10" \ |
Curl to non-GitHub URL
| 56 | curl -s "https://www.reddit.com/search.json?q=rust+async&sort=relevance&limit=10" \ |
Curl to non-GitHub URL
| 63 | curl -s "https://www.reddit.com/r/programming/comments/POST_ID.json" \ |
Curl to non-GitHub URL
| 72 | curl -s "https://www.reddit.com/user/USERNAME/submitted.json?limit=10" \ |
Curl to non-GitHub URL
| 83 | curl -s "https://api.twitter.com/2/tweets/search/recent?query=from:elonmusk&max_results=10&tweet.fields=created_at,public_metrics" \ |
Curl to non-GitHub URL
| 100 | curl -s "https://api.twitter.com/2/users/by/username/elonmusk?user.fields=public_metrics,description,created_at" \ |
Curl to non-GitHub URL
| 107 | curl -s "https://api.twitter.com/2/users/USER_ID/tweets?max_results=10&tweet.fields=created_at,public_metrics" \ |
Unicode escape sequences
| 4 | metadata: { "bitterbot": { "emoji": "\uD83D\uDCF1" } } |
External URL reference
| 16 | curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" | head -c 200 |
External URL reference
| 22 | curl -s "https://hacker-news.firebaseio.com/v0/item/12345678.json" |
External URL reference
| 28 | curl -s "https://hn.algolia.com/api/v1/search?query=rust+programming&tags=story&hitsPerPage=10" |
External URL reference
| 38 | curl -s "https://hn.algolia.com/api/v1/search?tags=front_page&hitsPerPage=30" |
External URL reference
| 46 | curl -s "https://www.reddit.com/r/programming/hot.json?limit=10" \ |
External URL reference
| 56 | curl -s "https://www.reddit.com/search.json?q=rust+async&sort=relevance&limit=10" \ |
External URL reference
| 63 | curl -s "https://www.reddit.com/r/programming/comments/POST_ID.json" \ |
External URL reference
| 72 | curl -s "https://www.reddit.com/user/USERNAME/submitted.json?limit=10" \ |
External URL reference
| 83 | curl -s "https://api.twitter.com/2/tweets/search/recent?query=from:elonmusk&max_results=10&tweet.fields=created_at,public_metrics" \ |
External URL reference
| 100 | curl -s "https://api.twitter.com/2/users/by/username/elonmusk?user.fields=public_metrics,description,created_at" \ |
External URL reference
| 107 | curl -s "https://api.twitter.com/2/users/USER_ID/tweets?max_results=10&tweet.fields=created_at,public_metrics" \ |