Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
blackbird — An OSINT tool to search for accounts by username in social networks. | Kitploit
Tools/GitLabGitLab/gcabc123/blackbird
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringSocial EngineeringLearning & EducationCurated Resources
GitLabgcabc123/blackbird

blackbird

An OSINT tool to search for accounts by username in social networks.

View Repository
113 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website
blackbird-logo

Blackbird

An OSINT tool to search fast for accounts by username across 574 sites.

The Lockheed SR-71 "Blackbird" is a long-range, high-altitude, Mach 3+ strategic reconnaissance aircraft developed and manufactured by the American aerospace company Lockheed Corporation.




blackbird-cli blackbird-web

Disclaimer

root@kitploit:~
This or previous program is for Educational purpose ONLY. Do not use it without permission. 
The usual disclaimer applies, especially the fact that me (P1ngul1n0) is not liable for any 
damages caused by direct or indirect use of the information or functionality provided by these 
programs. The author or any Internet provider bears NO responsibility for content or misuse 
of these programs or any derivatives thereof. By using these programs you accept the fact 
that any damage (dataloss, system crash, system compromise, etc.) caused by the use of these 
programs is not P1ngul1n0's responsibility.

Setup

Clone the repository

root@kitploit:~
git clone https://github.com/p1ngul1n0/blackbird
cd blackbird

Install requirements

root@kitploit:~
pip install -r requirements.txt

Usage

Search by username

root@kitploit:~
python blackbird.py -u username

Run WebServer

root@kitploit:~
python blackbird.py --web

Access http://127.0.0.1:9797 on the browser

Read results file

root@kitploit:~
python blackbird.py -f username.json

List supported sites

root@kitploit:~
python blackbird.py --list-sites

Use proxy

root@kitploit:~
python blackbird.py -u crash --proxy http://127.0.0.1:8080

Show all results

By default only found accounts will be shown, however you can use the argument below to see all of them.

root@kitploit:~
python blackbird.py -u crash --show-all

Docker

Blackbird can also be used with Docker.

Pull Image

root@kitploit:~
docker pull p1ngul1n0/blackbird:v2

Run Webserver

root@kitploit:~
docker run -p 9797:9797 p1ngul1n0/blackbird:v2 "--web"

Supported Social Networks

Most of the sites on this list were obtained through the incredible @whatsmynameproj project, don't forget to visit and follow them . 🤟

  1. Facebook
  2. YouTube
  3. Twitter
  4. Telegram
  5. TikTok
  6. Tinder
  7. Instagram
  8. Pinterest
  9. Snapchat
  10. Reddit
  11. Soundcloud
  12. Github
  13. Steam
  14. Linktree
  15. Xbox Gamertag
  16. Twitter Archived
  17. Xvideos
  18. PornHub
  19. Xhamster
  20. Periscope
  21. AskFM
  22. Vimeo
  23. Pastebin
  24. WordPress Profile
  25. WordPress Site
  26. AllMyLinks
  27. Buzzfeed
  28. JsFiddle
  29. Sourceforge
  30. Kickstarter
  31. Smule
  32. Blogspot
  33. Tradingview
  34. Internet Archive
  35. Alura
  36. Behance
  37. MySpace
  38. Disqus
  39. Slideshare
  40. Rumble
  41. Ebay
  42. RedBubble
  43. Kik
  44. Roblox
  45. Armor Games
  46. Fortnite Tracker
  47. Duolingo
  48. Chess
  49. Shopify
  50. Untappd
  51. Last FM
  52. Cash APP
  53. Imgur
  54. Trello
  55. Minecraft
  56. Patreon
  57. DockerHub
  58. Kongregate
  59. Vine
  60. Gamespot
  61. Shutterstock
  62. Chaturbate
  63. ProtonMail
  64. TripAdvisor
  65. RapidAPI
  66. HackTheBox
  67. Wikipedia
  68. Buymeacoffe
  69. Arduino
  70. League of Legends Tracker
  71. Lego Ideas
  72. Fiverr
  73. Redtube
  74. Dribble
  75. Packet Storm Security
  76. Ello
  77. Medium
  78. Hackaday
  79. Keybase
  80. HackerOne
  81. BugCrowd
  82. OneCompiler
  83. TryHackMe
  84. Lyrics Training
  85. Expo
  86. RAWG
  87. Coroflot
  88. Cloudflare
  89. Wattpad
  90. Mixlr
  91. ImageShack
  92. Freelancer
  93. Dev To
  94. BitBucket

Export Report

The results can be exported as a PDF Report.

blackbird-pdf-cover blackbird-pdf-cover

Metadata Extraction

When possible Blackbird will extract the user's metadata, bringing data such as name, bio, location and profile picture.

blackbird-metadata

Random UserAgent

Blackbird uses a random UserAgent from a list of 1000 UserAgents in each request to prevent blocking.

Supersonic speed 🚀

Blackbird sends async HTTP requests, allowing a lot more speed when discovering user accounts.

JSON Template

Blackbird uses JSON as a template to store and read data.

The data.json file store all sites that blackbird verify.

Params

  • app - Site name
  • url
  • valid - Python expression that returns True when user exists
  • id - Unique numeric ID
  • method - HTTP method
  • json - JSON body POST (needs to be escaped, use this 👉 https://codebeautify.org/json-escape-unescape)
  • {username} - Username place (URL or Body)
  • response.status - HTTP response status
  • responseContent - Raw response body
  • soup - Beautifulsoup parsed response body
  • jsonData - JSON response body
  • metadada - a list of objects to be scraped

Examples

GET

root@kitploit:~
    {
      "app": "ExampleAPP1",
      "url": "https://www.example.com/{username}",
      "valid": "response.status == 200",
      "id": 1,
      "method": "GET"
    }

POST JSON

root@kitploit:~
    {
      "app": "ExampleAPP2",
      "url": "https://www.example.com/user",
      "valid": "jsonData['message']['found'] == True",
      "json": "{{\"type\": \"username\",\"input\": \"{username}\"}}",
      "id": 2,
      "method": "POST"
    }

GET with Metadata extraction

root@kitploit:~
    {
      "app": "Twitter",
      "id": 3,
      "method": "GET",
      "url": "https://nitter.net/{username}",
      "valid": "response.status == 200",
      "metadata": [
        {
          "type": "generic-data",
          "key": "Name",
          "value": "soup.find('a', class_='profile-card-fullname')['title']"
        },
        {
          "type": "generic-data",
          "key": "Bio",
          "value": "soup.find('div',class_='profile-bio').string"
        },
        {
          "type": "generic-data",
          "key": "Site",
          "value": "soup.find('div',class_='profile-website').text.strip('\\t\\r\\n')"
        },
        {
          "type": "generic-data",
          "key": "Member since",
          "value": "soup.find('div',class_='profile-joindate').find('span')['title']"
        },
        {
          "type": "image",
          "key": "picture",
          "value": "'https://nitter.net'+soup.find('a', class_='profile-card-avatar')['href']"
        },
        {
          "type": "location",
          "key": "location",
          "value": "soup.select_one('.profile-location:nth-of-type(2)').text.strip('\\t\\r\\n')"
        }
      ]
    }

Contributors 🏅

I'm grateful to all contributors who improved and bugfixed the project.

  • @RelatedTitle - Fixed the Youtube user search URL.
  • @prisar - Fixed the OS check for AsyncIO policy.
  • @itmaru - Fixed 'across' typo.
  • @Bryan-Herrera-DEV - Added Universocraft site.
  • @devXprite - Added NPM and PyPI sites.
  • @ChrisCarini - Fixed 'supported' typo.
  • @Pandede - Fixed No such file or directory: 'python' #24 issue, reformatted with autopep8, implemented enumerate and code splitting for functions.
  • @tr33n - Implemented random UserAgent for each request.
  • @Sebsebzen - Added VKontakte (with metadata).
  • @LsvanDarko - Added requests package to requirements.txt.
  • @wymiotkloaki - Added basic .gitignore file and 21 sites.
  • @dwaltsch - Added Dockerfile.

Planned features

  • Implement Flask Web Server to optimize UX
  • Export results in PDF
  • Implement metadata extraction
  • Publish a docker image
  • Add unit test (Change ID to Appname, add "invalid-user" and "valid-user" params in JSON.)
  • Export results in CSV
  • Deploy on Cloud

Contact

Feel free to contact me on Twitter

Download Tool
  • Ko Fi
  • Flickr
  • HackerEarth
  • Spotify
  • Snapchat Stories
  • Audio Jungle
  • Avid Community
  • Bandlab
  • Carrd
  • CastingCallClub
  • Coderwall
  • Codewars
  • F3
  • Gab
  • Issuu
  • Steemit
  • Venmo
  • MODDB
  • COLOURlovers
  • Scheme Color
  • Roblox Trade
  • Aetherhub
  • BugBounty
  • Huntr
  • Universocraft
  • Wireclub
  • AminoApps
  • Trakt
  • Giphy
  • Minecraft List
  • SEOClerks
  • Mix
  • Codecademy
  • Bandcamp
  • Poshmark
  • hackster
  • BodyBuilding
  • Mastodon
  • IFTTT
  • Anime Planet
  • Destructoid
  • Gitee
  • Teknik
  • BitChute
  • The Tatto Forum
  • NPM
  • PyPI
  • HackenProof
  • VKontakte
  • About me
  • Dissenter
  • Designspiration
  • Fark
  • mmorpg
  • Pikabu
  • Playstation Network
  • Warrior Forum
  • Pxilart
  • 2Dimensions
  • 3dnews
  • 7Cups
  • 9GAG
  • Academia.edu
  • Airbit
  • Airliners
  • Alik.cz
  • Apple Developer
  • Apple Discussions
  • Asciinema
  • Ask Fedora
  • Audiojungle
  • Autofrage
  • BLIP.fm
  • Bazar.cz
  • Bezuzyteczna
  • Bikemap
  • BioHacking
  • Bitwarden Forum
  • 101010 pl
  • 3DNews
  • 7cup
  • 21buttons
  • about me
  • Adult_Forum
  • ADVFN
  • aflam
  • akniga
  • Albicla
  • allesovercrypto
  • allmylinks
  • Alloannonces
  • AllTrails
  • Ameblo
  • AmericanThinker
  • Aminoapps
  • AnimePlanet
  • aNobii
  • anonup
  • Apex Legends
  • Appian
  • Archive Of Our Own Account
  • ArmorGames
  • ArtBreeder
  • Artists & Clients
  • asciinema
  • ask fm
  • au ru
  • authorSTREAM
  • Ayfal
  • bblog_ru
  • BDSMLR
  • bdsmsingles
  • Bentbox
  • BiggerPockets
  • Bimpos
  • Bitbucket
  • Bitchute
  • bitcoin forum
  • BLIP fm
  • Blogger
  • blogi pl
  • Blogmarks
  • BodyBuilding com
  • Bookcrossing
  • Booth
  • Brickset
  • Bugcrowd
  • buymeacoffee
  • BuzzFeed
  • Buzznet
  • Carbonmade
  • Career habr
  • CaringBridge
  • carrd co
  • cash app
  • CD-Action
  • cda pl
  • championat
  • Chaos social
  • cHEEZburger
  • Chamsko
  • Chess com
  • Chomikuj pl
  • Chyoa
  • clusterdafrica
  • cnet
  • codeforces
  • codementor
  • contactos sex
  • coroflot
  • cracked_io
  • Cracked
  • crevado
  • crowdin
  • Cults3D
  • Cytoid
  • Dailymotion
  • darudar
  • dateinasia
  • datezone
  • Dating ru
  • Demotywatory
  • Designspriation
  • DeviantArt
  • dfgames
  • dev to
  • devRant
  • Diablo
  • diigo
  • Digitalspy
  • Discogs
  • Discourse
  • discuss elastic co
  • Dojoverse
  • Dribbble
  • Droners
  • easyen
  • eBay
  • Elftown
  • Ello co
  • Engadget
  • EPORNER
  • Etsy
  • EU_Voice
  • ExtraLunchMoney
  • Eyeem
  • Fabswingers
  • Facenama
  • Faktopedia
  • FanCentro
  • Fandom
  • fanpop
  • fansly
  • FatSecret
  • fcv
  • fedi lewactwo pl
  • Filmweb
  • Flipboard
  • Fodors Forum
  • forumprawne org
  • fotka
  • Foursquare
  • freelancer
  • freesound
  • FriendFinder
  • FriendFinder-X
  • Friendweb
  • FurAffinity
  • Furiffic
  • game_debate
  • Garmin connect
  • Geocaching
  • getmonero
  • Gettr
  • Gigapan
  • Girlfriendsmeet
  • gitea
  • GitHub
  • GitLab
  • gitee
  • gloria tv
  • gnome_extensions
  • gpodder net
  • grandprof
  • Gravatar
  • gumroad
  • Hacker News
  • Hackernoon
  • hackerearth
  • hamaha
  • Heylink
  • hiberworld
  • HomeDesign3D
  • Houzz
  • HubPages
  • Hubski
  • hugging_face
  • Iconfinder
  • icq-chat
  • ifunny
  • igromania
  • ilovegrowingmarijuana
  • imagefap
  • iMGSRC RU
  • imgur
  • Independent academia
  • InkBunny
  • InsaneJournal
  • instructables
  • Internet Archive Account
  • Internet Archive User Search
  • interpals
  • ipolska pl
  • issuu
  • JBZD
  • jeja pl
  • Jeuxvideo
  • Joe Monster
  • JSFiddle
  • Justforfans
  • kaggle
  • karab in
  • kik
  • Ko-Fi
  • Kotburger
  • kwejk pl
  • LibraryThing
  • lichess
  • LINE
  • linux org ru
  • Livejournal
  • lobste rs
  • lowcygier pl
  • MAGABOOK
  • MAGA-CHAT
  • Magix
  • MapMyTracks
  • Maroc_nl
  • Marshmallow
  • Martech
  • Massage Anywhere
  • mastodon
  • MCUUID (Minecraft)
  • medyczka pl
  • meet me
  • megamodels pl
  • memrise
  • Microsoft Technet Community
  • Minds
  • Mistrzowie
  • Mixi
  • Mmorpg
  • Mod DB
  • Moneysavingexpert
  • Motokiller
  • moxfield
  • Muck Rack
  • MyAnimeList
  • MyBuilder com
  • MyFitnessPal
  • my_instants
  • MyLot
  • mym fans
  • NameMC
  • naija_planet
  • nairaland
  • NaturalNews
  • Naver
  • netvibes
  • Newgrounds
  • newmeet
  • NotABug
  • oglaszamy24h pl
  • ok ru
  • okidoki
  • olx
  • Opencollective
  • OpenStreetMap
  • OPGG
  • Orbys
  • osu!
  • Our Freedom Book
  • ow ly
  • palnet
  • Parler
  • Parler archived profile
  • Parler archived posts
  • PatientsLikeMe
  • Patronite
  • PCGamer
  • PCPartPicker
  • Pewex
  • Photoblog
  • PhotoBucket
  • Picsart
  • Piekielni
  • pikabu
  • PinkBike
  • Plurk
  • Pokec
  • pokemonshowdown
  • Pokerstrategy
  • Polchat pl
  • policja2009
  • Poll Everywhere
  • pol social
  • polygon
  • popl
  • Pornhub Porn Stars
  • Pornhub Users
  • postcrossing
  • Producthunt
  • promodj
  • prv pl
  • public
  • QUEER
  • quitter pl
  • Quora
  • ReblogMe
  • redbubble
  • Researchgate
  • rigcz club
  • risk ru
  • rsi
  • Ruby Dating
  • RumbleChannel
  • RumbleUser
  • Salon24
  • SaraCarterShow
  • ScoutWiki
  • scratch
  • Seneporno
  • sentimente
  • setlist fm
  • SFD
  • Shanii Writes
  • Shesfreaky
  • shopify
  • shutterstock
  • skeb
  • Skypli
  • Skyrock
  • slant
  • slideshare
  • slides
  • SmashRun
  • smelsy
  • SmugMug
  • smule
  • soc citizen4 eu
  • SoliKick
  • SoundCloud
  • Soup
  • SpankPay
  • Speaker Deck
  • SpiceWorks
  • sporcle
  • steemit
  • StoryCorps
  • Stripchat
  • sukebei nyaa si
  • Suzuri
  • Swalifnet
  • szmer info
  • tabletoptournament
  • Tagged
  • TamTam
  • Tanuki pl
  • Taringa
  • taskrabbit
  • Teamtreehouse
  • Tellonym
  • TF2 Backpack Examiner
  • tfl net pl
  • thegatewaypundit
  • theguardian
  • themeforest
  • Thetattooforum
  • TotalWar
  • TrackmaniaLadder
  • tradingview
  • trakt
  • tripadvisor
  • tumblr
  • Tunefind
  • Twitcasting
  • Twitch
  • Twitter archived profile
  • Twitter archived tweets
  • twpro
  • Udemy
  • uid
  • Ultras Diary
  • ulub pl
  • unsplash
  • untappd
  • USA Life
  • Vero
  • vibilagare
  • viddler
  • VIP-blog
  • Virustotal
  • Vivino
  • vizjer pl
  • VK
  • Voice123
  • Voices com
  • vsco
  • Wanelo
  • warriorforum
  • watchmemore com
  • wattpad
  • Weasyl
  • wego
  • weheartit
  • weibo
  • Wikidot
  • Wimkin-PublicProfile
  • wishlistr
  • Wolni Słowianie
  • wordnik
  • WordPress
  • WordPress Support
  • Wowhead
  • Wykop
  • Xanga
  • xHamster
  • Xing
  • XVIDEOS-models
  • XVIDEOS-profiles
  • Yahoo! JAPAN Auction
  • Yazawaj
  • Yelp
  • zatrybi pl
  • Zbiornik
  • zhihu
  • Zillow
  • zmarsa com
  • Zomato
  • zoomitir
  • If you have any suggestion of a site to be included in the search, make a pull request following the template.