Listen to this Post
Today, we’re diving into a collection of powerful OSINT tools for social media analysis. These tools are essential for investigators, researchers, and cybersecurity professionals. Below are the key resources shared in the article:
1. Exorde:
- URL: https://huggingface.co/datasets/Exorde/exorde-social-media-one-month-2024
- A free dataset containing one historical month (2024) of scrapes from various social media platforms, including X/Twitter, BlueSky, Reddit, YouTube, and more.
2. Zeeschuimer:
- URL: https://github.com/digitalmethodsinitiative/zeeschuimer
- A browser extension that collects social media data as you browse. Supports TikTok, Instagram, X/Twitter, LinkedIn, and more. Data can be exported as JSON or to a 4CAT instance.
3. Social Searcher:
- URL: https://www.social-searcher.com/
- Search across 12 social media platforms simultaneously. Filter by sentiment, platform, and post type. Provides detailed statistics on search results.
4. Socialblade:
- URL: https://socialblade.com/
- Tracks user statistics for YouTube, Twitch, Instagram, and Twitter.
5. Hunt Intelligence:
- URL: https://www.huntintel.io/
- Find social media posts surrounding a specific location on platforms like Facebook, Instagram, X/Twitter, and YouTube.
6. Recruit’em X-Ray Search:
- URL: https://recruitin.net/
- Search social media profiles using Google. Supports LinkedIn, GitHub, Stack Overflow, and more.
7. SecuringDemocracy Social Data Search:
- URL: https://securingdemocracy.gmfus.org/social-data-search?q=*
- Search social media posts connected to Information Warfare networks. Supports X/Twitter, Telegram, Facebook, and more.
8. ExportComments:
- URL: https://exportcomments.com/
- Export comments from social media platforms like Facebook, Instagram, YouTube, and TikTok.
9. Vincos World Map of Social Networks:
- URL: https://vincos.it/world-map-of-social-networks/
- Statistics on the most popular social media platforms by country over the past 14+ years.
You Should Know:
Here are some practical commands and tools to enhance your OSINT and cybersecurity skills:
1. Linux Command for Web Scraping:
Use `curl` and `jq` to extract data from APIs:
curl -s https://api.example.com/data | jq '.results[] | select(.platform == "Twitter")'
2. Python Script for Social Media Analysis:
Use the `tweepy` library to analyze Twitter data:
import tweepy
auth = tweepy.OAuthHandler("API_KEY", "API_SECRET_KEY")
auth.set_access_token("ACCESS_TOKEN", "ACCESS_TOKEN_SECRET")
api = tweepy.API(auth)
tweets = api.search(q="OSINT", count=10)
for tweet in tweets:
print(tweet.text)
3. Windows Command for Network Analysis:
Use `netstat` to monitor network connections:
netstat -an | find "ESTABLISHED"
4. OSINT Framework:
Explore the OSINT Framework for more tools:
5. Maltego for Data Visualization:
Use Maltego to map relationships between social media accounts:
– URL: https://www.maltego.com/
What Undercode Say:
OSINT tools are indispensable for modern cybersecurity and investigative work. The tools listed above provide a comprehensive approach to social media analysis, from data collection to visualization. Whether you’re tracking trends, analyzing sentiment, or investigating specific accounts, these resources will enhance your capabilities. Always ensure you use these tools ethically and in compliance with legal guidelines. For further exploration, consider diving into Linux commands like grep, awk, and `sed` for advanced data processing, or explore Windows PowerShell for automation tasks. Happy investigating!
References:
Reported By: Devaidan Osint – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅


