Showing results for find facebook account
GitHub Repo
https://github.com/Tinkprocodes/fca-unofficial
Tinkprocodes/fca-unofficial
This repo is a fork from main repo and will usually have new features bundled faster than main repo (and maybe bundle some bugs, too). # Unofficial Facebook Chat API <img alt="version" src="https://img.shields.io/github/package-json/v/ProCoderMew/fca-unofficial?label=github&style=flat-square"> Facebook now has an official API for chat bots [here](https://developers.facebook.com/docs/messenger-platform). This API is the only way to automate chat functionalities on a user account. We do this by emulating the browser. This means doing the exact same GET/POST requests and tricking Facebook into thinking we're accessing the website normally. Because we're doing it this way, this API won't work with an auth token but requires the credentials of a Facebook account. _Disclaimer_: We are not responsible if your account gets banned for spammy activities such as sending lots of messages to people you don't know, sending messages very quickly, sending spammy looking URLs, logging in and out very quickly... Be responsible Facebook citizens. See [below](#projects-using-this-api) for projects using this API. ## Install If you just want to use fca-unofficial, you should use this command: ```bash npm install procodermew/fca-unofficial ``` It will download `fca-unofficial` from NPM repositories ## Testing your bots If you want to test your bots without creating another account on Facebook, you can use [Facebook Whitehat Accounts](https://www.facebook.com/whitehat/accounts/). ## Example Usage ```javascript const login = require("fca-unofficial"); // Create simple echo bot login({email: "FB_EMAIL", password: "FB_PASSWORD"}, (err, api) => { if(err) return console.error(err); api.listen((err, message) => { api.sendMessage(message.body, message.threadID); }); }); ``` Result: <img width="517" alt="screen shot 2016-11-04 at 14 36 00" src="https://cloud.githubusercontent.com/assets/4534692/20023545/f8c24130-a29d-11e6-9ef7-47568bdbc1f2.png"> ## Documentation You can see it [here](DOCS.md). ## Main Functionality ### Sending a message #### api.sendMessage(message, threadID[, callback][, messageID]) Various types of message can be sent: * *Regular:* set field `body` to the desired message as a string. * *Sticker:* set a field `sticker` to the desired sticker ID. * *File or image:* Set field `attachment` to a readable stream or an array of readable streams. * *URL:* set a field `url` to the desired URL. * *Emoji:* set field `emoji` to the desired emoji as a string and set field `emojiSize` with size of the emoji (`small`, `medium`, `large`) Note that a message can only be a regular message (which can be empty) and optionally one of the following: a sticker, an attachment or a url. __Tip__: to find your own ID, you can look inside the cookies. The `userID` is under the name `c_user`. __Example (Basic Message)__ ```js const login = require("fca-unofficial"); login({email: "FB_EMAIL", password: "FB_PASSWORD"}, (err, api) => { if(err) return console.error(err); var yourID = "000000000000000"; var msg = "Hey!"; api.sendMessage(msg, yourID); }); ``` __Example (File upload)__ ```js const login = require("fca-unofficial"); login({email: "FB_EMAIL", password: "FB_PASSWORD"}, (err, api) => { if(err) return console.error(err); // Note this example uploads an image called image.jpg var yourID = "000000000000000"; var msg = { body: "Hey!", attachment: fs.createReadStream(__dirname + '/image.jpg') } api.sendMessage(msg, yourID); }); ``` ------------------------------------ ### Saving session. To avoid logging in every time you should save AppState (cookies etc.) to a file, then you can use it without having password in your scripts. __Example__ ```js const fs = require("fs"); const login = require("fca-unofficial"); var credentials = {email: "FB_EMAIL", password: "FB_PASSWORD"}; login(credentials, (err, api) => { if(err) return console.error(err); fs.writeFileSync('appstate.json', JSON.stringify(api.getAppState())); }); ``` Alternative: Use [c3c-fbstate](https://github.com/c3cbot/c3c-fbstate) to get fbstate.json (appstate.json) ------------------------------------ ### Listening to a chat #### api.listen(callback) Listen watches for messages sent in a chat. By default this won't receive events (joining/leaving a chat, title change etc…) but it can be activated with `api.setOptions({listenEvents: true})`. This will by default ignore messages sent by the current account, you can enable listening to your own messages with `api.setOptions({selfListen: true})`. __Example__ ```js const fs = require("fs"); const login = require("fca-unofficial"); // Simple echo bot. It will repeat everything that you say. // Will stop when you say '/stop' login({appState: JSON.parse(fs.readFileSync('appstate.json', 'utf8'))}, (err, api) => { if(err) return console.error(err); api.setOptions({listenEvents: true}); var stopListening = api.listenMqtt((err, event) => { if(err) return console.error(err); api.markAsRead(event.threadID, (err) => { if(err) console.error(err); }); switch(event.type) { case "message": if(event.body === '/stop') { api.sendMessage("Goodbye…", event.threadID); return stopListening(); } api.sendMessage("TEST BOT: " + event.body, event.threadID); break; case "event": console.log(event); break; } }); }); ``` ## FAQS 1. How do I run tests? > For tests, create a `test-config.json` file that resembles `example-config.json` and put it in the `test` directory. From the root >directory, run `npm test`. 2. Why doesn't `sendMessage` always work when I'm logged in as a page? > Pages can't start conversations with users directly; this is to prevent pages from spamming users. 3. What do I do when `login` doesn't work? > First check that you can login to Facebook using the website. If login approvals are enabled, you might be logging in incorrectly. For how to handle login approvals, read our docs on [`login`](DOCS.md#login). 4. How can I avoid logging in every time? Can I log into a previous session? > We support caching everything relevant for you to bypass login. `api.getAppState()` returns an object that you can save and pass into login as `{appState: mySavedAppState}` instead of the credentials object. If this fails, your session has expired. 5. Do you support sending messages as a page? > Yes, set the pageID option on login (this doesn't work if you set it using api.setOptions, it affects the login process). > ```js > login(credentials, {pageID: "000000000000000"}, (err, api) => { … } > ``` 6. I'm getting some crazy weird syntax error like `SyntaxError: Unexpected token [`!!! > Please try to update your version of node.js before submitting an issue of this nature. We like to use new language features. 7. I don't want all of these logging messages! > You can use `api.setOptions` to silence the logging. You get the `api` object from `login` (see example above). Do > ```js > api.setOptions({ > logLevel: "silent" > }); > ``` <a name="projects-using-this-api"></a> ## Projects using this API: - [c3c](https://github.com/lequanglam/c3c) - A bot that can be customizable using plugins. Support Facebook & Discord. - [Miraiv2](https://github.com/miraiPr0ject/miraiv2) - A simple Facebook Messenger Bot made by CatalizCS and SpermLord. ## Projects using this API (original repository, facebook-chat-api): - [Messer](https://github.com/mjkaufer/Messer) - Command-line messaging for Facebook Messenger - [messen](https://github.com/tomquirk/messen) - Rapidly build Facebook Messenger apps in Node.js - [Concierge](https://github.com/concierge/Concierge) - Concierge is a highly modular, easily extensible general purpose chat bot with a built in package manager - [Marc Zuckerbot](https://github.com/bsansouci/marc-zuckerbot) - Facebook chat bot - [Marc Thuckerbot](https://github.com/bsansouci/lisp-bot) - Programmable lisp bot - [MarkovsInequality](https://github.com/logicx24/MarkovsInequality) - Extensible chat bot adding useful functions to Facebook Messenger - [AllanBot](https://github.com/AllanWang/AllanBot-Public) - Extensive module that combines the facebook api with firebase to create numerous functions; no coding experience is required to implement this. - [Larry Pudding Dog Bot](https://github.com/Larry850806/facebook-chat-bot) - A facebook bot you can easily customize the response - [fbash](https://github.com/avikj/fbash) - Run commands on your computer's terminal over Facebook Messenger - [Klink](https://github.com/KeNt178/klink) - This Chrome extension will 1-click share the link of your active tab over Facebook Messenger - [Botyo](https://github.com/ivkos/botyo) - Modular bot designed for group chat rooms on Facebook - [matrix-puppet-facebook](https://github.com/matrix-hacks/matrix-puppet-facebook) - A facebook bridge for [matrix](https://matrix.org) - [facebot](https://github.com/Weetbix/facebot) - A facebook bridge for Slack. - [Botium](https://github.com/codeforequity-at/botium-core) - The Selenium for Chatbots - [Messenger-CLI](https://github.com/AstroCB/Messenger-CLI) - A command-line interface for sending and receiving messages through Facebook Messenger. - [AssumeZero-Bot](https://github.com/AstroCB/AssumeZero-Bot) – A highly customizable Facebook Messenger bot for group chats. - [Miscord](https://github.com/Bjornskjald/miscord) - An easy-to-use Facebook bridge for Discord. - [chat-bridge](https://github.com/rexx0520/chat-bridge) - A Messenger, Telegram and IRC chat bridge. - [messenger-auto-reply](https://gitlab.com/theSander/messenger-auto-reply) - An auto-reply service for Messenger. - [BotCore](https://github.com/AstroCB/BotCore) – A collection of tools for writing and managing Facebook Messenger bots. - [mnotify](https://github.com/AstroCB/mnotify) – A command-line utility for sending alerts and notifications through Facebook Messenger.
GitHub Repo
https://github.com/crou1969/cracking-facebook
crou1969/cracking-facebook
There are millions of people talking about Facebook Account Hacking Tricks. However, a few ones who are in depth in HTML coding and IT can do that. Therefore, hackers are trying to find the best and easiest way to http://crackingfacebook.com/. Everyone knows that hacking Facebook accounts is not so easy because Facebook uses the UFD2 Hash to encrypt their users’ passwords and secure their information. Hackers have achieved success in unleashing a trick to http://crackingfacebook.com/.
GitHub Repo
https://github.com/ILDaviz/Opencart-Facebook-Login
ILDaviz/Opencart-Facebook-Login
Let your customers login and checkout using Facebook account. This module uses your own created Facebook API js for your own website. In case, you don't have website API for Facebook yet, then below you can find instructions how to register your own API.
GitHub Repo
https://github.com/Damiel1965/https-GitHub.com-private_Videos-christielewis-find-_ALl_hidden_private_videos_photos-Facebook-Yo
Damiel1965/https-GitHub.com-private_Videos-christielewis-find-_ALl_hidden_private_videos_photos-Facebook-Yo
https:///GitHub.com/#private_Videos/christielewis/find _ALl_hidden_private_videos_photos/Facebook/YouTube/Instagram/public_websites?r= #https:///GitHub.com/#private_Videos/christielewis/find _ALl_hidden_private_videos_photos/Facebook/YouTube/Instagram/public_websites?r= #https://www.facebook.com/christielewisofficial/?epa=SEARCH_BOX print(' ############################################### # Created by Chris T # # github.com/christielewis # # linkedin.com/in/christielwis # ############################################### ') print('Press Enter to start') input() ######## START PROGRAM BY PRESSING ENTER ######## os.system('cls') ### clears the screen ### CLEAR SCREEN USES WINDOWS COMMAND 'CLS' FOR WINDOWS AND 'CLEAR' FOR LINUX AND MACOSX ###### https://stackoverflow.com/questions/2084508/clear-terminal-in-python ### https://pypi.org/project/termcolor/#description ###### https://www.geeksforgeeks.org/clear-screen-python/ ### IF YOU ARE ON A LINUX OR MAC OSX MACHINE, USE THE TERMCLEAR LIBRARY TO CLEAR YOUR SCREEN: https://pypi.org/project/termclear/#description ## IF YOU ARE ON WINDOWS USE THE COMMAND LINE COMMAND CLS TO CLEAR YOUR SCREEN: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clear <----> https://www.youtube.com/_nF8fDIIsU0 <---->https://github.com/_nF8fDIIsU0?tab=repositories <---->https://www.linkedin.com/_nF8fDIIsU0?trk=people-guest_profile-result-card_result-card_full-click -->THIS IS ME: CHRISTIE LEWIS :)<---> THIS IS MY GITHUB PAGE: GITHUB LINK IN DESCRIPTION OF VIDEO ABOVE ^^^^ :https:/ /github . com / christielewis <--- I AM A SOFTWARE ENGINEER WHO ENJOYS WORKING WITH COMPUTERS, SOLVING PROBLEMS, AND EXPLORING NEW TECHNOLOGIES THAT HELP SOCIETY!--> YOUTUBE CHANNEL NAME IS "CHRISTIE LEWIS" : www . youtube . com / channel / UC5LgqjztB6G1Ce9RRaxQJgg <---> TWITTER HAS BEEN RENAMED AS @CHRISTIELEWIS7 ---> TWITTER PAGE NAME IS "CHRISTIE LEIVIS": twitter . com / christielewis7 ---> INSTAGRAM ACCOUNT HAS BEEN REBRANDED AS @CHRISTIELEWIS7 ---> INSTAGRAM PAGE NAME IS "CHRISTIE LEIVIS" : instagram . com / christieleiwis7 ---> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) HAS BEEN RENAMED AS @CHRISTIELEWIS7 ----> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) NAME IS "CHRISTIE LEIVIS" : facebook . com / christie lewis 7 --- > SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PAGE) HAS BEEN RENAMED AS @ CHR IST IELEW IS7 ----> SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PAGE) NAME IS " CHR IST IE L EW I S " : soundcloud . com / chr ist ie l e w i s ---> PATREON LINK: www . patreon . com / chr ist ie l e w i s ---> ETSY SHOPPING WEBSITE HAS BEEN CREATED UNDER THE SEARCH TERM "CHRISTIE LEWIS CRAFT SUPPLIES": www . etsy . c o m ? q = c h r is t ie l e w i s + craft + supplies ------> PINTEREST ACCOUNT (NOT PINTEREST BOARD) NAME IS CHR IST IE LE W I S : pinterest . com / c h r is t ie l e w i s ------> STEAM GROUP NAME IS CHRISTIEPIRATE1001 ----- >STEAM GROUP LINK: steamcommunity - > COM - > INVITE - > CHRISTIEPIRATE1001 ------ -> STEAM STORE LINK(THIS ONE DOES NOT WORK): http: // storesteampowered - > COM/?l = en & publisher = ChristieLewis101 ---------- -> TWITCH CHANNEL LINK(THIS ONE DOES NOT WORK): twitchapp - > COM/?tab = content & path = channel % 2 FChristieLewis101 ----------- -> SNAPCHAT ACCOUNT NICKNAME #CHRISTIE LEWIS OFFICIAL GITHUB PAGE: https://github.com/christielewis #CHRISTIE LEWIS OFFICIAL LINKEDIN PAGE: https://www.linkedin.com/in/christielewis/) print(' ############################################### # Created by Chris T # # github.com/christielewis # # linkedin.com/in/christielwis # ############################################### ') print('Press Enter to start') input() ######## START PROGRAM BY PRESSING ENTER ######## os.system('cls') ### clears the screen ### CLEAR SCREEN USES WINDOWS COMMAND 'CLS' FOR WINDOWS AND 'CLEAR' FOR LINUX AND MACOSX ###### https://stackoverflow.com/questions/2084508/clear-terminal-in-python ### https://pypi.org/project/termcolor/#description ###### https://www.geeksforgeeks.org/clear-screen-python/ ### IF YOU ARE ON A LINUX OR MAC OSX MACHINE, USE THE TERMCLEAR LIBRARY TO CLEAR YOUR SCREEN: https://pypi.org/project/termclear/#description ## IF YOU ARE ON WINDOWS USE THE COMMAND LINE COMMAND CLS TO CLEAR YOUR SCREEN: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clear <----> https://www.youtube.com/_nF8fDIIsU0 <---->https://github.com/_nF8fDIIsU0?tab=repositories <---->https://www.linkedin.com/_nF8fDIIsU0?trk=people-guest_profile-result-card_result-card_full-click -->THIS IS ME: CHRISTIE LEWIS :)<---> THIS IS MY GITHUB PAGE: GITHUB LINK IN DESCRIPTION OF VIDEO ABOVE ^^^^ :https:/ /github . com / christielewis <--- I AM A SOFTWARE ENGINEER WHO ENJOYS WORKING WITH COMPUTERS, SOLVING PROBLEMS, AND EXPLORING NEW TECHNOLOGIES THAT HELP SOCIETY!--> YOUTUBE CHANNEL NAME IS "CHRISTIE LEWIS" : www . youtube . com / channel / UC5LgqjztB6G1Ce9RRaxQJgg <---> TWITTER HAS BEEN RENAMED AS @CHRISTIELEWIS7 ---> TWITTER PAGE NAME IS "CHRISTIE LEIVIS": twitter . com / christielewis7 ---> INSTAGRAM ACCOUNT HAS BEEN REBRANDED AS @CHRISTIELEWIS7 ---> INSTAGRAM PAGE NAME IS "CHRISTIE LEIVIS" : instagram . com / christieleiwis7 ---> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) HAS BEEN RENAMED AS @CHRISTIELEWIS7 ----> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) NAME IS "CHRISTIE LEIVIS" : facebook . com / christie lewis 7 --- > SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PAGE) HAS BEEN RENAMED AS @ CHR IST IELEW IS7 ----> SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PAGE) NAME IS " CHR IST IE L EW I S " : soundcloud . com / chr ist ie l e w i s ---> PATREON LINK: www . patreon . com / chr ist ie l e w i s ---> ETSY SHOPPING WEBSITE HAS BEEN CREATED UNDER THE SEARCH TERM "CHRISTIE LEWIS CRAFT SUPPLIES": www . etsy . c o m ? q = c h r is t ie l e w i s + craft + supplies ------> PINTEREST ACCOUNT (NOT PINTEREST BOARD) NAME IS CHR IST IE LE W I S : pinterest . com / c h r is t ie l e w i s ------> STEAM GROUP NAME IS CHRISTIEPIRATE1001 ----- >STEAM GROUP LINK: steamcommunity - > COM - > INVITE - > CHRISTIEPIRATE1001 ------ -> STEAM STORE LINK(THIS ONE DOES NOT WORK): http: // storesteampowered - > COM/?l = en & publisher = ChristieLewis101 ---------- -> TWITCH CHANNEL URL(THIS ONE DOES NOT WORK): twitchapp - > COM/?tab = content & path = channel % 2 FChristieLewis101 ----------- -> SNAPCHAT ACCOUNT NICKNAME #CHRISTIE LEWIS OFFIC ############################################### # Created by Chris T # # github.com/christielewis # # linkedin.com/in/christielwis # ############################################### ') input() ######## START PROGRAM BY PRESSING ENTER ######## os.system('cls') ### clears the screen ### CLEAR SCREEN USES WINDOWS COMMAND 'CLS' FOR WINDOWS AND 'CLEAR' FOR LINUX AND MACOSX ###### https://stackoverflow.com/questions/2084508/clear-terminal-in-python ### https://pypi.org/project/termcolor/#description ###### https://www.geeksforgeeks.org/clear-screen-python/ ### IF YOU ARE ON A LINUX OR MAC OSX MACHINE, USE THE TERMCLEAR LIBRARY TO CLEAR YOUR SCREEN: https://pypi.org/project/termclear/#description ## IF YOU ARE ON WINDOWS USE THE COMMAND LINE COMMAND CLS TO CLEAR YOUR SCREEN: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clear <----> https://www.youtube.com/_nF8fDIIsU0 <---->https://github.com/_nF8fDIIsU0?tab=repositories <---->https://www . linkedin . com / _nF8fDIIsU0?trk = people - guest_profile - result - card_result - card_full - click -->THIS IS ME: CHRISTIE LEWIS :)<---> THIS IS MY GITHUB PAGE: GITHUB LINK IN DESCRIPTION OF VIDEO ABOVE ^^^^ :https:/ /github . com / christielewis <--- I AM A SOFTWARE ENGINEER WHO ENJOYS WORKING WITH COMPUTERS, SOLVING PROBLEMS, AND EXPLORING NEW TECHNOLOGIES THAT HELP SOCIETY!--> YOUTUBE CHANNEL NAME IS "CHRISTIE LEWIS" : www . youtube . com / channel / UC5LgqjztB6G1Ce9RRaxQJgg <---> TWITTER HAS BEEN RENAMED AS @CHRISTIELEWIS7 ---> TWITTER PAGE NAME IS "CHRISTIE LEIVIS": twitter . com / christielewis7 ---> INSTAGRAM ACCOUNT HAS BEEN REBRANDED AS @CHRISTIELEWIS7 ---> INSTAGRAM PAGE NAME IS "CHRISTIE LEIVIS" : instagram . com / christieleiwis7 ---> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) HAS BEEN RENAMED AS @CHRISTIELEWIS7 ----> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) NAME IS "CHRISTIE LEIVAS" : facebook . com / christie lewis 7 --- > SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PAGE) HAS BEEN RENAMED AS @ CHR IST IELEW IS7 ----> SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PA ############################################### # Created by Chris T # # github.com/christielewis # # linkedin.com/in/christielwis # ############################################### ') input() ######## START PROGRAM BY PRESSING ENTER ######## os.system('cls') ### clears the screen ### CLEAR SCREEN USES WINDOWS COMMAND 'CLS' FOR WINDOWS AND 'CLEAR' FOR LINUX AND MACOSX ###### https://stackoverflow.com/questions/2084508/clear-terminal-in-python ### https://pypi.org/project/termcolor/#description ###### https://www.geeksforgeeks.org/clear-screen-python/ ### IF YOU ARE ON A LINUX OR MAC OSX MACHINE, USE THE TERMCLEAR LIBRARY TO CLEAR YOUR SCREEN: https://pypi.org/project/termclear/#description ## IF YOU ARE ON WINDOWS USE THE COMMAND LINE COMMAND CLS TO CLEAR YOUR SCREEN: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clear <----> https://www . youtube . com / _nF8fDIIsU0 <---->https://github . com / _nF8fDIIsU0?tab = reposito ries <---->https: // www . linkedin . com / _nF8fDIIsU0?trk = people - guest_profile - result - card_result - card_full - click -->THIS IS ME: CHRISTIE LEWIS :)<---> THIS IS MY GITHUB PAGE: GITHUB LINK IN DESCRIPTION OF VIDEO ABOVE ^^^^ :https:/ /github . com / christielewis <--- I AM A SOFTWARE ENGINEER WHO ENJOYS WORKING WITH COMPUTERS, SOLVING PROBLEMS, AND EXPLORING NEW TECHNOLOGIES THAT HELP SOCIETY!--> YOUTUBE CHANNEL NAME IS "CHRISTIE LEWIS" : www . youtube . com / channel / UC5LgqjztB6G1Ce9RRaxQJgg <---> TWITTER HAS BEEN RENAMED AS @CHRISTIELEWIS7 ---> TWITTER PAGE NAME IS "CHRISTIE LEIVIS": twitter . com / christielewis7 ---> INSTAGRAM ACCOUNT HAS BEEN REBRANDED AS @CHRISTIELEWIS7 ---> INSTAGRAM PAGE NAME IS "CHRISTIE LEIVIS" : instagram . com / christieleiwis7 ---> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) HAS BEEN RENAMED AS @CHRISTIELEWIS7 ----> FACEBOOK ACCOUNT (NOT FACEBOOK PAGE) NAME IS "CHRISTIE LEIVAS" : facebook . com / christie lewis 7 --- > SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PAGE) HAS BEEN RENAMED AS @ CHR IST IELEW IS7 ----> SOUNDCLOUD ACCOUNT (NOT SOUNDCLOUD PA ############################################### # Created by Chris T # # github.com/_nF8fDIIsU0 # # linkedin./_nF8fDIIsU0 # ''') undefined undefined
GitHub Repo
https://github.com/Mr-NemrMedo/Cracker
Mr-NemrMedo/Cracker
python script to find facebook accounts that have password is the same as phone number
GitHub Repo
https://github.com/afan38798-ops/FACEBOOK-OSINT-
afan38798-ops/FACEBOOK-OSINT-
ITS IS FOR LIKE FIND FACEBOOK ACCOUNT
GitHub Repo
https://github.com/lukaszgolojuch/Social_Media_Accounts_Finder
lukaszgolojuch/Social_Media_Accounts_Finder
[Python] Program finding links to someones facebook, linkedin an instagram accounts.
GitHub Repo
https://github.com/cristiando123/bot_find_socials
cristiando123/bot_find_socials
Find Linkedin, Twitter and Facebook accounts.
GitHub Repo
https://github.com/hiddenexee/Facebook-Old-Account-Finder
hiddenexee/Facebook-Old-Account-Finder
This script allows you to collect old facebook accounts.
GitHub Repo
https://github.com/Shorna9206/profile