├── LICENSE ├── NicknameFinder.py ├── README.md ├── forums.txt ├── games.txt ├── money.txt ├── other.txt ├── requriments.txt ├── snm.txt └── vh.txt /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 restanse 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /NicknameFinder.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | import colorama 4 | from colorama import Fore, Back, Style 5 | colorama.init() 6 | 7 | print(Fore.GREEN + ''' 8 | /$$ /$$ /$$ /$$ /$$$$$$$$ /$$ /$$ 9 | | $$$ | $$|__/ | $$ | $$_____/|__/ | $$ 10 | | $$$$| $$ /$$ /$$$$$$$| $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$/$$$$ /$$$$$$ | $$ /$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ 11 | | $$ $$ $$| $$ /$$_____/| $$ /$$/| $$__ $$ |____ $$| $$_ $$_ $$ /$$__ $$| $$$$$ | $$| $$__ $$ /$$__ $$ /$$__ $$ /$$__ $$ 12 | | $$ $$$$| $$| $$ | $$$$$$/ | $$ \ $$ /$$$$$$$| $$ \ $$ \ $$| $$$$$$$$| $$__/ | $$| $$ \ $$| $$ | $$| $$$$$$$$| $$ \__/ 13 | | $$\ $$$| $$| $$ | $$_ $$ | $$ | $$ /$$__ $$| $$ | $$ | $$| $$_____/| $$ | $$| $$ | $$| $$ | $$| $$_____/| $$ 14 | | $$ \ $$| $$| $$$$$$$| $$ \ $$| $$ | $$| $$$$$$$| $$ | $$ | $$| $$$$$$$| $$ | $$| $$ | $$| $$$$$$$| $$$$$$$| $$ 15 | |__/ \__/|__/ \_______/|__/ \__/|__/ |__/ \_______/|__/ |__/ |__/ \_______/|__/ |__/|__/ |__/ \_______/ \_______/|__/ 16 | 17 | ''') 18 | print('''..........................................................................................coded by https://github.com/restanse 19 | 20 | ''') 21 | 22 | nick = input("enter nickname: ") 23 | 24 | 25 | 26 | 27 | 28 | 29 | def osint(list): 30 | file = open(list) 31 | 32 | 33 | for line in file: 34 | name = line.split(' ')[0] 35 | site = line.split(' ')[1] 36 | 37 | 38 | 39 | site = site.rstrip("\n") 40 | url = site + nick 41 | 42 | 43 | 44 | try: 45 | r = requests.get(url) 46 | 47 | if r.status_code == 200: 48 | 49 | print(Fore.GREEN + "found " + name + ": " + url) 50 | else: 51 | print(Fore.RED + name + " not found") 52 | except: 53 | print(Fore.YELLOW + "request error for " + name) 54 | 55 | file.close() 56 | 57 | print(Fore.WHITE + "social networks and messangers:") 58 | osint("snm.txt") 59 | 60 | print(Fore.WHITE + "videohostings:") 61 | osint("vh.txt") 62 | 63 | print(Fore.WHITE + "games:") 64 | osint("games.txt") 65 | 66 | 67 | print(Fore.WHITE + "forums: ") 68 | osint("forums.txt") 69 | 70 | print(Fore.WHITE + "money: ") 71 | osint("money.txt") 72 | 73 | print(Fore.WHITE + "other sites: ") 74 | osint("other.txt") -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NicknameFinder 2 | OSINT tool for search by nickname 3 | 4 | Currently looking at 45 sites 5 | 6 | 7 | 8 | How to use: 9 | 10 | 11 | 12 | 13 | git clone https://github.com/restanse/NicknameFinder.git 14 | 15 | 16 | cd NicknameFinder 17 | 18 | pip install -r requriments.txt 19 | 20 | 21 | 22 | 23 | python NicknameFinder.py 24 | 25 | enter your nickname 26 | -------------------------------------------------------------------------------- /forums.txt: -------------------------------------------------------------------------------- 1 | Anime-planet https://anime-planet.com/users/ 2 | Linux https://www.linux.org/members/ 3 | Bitcoinforum https://bitcoinforum.com/profile/ 4 | Scala-Lang https://users.scala-lang.org/u/ 5 | Pikabu https://pikabu.ru/@ 6 | Signalusers https://community.signalusers.org/u/ 7 | Reddit https://www.reddit.com/user/ 8 | -------------------------------------------------------------------------------- /games.txt: -------------------------------------------------------------------------------- 1 | Steam https://steamcommunity.com/id/ 2 | Ubisoft https://club.ubisoft.com/profile/ 3 | Chess https://www.chess.com/member/ 4 | Xbox https://account.xbox.com/profile?gamertag= 5 | Warface https://wfts.su/profile/ -------------------------------------------------------------------------------- /money.txt: -------------------------------------------------------------------------------- 1 | DonationAlerts https://www.donationalerts.com/r/ 2 | Qiwi https://qiwi.me/ 3 | PayPal https://paypal.me/ 4 | -------------------------------------------------------------------------------- /other.txt: -------------------------------------------------------------------------------- 1 | Github https://github.com/ 2 | Ebay https://www.ebay.com/usr/ 3 | Gitlab https://gitlab.com/ 4 | AskFM https://ask.fm/ 5 | PyPi https://pypi.org/user/ 6 | Wikipedia https://wikipedia.org/wiki/user: 7 | Pastebin https://pastebin.com/u/ 8 | Metacritic https://metacritic.com/user/ 9 | OpenStreetMap https://www.openstreetmap.org/user/ 10 | Pinboard https://pinboard.in/u: 11 | Pinkbike https://pinkbike.com/u/ 12 | Seoclerks https://www.seoclerks.com/user/ 13 | SoundCloud https://soundcloud.com/ 14 | KickStarter https://www.kickstarter.com/profile/ 15 | -------------------------------------------------------------------------------- /requriments.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | requests -------------------------------------------------------------------------------- /snm.txt: -------------------------------------------------------------------------------- 1 | Instagram https://instagram.com/ 2 | VK https://vk.com/ 3 | Twitter https://twitter.com/ 4 | OK https://ok.ru/ 5 | Facebook https://www.facebook.com/ 6 | Telegram https://t.me/ 7 | TikTok https://www.tiktok.com/@ 8 | Mamba https://www.mamba.ru/ 9 | Badoo https://badoo.com/profile/ 10 | Patreon https://patreon.com/ 11 | TamTamChat https://tt.me/ 12 | Teletype https://teletype.in/@ -------------------------------------------------------------------------------- /vh.txt: -------------------------------------------------------------------------------- 1 | YouTube https://youtube.com/user/ 2 | Twitch https://twitch.tv/ 3 | Pornhub https://rt.pornhub.com/users/ 4 | RedTube https://redtube.com/users/ 5 | Xvideos https://www.xvideos.com/profiles/ 6 | --------------------------------------------------------------------------------