Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! Blackbird - An OSINT Tool To Search For Accounts By Username In 101 Social Networks https://blogger.googleusercontent.com/img/a/AVvXsEgKeGyM9__3hpwEt2RNzvp5GJy5r2aP2cnfGNadbTFEYQb2aRHm2uszHz8tLgviN432amxcCmKD-5TaOUDZVbw-oCKXjEOf…
plate 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 ExamplesGET
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 ExamplesGET
{
"app": "ExampleAPP1",
"url": "https://www.example.com/{username}",
"valid": "response.status == 200",
"id": 1,
"method": "GET"
}POST JSON {
"app": "ExampleAPP2",
"url": "https://www.example.com/user",
"valid": "jsonData['message']['found'] == True",
"json": "{{\"type\": \"username\",\"input\": \"{username}\"}}",
"id": 2,
"method": "POST"
}If you have any suggestion of a site to be included in the search, make a pull request following the template. ContactFeel free to contact me on Twitter Download BlackbirdBlackbird - An OSINT Tool To Search For Accounts By Username In 101 Social Networks
http://www.kitploit.com/2022/06/blackbird-osint-tool-to-search-for.html
http://www.kitploit.com/2022/06/blackbird-osint-tool-to-search-for.html
Blackbird An OSINT (https://www.kitploit.com/search/label/OSINT) tool to search fast for accounts by username across 101 sites. The Lockheed SR-71 "Blackbird" is a long-range, high-altitude, Mach 3+ strategic reconnaissance (https://www.kitploit.com/search/label/Reconnaissance) aircraft developed and manufactured by the American aerospace company Lockheed Corporation. Disclaimer This or previous program is for Educational purpose ONLY. Do not use it without permission.
The usual disclaimer applies, especially the fact (https://www.kitploit.com/search/label/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.
The usual disclaimer applies, especially the fact (https://www.kitploit.com/search/label/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 git clone https://github.com/p1ngul1n0/blackbird
cd blackbird Install requirements pip install -r requirements.txt Usage Search by username python blackbird.py -u username Run WebServer python blackbird.py --web Access http://127.0.0.1:5000 (http://127.0.0.1:5000/) on the browser Read results file python blackbird.py -f username.json List supportted sites python blackbird.py --list-sites Supported Social Networks Facebook YouTube Twitter Telegram TikTok Tinder Instagram Pinterest Snapchat Reddit Soundcloud Github Steam Linktree Xbox Gamertag Twitter Archived Xvideos PornHub Xhamster Periscope Ask FM Vimeo Twitch Pastebin WordPress Profile WordPress Site AllMyLinks Buzzfeed JsFiddle Sourceforge Kickstarter Smule Blogspot Tradingview Internet Archive Alura Behance MySpace Disqus Slideshare Rumble Ebay RedBubble Kik Roblox Armor Games Fortnite Tracker Duolingo Chess Shopify Untappd Last FM Cash APP Imgur Trello MCUUID Minecraft Patreon DockerHub Kongregate Vine Gamespot Shutterstock Chaturbate ProtonMail TripAdvisor RapidAPI HackTheBox Wikipedia Buymeacoffe Arduino League of Legends Tracker Lego Ideas Fiverr Redtube Dribble Packet Storm Security Ello Medium Hackaday Keybase HackerOne BugCrowd DevPost OneCompiler TryHackMe Lyrics Training Expo RAWG Coroflot Cloudflare Wattpad Mixlr ImageShack Freelancer Dev To BitBucket Ko Fi Flickr HackerEarth Spotify Snapchat Stories 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 (https://github.com/p1ngul1n0/blackbird/blob/main/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 (https://www.kitploit.com/search/label/Username) place (URL or Body) response.status - HTTP response status responseContent - Raw response body soup - Beautifulsoup (https://www.kitploit.com/search/label/Beautifulsoup) parsed response body jsonData - JSON response body Examples GET {
"app": "ExampleAPP1",
"url": "https://www.example.com/{username}",
"valid": "response.status == 200",
"id": 1,
"method": "GET"
} POST JSON {
"app": "ExampleAPP2",
"url": "https://www.example.com/user",
"valid": "jsonData['message']['found'] == True",
"json": "{{\"type\": \"username\",\"input\": \"{username}\"}}",
"id": 2,
"method": "POST"
} If you have any suggestion of a site to be included in the search, make a pull request following the template. Contact Feel free to contact me on Twitter (https://twitter.com/p1ngul1n0)
Download Blackbird (https://github.com/p1ngul1n0/blackbird)
cd blackbird Install requirements pip install -r requirements.txt Usage Search by username python blackbird.py -u username Run WebServer python blackbird.py --web Access http://127.0.0.1:5000 (http://127.0.0.1:5000/) on the browser Read results file python blackbird.py -f username.json List supportted sites python blackbird.py --list-sites Supported Social Networks Facebook YouTube Twitter Telegram TikTok Tinder Instagram Pinterest Snapchat Reddit Soundcloud Github Steam Linktree Xbox Gamertag Twitter Archived Xvideos PornHub Xhamster Periscope Ask FM Vimeo Twitch Pastebin WordPress Profile WordPress Site AllMyLinks Buzzfeed JsFiddle Sourceforge Kickstarter Smule Blogspot Tradingview Internet Archive Alura Behance MySpace Disqus Slideshare Rumble Ebay RedBubble Kik Roblox Armor Games Fortnite Tracker Duolingo Chess Shopify Untappd Last FM Cash APP Imgur Trello MCUUID Minecraft Patreon DockerHub Kongregate Vine Gamespot Shutterstock Chaturbate ProtonMail TripAdvisor RapidAPI HackTheBox Wikipedia Buymeacoffe Arduino League of Legends Tracker Lego Ideas Fiverr Redtube Dribble Packet Storm Security Ello Medium Hackaday Keybase HackerOne BugCrowd DevPost OneCompiler TryHackMe Lyrics Training Expo RAWG Coroflot Cloudflare Wattpad Mixlr ImageShack Freelancer Dev To BitBucket Ko Fi Flickr HackerEarth Spotify Snapchat Stories 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 (https://github.com/p1ngul1n0/blackbird/blob/main/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 (https://www.kitploit.com/search/label/Username) place (URL or Body) response.status - HTTP response status responseContent - Raw response body soup - Beautifulsoup (https://www.kitploit.com/search/label/Beautifulsoup) parsed response body jsonData - JSON response body Examples GET {
"app": "ExampleAPP1",
"url": "https://www.example.com/{username}",
"valid": "response.status == 200",
"id": 1,
"method": "GET"
} POST JSON {
"app": "ExampleAPP2",
"url": "https://www.example.com/user",
"valid": "jsonData['message']['found'] == True",
"json": "{{\"type\": \"username\",\"input\": \"{username}\"}}",
"id": 2,
"method": "POST"
} If you have any suggestion of a site to be included in the search, make a pull request following the template. Contact Feel free to contact me on Twitter (https://twitter.com/p1ngul1n0)
Download Blackbird (https://github.com/p1ngul1n0/blackbird)
What is Bug Bounty Hunting?
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?Continue reading on Medium »
Read more...
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?Continue reading on Medium »
Read more...
What is Bug Bounty Hunting?
https://0xtmux.medium.com/what-is-bug-bounty-hunting-599ce3aee97f?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://0xtmux.medium.com/what-is-bug-bounty-hunting-599ce3aee97f?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
What is Bug Bounty Hunting?
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?Continue reading on Medium » (https://0xtmux.medium.com/what-is-bug-bounty-hunting-599ce3aee97f?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
What is Bug Bounty Hunting?
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
What is Bug Bounty Hunting?
https://cdn-images-1.medium.com/max/1170/1*nlNIzFAuWUThF2NOXiXUaw.jpeg
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
What is Bug Bounty Hunting?
https://cdn-images-1.medium.com/max/1170/1*nlNIzFAuWUThF2NOXiXUaw.jpeg
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
What is Bug Bounty Hunting?
Lately Bug Bounty Hunting has become quite a buzzword. But what exactly is it and how can somebody start?
Minecraft security seems weak even after Log4j..
https://www.reddit.com/r/Pentesting/comments/v8xj4t/minecraft_security_seems_weak_even_after_log4j/
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/Pentesting/comments/v8xj4t/minecraft_security_seems_weak_even_after_log4j/
___________________________
@hacking_Attack
@Hacking_Video
reddit
Minecraft security seems weak even after Log4j..
Posted in r/Pentesting by u/Late_Ice_9288 • 0 points and 1 comment
Minecraft Server port: Even after the log4j disaster, security of minecraft seems weak.. Only after finding mincraft servers, It seems possible to penetrate from outside to inside. They need attentions https://preview.redd.it/u61kr8c1ip491.png?width=1510&format=png&auto=webp&s=2e0799c80df04e41c8d453b7de794d12c9f5cb87 submitted by /u/Late_Ice_9288 (https://www.reddit.com/user/Late_Ice_9288)
[link] (https://www.reddit.com/r/Pentesting/comments/v8xj4t/minecraft_security_seems_weak_even_after_log4j/) [comments] (https://www.reddit.com/r/Pentesting/comments/v8xj4t/minecraft_security_seems_weak_even_after_log4j/)
___________________________
@hacking_Attack
@Hacking_Video
[link] (https://www.reddit.com/r/Pentesting/comments/v8xj4t/minecraft_security_seems_weak_even_after_log4j/) [comments] (https://www.reddit.com/r/Pentesting/comments/v8xj4t/minecraft_security_seems_weak_even_after_log4j/)
___________________________
@hacking_Attack
@Hacking_Video
Minecraft security seems weak even after Log4j..
https://www.reddit.com/r/redteamsec/comments/v8xmhz/minecraft_security_seems_weak_even_after_log4j/
Minecraft Server port: Even after the log4j disaster, security of minecraft seems weak.. Only after finding mincraft servers, It seems possible to penetrate from outside to inside. They need attentions https://preview.redd.it/9aksamczip491.png?width=1510&format=png&auto=webp&s=207d098df924a9e7a59e707a80e71eb153b696fa submitted by /u/Late_Ice_9288 (https://www.reddit.com/user/Late_Ice_9288)
[link] (https://www.reddit.com/r/redteamsec/comments/v8xmhz/minecraft_security_seems_weak_even_after_log4j/) [comments] (https://www.reddit.com/r/redteamsec/comments/v8xmhz/minecraft_security_seems_weak_even_after_log4j/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/v8xmhz/minecraft_security_seems_weak_even_after_log4j/
Minecraft Server port: Even after the log4j disaster, security of minecraft seems weak.. Only after finding mincraft servers, It seems possible to penetrate from outside to inside. They need attentions https://preview.redd.it/9aksamczip491.png?width=1510&format=png&auto=webp&s=207d098df924a9e7a59e707a80e71eb153b696fa submitted by /u/Late_Ice_9288 (https://www.reddit.com/user/Late_Ice_9288)
[link] (https://www.reddit.com/r/redteamsec/comments/v8xmhz/minecraft_security_seems_weak_even_after_log4j/) [comments] (https://www.reddit.com/r/redteamsec/comments/v8xmhz/minecraft_security_seems_weak_even_after_log4j/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Minecraft security seems weak even after Log4j..
Posted in r/redteamsec by u/Late_Ice_9288 • 1 point and 0 comments
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Kali Linux team to stream free penetration testing course on Twitch
https://external-preview.redd.it/Jqb_FpC9iSPjdDTjS9UdfKVpVw5cdx8nPedUO-zktdk.jpg?width=640&crop=smart&auto=webp&s=19d9e4bc906ceb023c2be83802312098ddc76e28 submitted by /u/techietraveller84
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Kali Linux team to stream free penetration testing course on Twitch
https://external-preview.redd.it/Jqb_FpC9iSPjdDTjS9UdfKVpVw5cdx8nPedUO-zktdk.jpg?width=640&crop=smart&auto=webp&s=19d9e4bc906ceb023c2be83802312098ddc76e28 submitted by /u/techietraveller84
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Kali Linux team to stream free penetration testing course on Twitch
Posted in r/hacking by u/techietraveller84 • 1,585 points and 62 comments
hacking: security in practice
bandwidth increase
I pay for my wifi through the captive portal provided when you connect to the wifi. Anybody know how I can get better speeds from the wifi without paying the for the overpriced better speeds
submitted by /u/ComprehensiveGoat358
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
bandwidth increase
I pay for my wifi through the captive portal provided when you connect to the wifi. Anybody know how I can get better speeds from the wifi without paying the for the overpriced better speeds
submitted by /u/ComprehensiveGoat358
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
bandwidth increase
I pay for my wifi through the captive portal provided when you connect to the wifi. Anybody know how I can get better speeds from the wifi without...
Pentesters: what was your first tech-related job/internship/position?
https://www.reddit.com/r/Pentesting/comments/v8yz7i/pentesters_what_was_your_first_techrelated/
submitted by /u/NotVeryMega (https://www.reddit.com/user/NotVeryMega)
[link] (https://www.reddit.com/r/cybersecurity/comments/v8ywcp/pentesters_what_was_your_first_techrelated/) [comments] (https://www.reddit.com/r/Pentesting/comments/v8yz7i/pentesters_what_was_your_first_techrelated/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/Pentesting/comments/v8yz7i/pentesters_what_was_your_first_techrelated/
submitted by /u/NotVeryMega (https://www.reddit.com/user/NotVeryMega)
[link] (https://www.reddit.com/r/cybersecurity/comments/v8ywcp/pentesters_what_was_your_first_techrelated/) [comments] (https://www.reddit.com/r/Pentesting/comments/v8yz7i/pentesters_what_was_your_first_techrelated/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Pentesters: what was your first tech-related job/internship/position?
Posted in r/Pentesting by u/NotVeryMega • 1 point and 0 comments
Codewarrior - Static code analysis tool
https://www.reddit.com/r/redteamsec/comments/v90hab/codewarrior_static_code_analysis_tool/
submitted by /u/CoolerVoid (https://www.reddit.com/user/CoolerVoid)
[link] (https://github.com/CoolerVoid/codewarrior) [comments] (https://www.reddit.com/r/redteamsec/comments/v90hab/codewarrior_static_code_analysis_tool/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/v90hab/codewarrior_static_code_analysis_tool/
submitted by /u/CoolerVoid (https://www.reddit.com/user/CoolerVoid)
[link] (https://github.com/CoolerVoid/codewarrior) [comments] (https://www.reddit.com/r/redteamsec/comments/v90hab/codewarrior_static_code_analysis_tool/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Codewarrior - Static code analysis tool
Posted in r/redteamsec by u/CoolerVoid • 1 point and 0 comments