From 2c26ca3c4f6a5a889c51ae59a66ddf2c79ee2845 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Sat, 16 Jul 2022 16:18:25 -0400 Subject: [PATCH 001/104] delete unfinished script --- whatsmyname.py | 360 ------------------------------------------------- 1 file changed, 360 deletions(-) delete mode 100644 whatsmyname.py diff --git a/whatsmyname.py b/whatsmyname.py deleted file mode 100644 index 48a5e5d..0000000 --- a/whatsmyname.py +++ /dev/null @@ -1,360 +0,0 @@ -#!/usr/bin/python - -''' - -This script does several things: -1. It checks all the detection strings to ensure they are accurate -2. It can be used to check for a username across 1 or more sites - -''' - -# Todo: -# 1. CSV output -# 2. threading - https://python.tutorialink.com/selenium-threads-how-to-run-multi-threaded-browser-with-proxy-python/ -# 7. Detect if username has non-url-friendly characters and would be used as subdomain - # and not run tests on sites that don't make sense -# 8. Ctrl-C chould generate output of already-checked sites both to file and to screen -# 9. Switch to Chromedriver - #- ask ff or chromedriver - #- ask for path to file -# 10. Since we are using a real browser, remove the useragent option - - -# -# Import Libraries -# - -import argparse -#import codecs -import collections -from datetime import datetime -import json -import os -import random -import signal -import string -import sys -import threading -import time - -from selenium import webdriver as wd -from seleniumwire import webdriver as wdwire - -# -# Variables and Setup -# - -COUNTER = collections.Counter() - -debug_mode = False -running_positives = [] -#user_agent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36' - -# Set HTTP Header information -HEADERS = {'Accept' : 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', - 'Accept-Language' : 'en-US,en;q=0.5', - 'Accept-Encoding' : 'gzip, deflate' - } - -# Command line input -parser = argparse.ArgumentParser(description='This standalone script will look up a single username using the JSON file' - ' and output a text file with positive results. or, if no usernames are passed to it,' - ' will run a check of the JSON file for bad detection strings.') -parser.add_argument('-a', '--useragent', help='Toggle using a custom UserAgent for web calls [Default = off]', action='store_true', - default=False) -parser.add_argument('-d', '--debug', help='Enable debug output [Default = off]', action='store_true', default=False) -parser.add_argument('-f', '--firefoxdriver', help='Use the Firefox web driver instead of the Chrome one. Omit this and Chrome is used.', - action='store_true', default=False) -parser.add_argument('-i', '--inputfile', nargs='?', help='[OPTIONAL] If you want to use a JSON file other than the main one,' - ' pass the file name here.') -parser.add_argument('-l', '--driverlocation', nargs='?', help='Specify the path to the Firefox or Chrome web driver binary.') -parser.add_argument('-s', '--site', nargs='*', help='If this parameter is passed the script will check only the named site' - ' or list of sites.') -parser.add_argument('-u', '--username', help='If this param is passed then this script will perform the ' - 'lookups against the given user name instead of running checks against the JSON file.') - -if os.name == 'posix': - class Colors: - RED = "\033[91m" - GREEN = "\033[92m" - YELLOW = "\033[93m" - MAGENTA = "\033[95m" - CYAN = "\033[96m" - ENDC = "\033[0m" -else: - class Colors: - RED = '' - GREEN = '' - YELLOW = '' - MAGENTA = '' - CYAN = '' - ENDC = '' - - -# -# Functions -# - -# Colorization -def error(msg): - print(Colors.RED + '[!] ERROR! ' + msg + Colors.ENDC) - -def positive(msg): - print(Colors.GREEN + '[+] ' +msg + Colors.ENDC) - -def warn(msg): - print(Colors.YELLOW + '[*] WARNING. ' + msg + Colors.ENDC) - -def startstop(msg): - print(Colors.CYAN + msg + Colors.ENDC) - -def debug(msg): - print(Colors.MAGENTA + '[>] ' + msg + Colors.ENDC) - -def negative(msg): - print('[-] ' + msg) - -def neutral(msg): - print('[ ] ' + msg) - -def signal_handler(*_): - error('You pressed Ctrl+C. Exiting script.') - sys.exit(130) - -def web_call_response_code(location): - # Get HTTP Response Code using Selenium-wire - if firefox_driver: - driver_wire = wdwire.Firefox(driver_loc, options=driver_options) - else: - driver_wire = wdwire.Chrome(driver_loc, options=driver_options) - driver_wire.set_page_load_timeout(30) - driver_wire.get(location) - for request in driver_wire.requests: - if location in request.url: - if request.response: - if debug_mode: - debug(f'URL: {request.url}, HTTP Response Code: {request.response.status_code}') - code = request.response.status_code - driver_wire.close() - return code - -def web_call_html_source(location): - # Get HTML source using Selenium for JS bypassing - if firefox_driver: - driver = wd.Firefox(driver_loc, options=driver_options) - else: - driver = wd.Chrome(driver_loc, options=driver_options) - driver.set_page_load_timeout(30) - driver.get(location) - source = driver.page_source - driver.close() - return source - -def find_sites_to_check(args, data): - if args.site: - # cut the list of sites down to only the requested one - args.site = [x.lower() for x in args.site] - sites_to_check = [x for x in data['sites'] if x['name'].lower() in args.site] - if sites_to_check == 0: - error('Sorry, none of the requested site or sites were found in the list') - sys.exit(1) - sites_not_found = len(args.site) - len(sites_to_check) - if sites_not_found: - warn(f'{sites_not_found} requested sites were not found in the list') - neutral('Checking %d site(s)' % len(sites_to_check)) - return sites_to_check - else: - startstop('') - neutral(f'{len(data["sites"])} sites found in file.') - return data['sites'] - -def check_site(site, username, if_found, if_not_found, if_neither): - url = site['check_uri'].replace("{account}", username) - try: - resp_code = web_call_response_code(url) - code_match = resp_code == int(site['account_existence_code']) - - resp_html_source = web_call_html_source(url) - if site['account_existence_string']: - string_match = resp_html_source.find(site['account_existence_string']) > 0 - else: - string_match = 0 - - if debug_mode: - if code_match: - positive(f'HTTP status (match {code_match}): {resp_code}') - else: - negative(f'HTTP status (match {code_match}): {resp_code}') - if string_match: - positive(f'HTTP response (match: {string_match}). HTML source suppressed.') - else: - negative(f'HTTP response (match: {string_match}): {resp_html_source}') - - if code_match and string_match: - COUNTER['FOUND'] += 1 - return if_found(url) - - code_missing_match = resp_code == int(site['account_missing_code']) - string_missing_match = resp_html_source.find(site['account_missing_string']) > 0 - - if code_missing_match or string_missing_match: - COUNTER['NOT_FOUND'] += 1 - return if_not_found(url) - - COUNTER['ERROR'] += 1 - return if_neither(url) - - except Exception as caught: - COUNTER['ERROR'] += 1 - error(f'Error when looking up {url} ({str(caught)})') - -def positive_hit(url): - positive(f'User found at {url}') - running_positives.append(url) - -################### -# Main -################### - -def main(): - startstop('--------------------------------') - startstop('') - startstop('Starting the WhatsMyName Checking Script') - startstop('') - - args = parser.parse_args() - - if args.debug: - global debug_mode - debug_mode = True - neutral('Debug output enabled') - - if args.useragent: - HEADERS['User-Agent'] = user_agent - neutral(f'Custom UserAgent enabled. Using {user_agent}') - - global firefox_driver - global driver_options - if args.firefoxdriver: - firefox_driver = True - neutral('Using the Firefox web driver') - from selenium.webdriver.firefox.options import Options - driver_options = Options() - driver_options.headless = True - else: - firefox_driver = False - neutral('Using the Chrome web driver') - from selenium.webdriver.chrome.options import Options - driver_options = Options() - driver_options.add_argument("--disable-extensions") - driver_options.add_argument("--disable-gpu") - driver_options.add_argument("--headless") - driver_options.add_argument("--window-size=1920x1080") - driver_options.add_experimental_option('excludeSwitches', ['enable-logging']) - - global driver_loc - if args.driverlocation: - if os.path.exists(args.driverlocation): - neutral(f'Using the driver at {args.driverlocation}') - driver_loc = args.driverlocation - else: - error(f'There is no file at {args.driverlocation} or we do not have permission to read/execute it.') - error('This version of the checker script requires either the Firefox or Chrome driver.') - error('Please see the documentation at https://github.com/WebBreacher/WhatsMyName') - sys.exit(1) - else: - error('This version of the checker script requires either the Firefox or Chrome driver.') - error('Please see the documentation at https://github.com/WebBreacher/WhatsMyName') - sys.exit(1) - - # Add this in case user presses CTRL-C - signal.signal(signal.SIGINT, signal_handler) - - # Read in the JSON file - if (args.inputfile): - input_file = args.inputfile - else: - input_file = 'web_accounts_list.json' - - with open(input_file) as data_file: - data = json.load(data_file) - - sites_to_check = find_sites_to_check(args, data) - - try: - for site in sites_to_check: - if not site['valid']: - warn(f'Skipping {site["name"]} - Marked as not valid.') - continue - - # INSERT THREADING HERE? - ''' x = threading.Thread(target=check_site, args=(site_, args.username), daemon=True) - threads.append(x) - - for thread in threads: - thread.start() - - for thread in threads: - thread.join()''' - - if args.username: - check_site(site, args.username, - if_found = lambda url: positive_hit(url), - if_not_found = lambda url: negative( f'User not found at {url}'), - if_neither = lambda url: error(f'The check implementation is broken for {url}')) - else: - if args.debug: - debug(f'Checking {site["name"]}') - - # Run through known accounts from the JSON - for known_account in site['known_accounts']: - check_site(site, known_account, - if_found = lambda url: positive(f' As expected, profile found at {url}'), - if_not_found = lambda url: warn( f'Profile not found at {url}'), - if_neither = lambda url: error( f'Neither conditions matched for {url}')) - - # Create a random string to be used for the "nonexistent" user and see what the site does - non_existent = ''.join(random.choice(string.ascii_lowercase + string.ascii_uppercase + string.digits) for x in range(10)) - check_site(site, non_existent, - if_found = lambda url: warn( f'False positive for {url} from non-existent check'), - if_not_found = lambda url: positive(f' As expected, no user found at {url} from non-existent check'), - if_neither = lambda url: error( f'Neither conditions matched for {url} from non-existent check')) - - finally: - if COUNTER['FOUND'] and args.username: - startstop('') - startstop('Processing completed') - positive(f'{COUNTER["FOUND"]} sites found') - timestamp = time.strftime('%Y%m%d_%H%M%S', time.localtime()) - outputfile = f'{timestamp}_{args.username}.txt' - with open(outputfile, 'w') as f: - for positive_url in sorted(running_positives): - positive(f' {positive_url}') - f.write(f'{positive_url}\n') - positive(f' The URLs where the username was found were exported to file: {outputfile}') - - if COUNTER['ERROR']: - error(f'{COUNTER["ERROR"]} errors encountered') - startstop('') - startstop('Script completed') - startstop('') - startstop('--------------------------------') - startstop('') - sys.exit(2) - - startstop('') - if COUNTER['FOUND'] == 0: - warn('Script completed and no positive results were found.') - else: - startstop('Script completed') - - # Remove Gecko log - #if os.path.isfile('geckodriver.log'): - # os.remove('geckodriver.log') - - startstop('--------------------------------') - startstop('') - -if __name__ == "__main__": - # execute only if run as a script - main() \ No newline at end of file From f15506836319ead2d83d1d9e3a00be7a78854b31 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Sat, 16 Jul 2022 16:19:29 -0400 Subject: [PATCH 002/104] removing requirements for unfinished script --- requirements.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index ec9502e..345bc27 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,2 @@ requests -urllib3 -selenium -selenium-wire \ No newline at end of file +urllib3 \ No newline at end of file From eafb8eaf4fffcf0ce27843f7b7571cffc0493d45 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Sun, 17 Jul 2022 16:00:24 +0200 Subject: [PATCH 003/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index 9a62c81..867d747 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -4767,6 +4767,17 @@ "category" : "music", "valid" : true }, + { + "name" : "castingfr", + "check_uri" : "https://www.casting.fr/{account}", + "account_existence_code" : "200", + "account_existence_string" : ", artiste sur Casting.fr -", + "account_missing_string" : "Page introuvable", + "account_missing_code" : "404", + "known_accounts" : ["mamadou01", "serge"], + "category" : "misc", + "valid" : true + }, { "name" : "virustotal", "check_uri" : "https://www.virustotal.com/gui/user/{account}", From 0ef648898e49c676fddf56648e18bc94446c7a8d Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Sun, 17 Jul 2022 16:11:42 +0200 Subject: [PATCH 004/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index 867d747..0ea4d3a 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -4778,6 +4778,17 @@ "category" : "misc", "valid" : true }, + { + "name" : "vinted", + "check_uri" : "https://www.vinted.nl/member/general/search?search_text={account}" + "account_existence_code" : "200", + "account_existence_string" : "flag-box-flag-box-top", + "account_missing_string" : "geen resultaten", + "account_missing_code" : "200", + "known_accounts" : ["john", "jack"], + "category" : "business", + "valid" : true + }, { "name" : "virustotal", "check_uri" : "https://www.virustotal.com/gui/user/{account}", From a7aa1cb8dfab461c93e6a1ae677f6ab00b048a8d Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Mon, 18 Jul 2022 07:41:36 -0400 Subject: [PATCH 005/104] Adding comma --- web_accounts_list.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index 0ea4d3a..b11e916 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -4780,7 +4780,7 @@ }, { "name" : "vinted", - "check_uri" : "https://www.vinted.nl/member/general/search?search_text={account}" + "check_uri" : "https://www.vinted.nl/member/general/search?search_text={account}", "account_existence_code" : "200", "account_existence_string" : "flag-box-flag-box-top", "account_missing_string" : "geen resultaten", From b8d5375f6f548750019de53131413b4fc8603341 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Mon, 18 Jul 2022 15:23:39 +0200 Subject: [PATCH 006/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index b11e916..f05e6c3 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -4778,6 +4778,17 @@ "category" : "misc", "valid" : true }, + { + "name" : "pokemonvortex", + "check_uri" : "https://www.pokemon-vortex.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s Profile", + "account_missing_string" : "- Member List", + "account_missing_code" : "200", + "known_accounts" : ["mamadou2", "dog"], + "category" : "gaming", + "valid" : true + }, { "name" : "vinted", "check_uri" : "https://www.vinted.nl/member/general/search?search_text={account}", From 0ebcde0a0a9134c176f61ce6f7bd1c2a397fbf54 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Mon, 18 Jul 2022 18:09:02 +0200 Subject: [PATCH 007/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index f05e6c3..e7a83ef 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -4789,6 +4789,17 @@ "category" : "gaming", "valid" : true }, + { + "name" : "jecontacte", + "check_uri" : "https://www.jecontacte.com/profil/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Envoyer un message", + "account_missing_string" : "Votre Menu", + "account_missing_code" : "404", + "known_accounts" : ["moussa6", "Alya6788"], + "category" : "dating", + "valid" : true + }, { "name" : "vinted", "check_uri" : "https://www.vinted.nl/member/general/search?search_text={account}", From f961dd7fe4acf11f11b8312de73543371dcf3fc2 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Mon, 18 Jul 2022 21:24:43 +0200 Subject: [PATCH 008/104] Update web_accounts_list.json --- web_accounts_list.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index e7a83ef..76b0e16 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -4796,7 +4796,7 @@ "account_existence_string" : "Envoyer un message", "account_missing_string" : "Votre Menu", "account_missing_code" : "404", - "known_accounts" : ["moussa6", "Alya6788"], + "known_accounts" : ["moussa6", "cianashara"], "category" : "dating", "valid" : true }, From 8f5dc293c5d9c18fe8e7eccff63c06d973ab2da3 Mon Sep 17 00:00:00 2001 From: spotlightc <109301750+cami325@users.noreply.github.com> Date: Mon, 18 Jul 2022 15:42:46 -0400 Subject: [PATCH 009/104] Alphabetizing A-J JSON entries --- web_accounts_list.json | 3319 ++++++++++++++++++++-------------------- 1 file changed, 1633 insertions(+), 1686 deletions(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index 76b0e16..f41b567 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -23,16 +23,60 @@ "valid" : true }, { - "name" : "Artists & Clients", - "check_uri" : "https://artistsnclients.com/people/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Member Since", - "account_missing_code" : "404", - "account_missing_string" : "The page you requested wasn't there when we tried to get it for you. What a bother!", - "known_accounts" : ["luluc0", "MuraArts"], - "category" : "art", - "valid" : true + "name" : "about.me", + "check_uri" : "https://about.me/{account}", + "account_existence_code" : "200", + "account_existence_string" : " | about.me", + "account_missing_string" : "about.me", + "account_missing_code" : "404", + "known_accounts" : ["john", "jill"], + "category" : "social", + "valid" : true }, + { + "name" : "akniga", + "check_uri" : "https://akniga.org/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : " - Аудиокниги Клуб", + "account_missing_code" : "301", + "known_accounts" : ["terrypaulding", "monicashowalter"], + "category" : "political", + "valid" : true + }, { "name" : "Aminoapps", "check_uri" : "https://aminoapps.com/u/{account}", @@ -66,6 +121,29 @@ "category" : "social", "valid" : true }, + { + "name" : "aNobii", + "check_uri" : "https://api.anobii.com/users/eid/{account}", + "pretty_uri" : "https://www.anobii.com/{account}/profile/activity", + "account_existence_code" : "200", + "account_existence_string" : "Anobian since", + "account_missing_string" : "A user matching the specified criteria could not be found", + "account_missing_code" : "200", + "known_accounts" : ["albertoricci", "trynyty01"], + "category" : "hobby", + "valid" : false + }, + { + "name" : "anonup", + "check_uri" : "https://anonup.com/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "Following", + "account_missing_string" : "Page not found!", + "account_missing_code" : "302", + "known_accounts" : ["john", "peter"], + "category" : "social", + "valid" : true + }, { "name" : "Apex Legends", "check_uri" : "https://apex.tracker.gg/apex/profile/origin/{account}/overview", @@ -77,6 +155,61 @@ "category" : "gaming", "valid" : true }, + { + "name" : "Appian", + "check_uri" : "https://community.appian.com/members/{account}", + "account_existence_code" : "200", + "account_existence_string" : "User Profile", + "account_missing_string" : "Go back to our", + "account_missing_code" : "301", + "known_accounts" : ["mikec", "varunkumarb0001"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Arduino", + "check_uri" : "https://create.arduino.cc/projecthub/{account}", + "account_existence_code" : "200", + "account_existence_string" : "- Arduino Project Hub", + "account_missing_string" : "Arduino Project Hub", + "account_missing_code" : "404", + "known_accounts" : ["peter", "john"], + "category" : "tech", + "valid" : true + }, + { + "name" : "ArmorGames", + "check_uri" : "https://armorgames.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "about", + "account_missing_string" : "404: Oh Noes!", + "account_missing_code" : "302", + "known_accounts" : ["john", "sammy"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "ArtBreeder", + "check_uri" : "https://www.artbreeder.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "", + "account_missing_string" : "Not found:", + "account_missing_code" : "404", + "known_accounts" : ["dolores", "cyborghyena"], + "category" : "art", + "valid" : true + }, + { + "name" : "Artists & Clients", + "check_uri" : "https://artistsnclients.com/people/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Member Since", + "account_missing_code" : "404", + "account_missing_string" : "The page you requested wasn't there when we tried to get it for you. What a bother!", + "known_accounts" : ["luluc0", "MuraArts"], + "category" : "art", + "valid" : true + }, { "name" : "asciinema", "check_uri" : "https://asciinema.org/~{account}", @@ -88,6 +221,17 @@ "category" : "coding", "valid" : true }, + { + "name" : "ask.fm", + "check_uri" : "https://ask.fm/{account}", + "account_existence_code" : "200", + "account_existence_string" : "answers,", + "account_missing_string" : "Well, apparently not anymore.", + "account_missing_code" : "200", + "known_accounts" : ["test", "bob"], + "category" : "social", + "valid" : true + }, { "name" : "Audiojungle", "check_uri" : "https://audiojungle.net/user/{account}", @@ -99,6 +243,17 @@ "category" : "music", "valid" : true }, + { + "name" : "authorSTREAM", + "check_uri" : "http://www.authorstream.com/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Presentations on authorSTREAM", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["test", "john"], + "category" : "social", + "valid" : true + }, { "name" : "Avid Community", "check_uri" : "https://community.avid.com/members/{account}/default.aspx", @@ -111,15 +266,160 @@ "valid" : true }, { - "name" : "BiggerPockets", - "check_uri" : "https://www.biggerpockets.com/users/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| BiggerPockets", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["john", "bob"], - "category" : "finance", - "valid" : false + "name" : "Bandcamp", + "check_uri" : "https://bandcamp.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : " collection | Bandcamp", + "account_missing_string" : "

Sorry, that something isn’t here.

", + "account_missing_code" : "404", + "known_accounts" : ["alice", "bob"], + "category" : "music", + "valid" : true + }, + { + "name" : "Bandlab", + "check_uri" : "https://www.bandlab.com/api/v1.3/users/{account}", + "pretty_uri" : "https://www.bandlab.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "about", + "account_missing_code" : "404", + "account_missing_string" : "Couldn't find any matching element, it might be deleted", + "known_accounts" : ["rave_flawless", "delutaya"], + "category" : "music", + "valid" : true + }, + { + "name" : "BDSMLR", + "check_uri" : "https://{account}.bdsmlr.com", + "account_existence_code" : "200", + "account_existence_string" : "login", + "account_missing_string" : "This blog doesn't exist.", + "account_missing_code" : "200", + "known_accounts" : ["themunch", "shibari4all"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "Behance", + "check_uri" : "https://www.behance.net/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Behance", + "account_missing_string" : "Behance :: Oops! We can’t find that page.", + "account_missing_code" : "404", + "known_accounts" : ["alice", "john"], + "category" : "business", + "valid" : true + }, + { + "name" : "Bentbox", + "check_uri" : "https://bentbox.co/{account}", + "account_existence_code" : "200", + "account_existence_string" : "BentBox photos and videos", + "account_missing_string" : "This user page is currently not available.", + "account_missing_code" : "302", + "known_accounts" : ["brockdoom", "witchhouse", "hotoptics"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "BiggerPockets", + "check_uri" : "https://www.biggerpockets.com/users/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| BiggerPockets", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["john", "bob"], + "category" : "finance", + "valid" : false + }, + { + "name" : "Bitbucket", + "check_uri" : "https://bitbucket.org/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Repositories", + "account_missing_string" : "That link has no power here", + "account_missing_code" : "404", + "known_accounts" : ["test", "WebBreacher"], + "category" : "coding", + "valid" : true + }, + { + "name" : "Bitchute", + "check_uri" : "https://www.bitchute.com/channel/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "subscribers", + "account_missing_string" : "404 - Page not found", + "account_missing_code" : "404", + "known_accounts" : ["simon_parkes", "americafloats", "daindor"], + "category" : "political", + "valid" : true + }, + { + "name" : "bitcoin forum", + "check_uri" : "https://bitcoinforum.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Profile of", + "account_missing_string" : "An Error Has Occurred!", + "account_missing_code" : "200", + "known_accounts" : ["alex", "boss"], + "category" : "finance", + "valid" : true + }, + { + "name" : "BLIP.fm", + "check_uri" : "https://blip.fm/{account}", + "account_existence_code" : "200", + "account_existence_string" : "recommended", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["john", "walnuts"], + "category" : "music", + "valid" : true + }, + { + "name" : "Blogger", + "check_uri" : "https://www.blogger.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : ">On Blogger since", + "account_missing_string" : "Sorry, the blog you were looking for does not exist.", + "account_missing_code" : "404", + "known_accounts" : ["07333944864481878697", "05941544278367416980"], + "category" : "blog", + "valid" : true + }, + { + "name" : "Blogmarks", + "check_uri" : "http://blogmarks.net/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "class=\"mark\"", + "account_missing_string" : "", + "account_missing_code" : "200", + "known_accounts" : ["test", "mike"], + "category" : "misc", + "valid" : true + }, + { + "name" : "Blogspot", + "check_uri" : "http://{account}.blogspot.com", + "account_existence_code" : "200", + "account_existence_string" : "Blogger Template Style", + "account_missing_string" : "Blog not found", + "account_missing_code" : "404", + "known_accounts" : ["test"], + "category" : "blog", + "valid" : true + }, + { + "name" : "BodyBuilding.com", + "check_uri" : "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", + "pretty_uri" : "http://bodyspace.bodybuilding.com/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "username", + "account_missing_string" : "data\":\"\"", + "account_missing_code" : "200", + "known_accounts" : ["mike"], + "category" : "health", + "valid" : true }, { "name" : "Bookcrossing", @@ -132,6 +432,28 @@ "category" : "hobby", "valid" : true }, + { + "name" : "Booth", + "check_uri" : "https://{account}.booth.pm/", + "account_existence_code" : "200", + "account_existence_string" : "- BOOTH", + "account_missing_string" : "BOOTH - The International Indie Art Marketplace", + "account_missing_code" : "302", + "known_accounts" : ["monoliorder", "hasya"], + "category" : "shopping", + "valid" : true + }, + { + "name" : "Bugcrowd", + "check_uri" : "https://bugcrowd.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s researcher profile on Bugcrowd", + "account_missing_string" : ">Bugcrowd | Error", + "account_missing_code" : "404", + "known_accounts" : ["bitquark", "mert"], + "category" : "tech", + "valid" : true + }, { "name" : "buymeacoffee", "check_uri" : "https://www.buymeacoffee.com/{account}", @@ -143,6 +465,61 @@ "category" : "finance", "valid" : true }, + { + "name" : "BuzzFeed", + "check_uri" : "https://www.buzzfeed.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "memberSince", + "account_missing_string" : "We can't find the page you're looking for", + "account_missing_code" : "404", + "known_accounts" : ["janelytvynenko", "RobertK"], + "category" : "social", + "valid" : true + }, + { + "name" : "Buzznet", + "check_uri" : "https://www.buzznet.com/author/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Author:", + "account_missing_string" : "The page you are looking for can't be found.", + "account_missing_code" : "404", + "known_accounts" : ["carolinegawlik"], + "category" : "news", + "valid" : true + }, + { + "name" : "Carbonmade", + "check_uri" : "https://{account}.carbonmade.com/", + "account_existence_code" : "200", + "account_existence_string" : "s online portfolio", + "account_missing_string" : "site not found", + "account_missing_code" : "404", + "known_accounts" : ["jenny", "bob"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Career.habr", + "check_uri" : "https://career.habr.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "— Хабр Карьера", + "account_missing_string" : "Ошибка 404", + "account_missing_code" : "404", + "known_accounts" : ["alex", "bob"], + "category" : "business", + "valid" : true + }, + { + "name" : "CaringBridge", + "check_uri" : "https://www.caringbridge.org/visit/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| CaringBridge", + "account_missing_string" : "Sorry, we can’t find that site", + "account_missing_code" : "404", + "known_accounts" : ["robertherring"], + "category" : "health", + "valid" : true + }, { "name" : "carrd.co", "check_uri" : "https://{account}.carrd.co", @@ -154,6 +531,17 @@ "category" : "business", "valid" : true }, + { + "name" : "cash.app", + "check_uri" : "https://cash.app/${account}", + "account_existence_code" : "200", + "account_existence_string" : " on Cash App", + "account_missing_string" : "The page you are looking for can't be found", + "account_missing_code" : "404", + "known_accounts" : ["Jill", "john"], + "category" : "finance", + "valid" : true + }, { "name" : "CastingCallClub", "check_uri" : "https://www.castingcall.club/{account}", @@ -176,6 +564,50 @@ "category" : "news", "valid" : true }, + { + "name" : "Chaos", + "check_uri" : "https://chaos.social/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "- chaos.social", + "account_missing_string" : "The page you are looking for isn't here.", + "account_missing_code" : "404", + "known_accounts" : ["alice", "sam"], + "category" : "social", + "valid" : true + }, + { + "name" : "Chaos.social", + "check_uri" : "https://chaos.social/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "chaos.social", + "account_missing_string" : "The page you are looking for isn't here.", + "account_missing_code" : "404", + "known_accounts" : ["dictvm", "sml"], + "category" : "social", + "valid" : true + }, + { + "name" : "cHEEZburger", + "check_uri" : "https://profile.cheezburger.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "profile-header", + "account_missing_string" : "Home - ", + "account_missing_code" : "302", + "known_accounts" : ["john"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Chess.com", + "check_uri" : "https://www.chess.com/member/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Last Online", + "account_missing_string" : "<title>Missing Page?! - Chess.com", + "account_missing_code" : "404", + "known_accounts" : ["john", "peter", "josh"], + "category" : "gaming", + "valid" : true + }, { "name" : "Cloudflare", "check_uri" : "https://community.cloudflare.com/u/{account}", @@ -198,6 +630,72 @@ "category" : "news", "valid" : true }, + { + "name" : "Codecademy", + "check_uri" : "https://discuss.codecademy.com/u/{account}/summary", + "account_existence_code" : "200", + "account_existence_string" : " Profile - ", + "account_missing_string" : "Oops! That page doesn’t exist", + "account_missing_code" : "404", + "known_accounts" : ["doctypeme", "jon_morris"], + "category" : "coding", + "valid" : true + }, + { + "name" : "codementor", + "check_uri" : "https://www.codementor.io/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "ABOUT ME", + "account_missing_string" : "404/favicon.png", + "account_missing_code" : "404", + "known_accounts" : ["e4c5"], + "category" : "coding", + "valid" : true + }, + { + "name" : "Codewars", + "check_uri" : "https://www.codewars.com/users/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| Codewars", + "account_missing_string" : "Whoops! The page you were looking for doesn't seem to exist.", + "account_missing_code" : "404", + "known_accounts" : ["john", "reds"], + "category" : "coding", + "valid" : true + }, + { + "name" : "Coderwall", + "check_uri" : "https://coderwall.com/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "s profile |", + "account_missing_string" : "404! Our feels when that url is used", + "account_missing_code" : "404", + "known_accounts" : ["john", "test"], + "category" : "coding", + "valid" : true + }, + { + "name" : "COLOURlovers", + "check_uri" : "https://www.colourlovers.com/lover/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Color lovin' since", + "account_missing_string" : "Lover has gone missing", + "account_missing_code" : "410", + "known_accounts" : ["amorremanet", "bezzalopoly"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "contactos.sex", + "check_uri" : "https://www.contactossex.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Información Personal", + "account_missing_string" : "Desde 2001 conectando gente!", + "account_missing_code" : "302", + "known_accounts" : ["danijak", "darkfox"], + "category" : "XXXPORNXXX", + "valid" : true + }, { "name" : "coroflot", "check_uri" : "https://www.coroflot.com/{account}", @@ -210,26 +708,15 @@ "valid" : true }, { - "name" : "Codewars", - "check_uri" : "https://www.codewars.com/users/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| Codewars", - "account_missing_string" : "Whoops! The page you were looking for doesn't seem to exist.", - "account_missing_code" : "404", - "known_accounts" : ["john", "reds"], - "category" : "coding", - "valid" : true - }, - { - "name" : "Coderwall", - "check_uri" : "https://coderwall.com/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "s profile |", - "account_missing_string" : "404! Our feels when that url is used", - "account_missing_code" : "404", - "known_accounts" : ["john", "test"], - "category" : "coding", - "valid" : true + "name" : "Cracked", + "check_uri" : "https://www.cracked.com/members/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Member Since", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["mbattagl","Hatchback"], + "category" : "social", + "valid" : true }, { "name" : "crevado", @@ -242,6 +729,28 @@ "category" : "images", "valid" : true }, + { + "name" : "crowdin", + "check_uri" : "https://crowdin.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : ") – Crowdin", + "account_missing_string" : "Page Not Found - Crowdin", + "account_missing_code" : "404", + "known_accounts" : ["alex", "peter"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Cults3D", + "check_uri" : "https://cults3d.com/en/users/{account}/creations", + "account_existence_code" : "200", + "account_existence_string" : "All the 3D models of", + "account_missing_string" : "Oh dear, this page is not working!", + "account_missing_code" : "404", + "known_accounts" : ["Bstar3Dart", "john"], + "category" : "hobby", + "valid" : true + }, { "name" : "Cytoid", "check_uri" : "https://cytoid.io/profile/{account}", @@ -254,37 +763,215 @@ "valid" : true }, { - "name" : "Dating.ru", - "check_uri" : "https://dating.ru/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "| dating.ru", - "account_missing_string" : "Такой страницы не существует.", - "account_missing_code" : "404", - "known_accounts" : ["john", "blue"], - "category" : "dating", - "valid" : true + "name" : "Dailymotion", + "check_uri" : "https://www.dailymotion.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "og:url", + "account_missing_string" : "404 Page not found", + "account_missing_code" : "404", + "known_accounts" : ["WeHappyKids", "john"], + "category" : "video", + "valid" : true }, { - "name" : "Designspriation", - "check_uri" : "https://www.designspiration.com/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "has discovered on Designspiration", - "account_missing_string" : "Content Not Found", - "account_missing_code" : "404", - "known_accounts" : ["sam", "smith"], - "category" : "art", - "valid" : true + "name" : "datezone", + "check_uri" : "https://www.datezone.com/users/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Profile", + "account_missing_string" : "There is an error", + "account_missing_code" : "404", + "known_accounts" : ["xkarola","zorro3330"], + "category" : "XXXPORNXXX", + "valid" : true }, { - "name" : "dev.to", - "check_uri" : "https://dev.to/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- DEV", - "account_missing_string" : "This page does not exist", - "account_missing_code" : "301", - "known_accounts" : ["john", "bob"], - "category" : "coding", - "valid" : true + "name" : "Dating.ru", + "check_uri" : "https://dating.ru/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "| dating.ru", + "account_missing_string" : "Такой страницы не существует.", + "account_missing_code" : "404", + "known_accounts" : ["john", "blue"], + "category" : "dating", + "valid" : true + }, + { + "name" : "Designspriation", + "check_uri" : "https://www.designspiration.com/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "has discovered on Designspiration", + "account_missing_string" : "Content Not Found", + "account_missing_code" : "404", + "known_accounts" : ["sam", "smith"], + "category" : "art", + "valid" : true + }, + { + "name" : "Destructoid", + "check_uri" : "https://www.destructoid.com/?name={account}", + "account_existence_code" : "200", + "account_existence_string" : "Follow", + "account_missing_string" : "Error in query", + "account_missing_code" : "200", + "known_accounts" : ["john", "alice", "bob"], + "category" : "social", + "valid" : true + }, + { + "name" : "DeviantArt", + "check_uri" : "https://www.deviantart.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : " | DeviantArt", + "account_missing_string" : "DeviantArt: 404", + "account_missing_code" : "404", + "known_accounts" : ["test", "john"], + "category" : "images", + "valid" : true + }, + { + "name" : "dev.to", + "check_uri" : "https://dev.to/{account}", + "account_existence_code" : "200", + "account_existence_string" : "- DEV", + "account_missing_string" : "This page does not exist", + "account_missing_code" : "301", + "known_accounts" : ["john", "bob"], + "category" : "coding", + "valid" : true + }, + { + "name" : "devRant", + "check_uri" : "https://devrant.com/users/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Joined devRant on", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["dfox", "trogus"], + "category" : "coding", + "valid" : true + }, + { + "name" : "diigo", + "check_uri" : "https://www.diigo.com/interact_api/load_profile_info?name={account}", + "pretty_uri" : "https://www.diigo.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "regist_at", + "account_missing_string" : "{}", + "account_missing_code" : "200", + "known_accounts" : ["whoami", "johndoe"], + "category" : "images", + "valid" : true + }, + { + "name" : "Digitalspy", + "check_uri" : "https://forums.digitalspy.com/profile/discussions/{account}", + "account_existence_code" : "200", + "account_existence_string" : "About", + "account_missing_string" : "User not found", + "account_missing_code" : "404", + "known_accounts" : ["JeffG1", "Maxatoria"], + "category" : "social", + "valid" : true + }, + { + "name" : "Discogs", + "check_uri" : "https://www.discogs.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Joined on", + "account_missing_code" : "404", + "account_missing_string" : "We couldn't find that page.", + "known_accounts" : ["7jlong", "venetian-guy"], + "category" : "music", + "valid" : true + }, + { + "name" : "Discourse", + "check_uri" : "https://meta.discourse.org/u/{account}/summary.json", + "pretty_uri" : "https://meta.discourse.org/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "topics", + "account_missing_code" : "404", + "account_missing_string" : "The requested URL or resource could not be found.", + "known_accounts" : ["ndalliard", "gerhard"], + "category" : "misc", + "valid" : true + }, + { + "name" : "discuss.elastic.co", + "check_uri" : "https://discuss.elastic.co/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : " Profile", + "account_missing_string" : "Oops!", + "account_missing_code" : "404", + "known_accounts" : ["whoami", "johndoe"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Dissenter", + "check_uri" : "https://dissenter.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Dissenter | The Comment Section of the Internet", + "account_missing_string" : "That user is not registered here.", + "account_missing_code" : "404", + "known_accounts" : ["pryerlee", "archdukeofevil"], + "category" : "political", + "valid" : true + }, + { + "name" : "Disqus", + "check_uri" : "https://disqus.com/by/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "<title>Disqus Profile", + "account_missing_string" : "Page not found (404) - Disqus", + "account_missing_code" : "404", + "known_accounts" : ["Aristotelian1", "50calibercat"], + "category" : "social", + "valid" : true + }, + { + "name" : "DockerHub", + "check_uri" : "https://hub.docker.com/v2/users/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "username", + "account_missing_string" : "Not Found", + "account_missing_code" : "404", + "known_accounts" : ["soxoj", "torvalds"], + "category" : "coding", + "valid" : true + }, + { + "name" : "Dojoverse", + "check_uri" : "https://dojoverse.com/members/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Joined", + "account_missing_string" : "Looks like you got lost!.", + "account_missing_code" : "404", + "known_accounts" : ["eric", "danielrivera10927"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Dribbble", + "check_uri" : "https://dribbble.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : " | Dribbble", + "account_missing_string" : "(404)", + "account_missing_code" : "404", + "known_accounts" : ["UI8", "keeplegend"], + "category" : "art", + "valid" : true + }, + { + "name" : "Droners", + "check_uri" : "https://droners.io/accounts/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "- Professional Drone Pilot", + "account_missing_string" : "(404)", + "account_missing_code" : "302", + "known_accounts" : ["chriskahn", "swilken"], + "category" : "hobby", + "valid" : true }, { "name" : "Duolingo", @@ -299,26 +986,347 @@ "valid" : true }, { - "name" : "Ello.co", - "check_uri" : "https://ello.co/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| Ello", - "account_missing_string" : "We couldn't find the page you're looking for.", - "account_missing_code" : "301", - "known_accounts" : ["john", "bob"], - "category" : "art", - "valid" : true + "name" : "easyen", + "check_uri" : "https://easyen.ru/index/8-0-{account}", + "account_existence_code" : "200", + "account_existence_string" : "День рождения", + "account_missing_string" : "Пользователь не найден", + "account_missing_code" : "200", + "known_accounts" : ["wd"], + "category" : "social", + "valid" : true }, { - "name" : "Eyeem", - "check_uri" : "https://www.eyeem.com/u/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| EyeEm Photographer", - "account_missing_string" : "Not Found (404) | EyeEm", - "account_missing_code" : "301", - "known_accounts" : ["john", "bob"], - "category" : "art", - "valid" : true + "name" : "eBay", + "check_uri" : "https://www.ebay.com/usr/{account}", + "account_existence_code" : "200", + "account_existence_string" : "on eBay", + "account_missing_string" : "The User ID you entered was not found", + "account_missing_code" : "200", + "known_accounts" : ["the_gqs", "johnny"], + "category" : "shopping", + "valid" : true + }, + { + "name" : "Elftown", + "check_uri" : "http://elftown.com/{account}", + "account_existence_code" : "303", + "account_existence_string" : "", + "account_missing_string" : "is an unknown", + "account_missing_code" : "200", + "known_accounts" : ["marhiah", "adnama"], + "category" : "social", + "valid" : false + }, + { + "name" : "Ello.co", + "check_uri" : "https://ello.co/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| Ello", + "account_missing_string" : "We couldn't find the page you're looking for.", + "account_missing_code" : "301", + "known_accounts" : ["john", "bob"], + "category" : "art", + "valid" : true + }, + { + "name" : "Engadget", + "check_uri" : "https://www.engadget.com/about/editors/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "- Engadget", + "account_missing_string" : ", -", + "account_missing_code" : "404", + "known_accounts" : ["devindra-hardawar", "kris-holt"], + "category" : "tech", + "valid" : true + }, + { + "name" : "EPORNER", + "check_uri" : "https://www.eporner.com/profile/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Video/Pics views", + "account_missing_string" : "Profile not found", + "account_missing_code" : "404", + "known_accounts" : ["enron456", "Jomat999", "hicnobu"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "Etsy", + "check_uri" : "https://www.etsy.com/people/{account}", + "account_existence_code" : "200", + "account_existence_string" : " on Etsy", + "account_missing_string" : "Sorry, the member you are looking for does not exist", + "account_missing_code" : "404", + "known_accounts" : ["david", "happiness"], + "category" : "shopping", + "valid" : true + }, + { + "name" : "EU_Voice", + "check_uri" : "https://social.network.europa.eu/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "social.network.europa.eu", + "account_missing_string" : "The page you are looking for isn't here.", + "account_missing_code" : "404", + "known_accounts" : ["EC_DIGIT", "EUSPA"], + "category" : "social", + "valid" : true + }, + { + "name" : "Eyeem", + "check_uri" : "https://www.eyeem.com/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| EyeEm Photographer", + "account_missing_string" : "Not Found (404) | EyeEm", + "account_missing_code" : "301", + "known_accounts" : ["john", "bob"], + "category" : "art", + "valid" : true + }, + { + "name" : "F3", + "check_uri" : "https://f3.cool/{account}", + "account_existence_code" : "200", + "account_existence_string" : "@", + "account_missing_string" : "Page Not Found - F3", + "account_missing_code" : "404", + "known_accounts" : ["nick", "john"], + "category" : "social", + "valid" : true + }, + { + "name" : "Fabswingers", + "check_uri" : "https://www.fabswingers.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "View Profile", + "account_missing_string" : "The user you tried to view doesn't seem to be on the site any more", + "account_missing_code" : "200", + "known_accounts" : ["naughty_nymphomaniac", "hellfireclub", "fabswingers.com"], + "category" : "dating", + "valid" : true + }, + { + "name" : "Facenama", + "check_uri" : "https://facenama.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "شبکه اجتماعی فیس نما", + "account_missing_string" : "خطای 404", + "account_missing_code" : "302", + "known_accounts" : ["john", "blue"], + "category" : "social", + "valid" : false + }, + { + "name" : "FanCentro", + "check_uri" : "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", + "pretty_uri" : "https://fancentro.com/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "\"status\":true", + "account_missing_string" : "\"status\":false", + "account_missing_code" : "200", + "known_accounts" : ["medroxy","miaaamador"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "Fandom", + "check_uri" : "https://www.fandom.com/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| Profile | Fandom", + "account_missing_string" : "Not Found", + "account_missing_code" : "404", + "known_accounts" : ["EJacobs94", "Drew_Dietsch"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "fanpop", + "check_uri" : "https://www.fanpop.com/fans/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Fanpopping since", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["test", "johndoe"], + "category" : "social", + "valid" : true + }, + { + "name" : "Fark", + "check_uri" : "https://www.fark.com/users/{account}", + "account_existence_code" : "200", + "account_existence_string" : "bio", + "account_missing_string" : "Tastes like chicken.", + "account_missing_code" : "200", + "known_accounts" : ["bob", "bobby"], + "category" : "social", + "valid" : true + }, + { + "name" : "fansly", + "check_uri" : "https://apiv2.fansly.com/api/v1/account?usernames={account}", + "pretty_uri": "https://fansly.com/{account}/posts", + "account_existence_code" : "200", + "account_existence_string" : "username", + "account_missing_string" : "response: []", + "account_missing_code" : "200", + "known_accounts" : ["Mikomin","test"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "FatSecret", + "check_uri" : "https://www.fatsecret.com/member/{account}", + "account_existence_code" : "200", + "account_existence_string" : "- Member", + "account_missing_string" : "Your Key to Success", + "account_missing_code" : "302", + "known_accounts" : ["bob", "bobby"], + "category" : "health", + "valid" : true + }, + { + "name" : "Fiverr", + "check_uri" : "https://www.fiverr.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "member-since", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["yellowdd", "samanvay"], + "category" : "shopping", + "valid" : true + }, + { + "name" : "Flickr", + "check_uri" : "https://www.flickr.com/photos/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "| Flickr", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["glaciernps", "test"], + "category" : "images", + "valid" : true + }, + { + "name" : "Flipboard", + "check_uri" : "https://flipboard.com/@{account}", + "account_existence_code" : "200", + "account_existence_string" : ") on Flipboard", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["cosmopolitan", "Mashable"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Fodors Forum", + "check_uri" : "https://www.fodors.com/community/profile/{account}/forum-activity", + "account_existence_code" : "200", + "account_existence_string" : "Member since", + "account_missing_string" : "Plan Your Trip Online", + "account_missing_code" : "302", + "known_accounts" : ["mms", "gooster"], + "category" : "social", + "valid" : true + }, + { + "name" : "Fortnite Tracker", + "check_uri" : "https://fortnitetracker.com/profile/all/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s Fortnite Stats - Fortnite Tracker", + "account_missing_string" : "Fortnite Player Stats -", + "account_missing_code" : "404", + "known_accounts" : ["steph", "sam"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "Foursquare", + "check_uri" : "https://foursquare.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "on Foursquare", + "account_missing_string" : "Foursquare - Independent Location Data Platform", + "account_missing_code" : "302", + "known_accounts" : ["john", "ncyp23"], + "category" : "social", + "valid" : true + }, + { + "name" : "freelancer", + "check_uri" : "https://www.freelancer.com/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "qualifications", + "account_missing_string" : "Looks like the page you are looking for doesn't exist.", + "account_missing_code" : "404", + "known_accounts" : ["mikehurley"], + "category" : "business", + "valid" : true + }, + { + "name" : "freesound", + "check_uri" : "https://freesound.org/people/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "START of Content area", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["test", "JohnDoe"], + "category" : "music", + "valid" : true + }, + { + "name" : "FriendFinder", + "check_uri" : "https://friendfinder.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Last Visit:", + "account_missing_string" : "302 Found", + "account_missing_code" : "302", + "known_accounts" : ["alex56", "john"], + "category" : "dating", + "valid" : true + }, + { + "name" : "FriendFinder-X", + "check_uri" : "https://www.friendfinder-x.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "'s Dating Profile on FriendFinder-x", + "account_missing_string" : "The document has moved", + "account_missing_code" : "302", + "known_accounts" : ["john"], + "category" : "dating", + "valid" : true + }, + { + "name" : "Friendweb", + "check_uri" : "https://friendweb.nl/{account}", + "account_existence_code" : "200", + "account_existence_string" : "friendweb.nl", + "account_missing_string" : "Page Not Found", + "account_missing_code" : "404", + "known_accounts" : ["HoogtePiet", "JeePee"], + "category" : "social", + "valid" : true + }, + { + "name" : "FurAffinity", + "check_uri" : "https://www.furaffinity.net/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Userpage of", + "account_missing_string" : "user cannot be found", + "account_missing_code" : "200", + "known_accounts" : ["test"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "Furiffic", + "check_uri" : "https://www.furiffic.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Registered Since", + "account_missing_string" : "<title>Whoops · Furiffic", + "account_missing_code" : "404", + "known_accounts" : ["furiffic", "test", "admin"], + "category" : "XXXPORNXXX", + "valid" : true }, { "name" : "Gab", @@ -332,6 +1340,139 @@ "category" : "political", "valid" : true }, + { + "name" : "Gamespot", + "check_uri" : "https://www.gamespot.com/profile/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "'s Profile - GameSpot", + "account_missing_string" : "404: Not Found - GameSpot", + "account_missing_code" : "200", + "known_accounts" : ["alice", "bob"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "Garmin connect", + "check_uri" : "https://connect.garmin.com/modern/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "window.ERROR_VIEW = null", + "account_missing_string" : "resourceNotFoundRoute", + "account_missing_code" : "200", + "known_accounts" : ["danielebarison", "cderalow"], + "category" : "health", + "valid" : true + }, + { + "name" : "Geocaching", + "check_uri" : "https://www.geocaching.com/p/?u={account}", + "account_existence_code" : "200", + "account_existence_string" : "Groundspeak - User Profile", + "account_missing_string" : "Error 404: DNF", + "account_missing_code" : "404", + "known_accounts" : ["moun10bike", "niraD"], + "category" : "social", + "valid" : true + }, + { + "name" : "Gettr", + "check_uri" : "https://api.gettr.com/s/user/{account}/exist", + "account_existence_code" : "200", + "account_existence_string" : "success\":true", + "account_missing_string" : "success\":false", + "account_missing_code" : "200", + "known_accounts" : ["qellyanon", "djerod"], + "category" : "social", + "valid" : true + }, + { + "name" : "Giphy", + "check_uri" : "https://giphy.com/channel/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Share on GIPHY", + "account_missing_string" : "404 Not Found", + "account_missing_code" : "404", + "known_accounts" : ["buzz", "test"], + "category" : "social", + "valid" : true + }, + { + "name" : "Girlfriendsmeet", + "check_uri" : "http://www.girlfriendsmeet.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "online dating profile", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["john", "junech"], + "category" : "dating", + "valid" : true + }, + { + "name" : "GitHub", + "check_uri" : "https://github.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "p-nickname vcard-username d-block", + "account_missing_string" : "Page not found ", + "account_missing_code" : "404", + "known_accounts" : ["test", "WebBreacher"], + "category" : "coding", + "valid" : true + }, + { + "name" : "GitLab", + "check_uri" : "https://gitlab.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Member since", + "account_missing_string" : "GitLab.com offers free unlimited", + "account_missing_code" : "302", + "known_accounts" : ["skennedy", "KennBro", "alex", "bob"], + "category" : "coding", + "valid" : true + }, + { + "name" : "gitee", + "check_uri" : "https://gitee.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Commits, issues, and pull requests will appear", + "account_missing_string" : "Gitee is more than a development platform", + "account_missing_code" : "404", + "known_accounts" : ["maxim"], + "category" : "coding", + "valid" : true + }, + { + "name" : "gpodder.net", + "check_uri" : "https://gpodder.net/user/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "mdash; gpodder.net", + "account_missing_string" : "404 - Not found", + "account_missing_code" : "404", + "known_accounts" : ["blue", "red"], + "category" : "music", + "valid" : true + }, + { + "name" : "grandprof", + "check_uri" : "https://grandprof.org/communaute/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s Profile", + "account_missing_string" : "Mauvaise pioche", + "account_missing_code" : "404", + "known_accounts" : ["mohamed01", "amine"], + "category" : "misc", + "valid" : true + }, + { + "name" : "Gravatar", + "check_uri" : "http://en.gravatar.com/profiles/{account}.json", + "pretty_uri" : "http://en.gravatar.com/profiles/{account}", + "account_existence_code" : "200", + "account_existence_string" : "entry", + "account_missing_string" : "User not found", + "account_missing_code" : "404", + "known_accounts" : ["test"], + "category" : "images", + "valid" : true + }, { "name" : "gumroad", "check_uri" : "https://{account}.gumroad.com/", @@ -344,15 +1485,315 @@ "valid" : true }, { - "name" : "Hackernoon", - "check_uri" : "https://hackernoon.com/u/{account}", - "account_existence_code" : "200", - "account_existence_string" : "displayName", - "account_missing_string" : "Looks like we’re in the ether.", - "account_missing_code" : "200", - "known_accounts" : ["swedeyburr", "brbs"], - "category" : "tech", - "valid" : true + "name" : "Hackaday", + "check_uri" : "https://hackaday.io/{account}", + "account_existence_code" : "200", + "account_existence_string" : "'s Profile | Hackaday.io", + "account_missing_string" : "The requested URL was not found on this server. That’s all we know.", + "account_missing_code" : "404", + "known_accounts" : ["john", "adam"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Hacker News", + "check_uri" : "https://news.ycombinator.com/user?id={account}", + "account_existence_code" : "200", + "account_existence_string" : "created:", + "account_missing_string" : "No such user.", + "account_missing_code" : "200", + "known_accounts" : ["mubix", "egypt"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Hackernoon", + "check_uri" : "https://hackernoon.com/_next/data/foL6JC7ro2FEEMD-gMKgQ/u/{account}.json", + "pretty_uri" : "https://hackernoon.com/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "\"profile\"", + "account_missing_string" : "__N_REDIRECT", + "account_missing_code" : "200", + "known_accounts" : ["john", "alex"], + "category" : "tech", + "valid" : true + }, + { + "name" : "hackerearth", + "check_uri" : "https://www.hackerearth.com/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "| Developer Profile on HackerEarth", + "account_missing_string" : "404 | HackerEarth", + "account_missing_code" : "200", + "known_accounts" : ["peter", "liam"], + "category" : "coding", + "valid" : true + }, + { + "name" : "HackerOne", + "check_uri" : "https://hackerone.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "profile that highlights", + "account_missing_string" : "Page not found", + "account_missing_code" : "301", + "known_accounts" : ["yashrs", "ameerpornillos"], + "category" : "tech", + "valid" : true + }, + { + "name" : "hackster", + "check_uri" : "https://www.hackster.io/{account}", + "account_existence_code" : "200", + "account_existence_string" : "- Hackster.io", + "account_missing_string" : "Hackster.io - The community dedi", + "account_missing_code" : "404", + "known_accounts" : ["ian", "bob"], + "category" : "coding", + "valid" : true + }, + { + "name" : "Heylink", + "check_uri" : "https://heylink.me/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "HeyLink.me |", + "account_missing_string" : "We can't find the page that you're looking for :(", + "account_missing_code" : "404", + "known_accounts" : ["mohammed13", "johnny"], + "category" : "misc", + "valid" : true + }, + { + "name" : "Houzz", + "check_uri" : "https://www.houzz.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Followers", + "account_missing_string" : "Page Not Found", + "account_missing_code" : "404", + "known_accounts" : ["liam", "alex"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "HubPages", + "check_uri" : "https://hubpages.com/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "name\">Followers", + "account_missing_string" : "Sorry, that user does not exist", + "account_missing_code" : "404", + "known_accounts" : ["greeneyes1607", "lmmartin"], + "category" : "blog", + "valid" : true + }, + { + "name" : "Hubski", + "check_uri" : "https://hubski.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "'s profile", + "account_missing_string" : "No such user.", + "account_missing_code" : "200", + "known_accounts" : ["kleinbl00", "peter"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Hubski", + "check_uri" : "https://hubski.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "'s profile", + "account_missing_string" : "No such user.", + "account_missing_code" : "200", + "known_accounts" : ["john", "blue"], + "category" : "social", + "valid" : true + }, + { + "name" : "Iconfinder", + "check_uri" : "https://www.iconfinder.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "iconsets", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["roundicons", "iconfinder"], + "category" : "images", + "valid" : true + }, + { + "name" : "icq-chat", + "check_uri" : "https://icq.icqchat.co/members/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "ICQ chat", + "account_missing_string" : "Oops! We ran into some problems", + "account_missing_code" : "404", + "known_accounts" : ["brookenora.54", "bigdaddy.77"], + "category" : "social", + "valid" : true + }, + { + "name" : "IFTTT", + "check_uri" : "https://ifttt.com/p/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Joined", + "account_missing_string" : "The requested page or file does not exist", + "account_missing_code" : "404", + "known_accounts" : ["nr9992", "sss90"], + "category" : "misc", + "valid" : true + }, + { + "name" : "igromania", + "check_uri" : "http://forum.igromania.ru/member.php?username={account}", + "account_existence_code" : "200", + "account_existence_string" : "Форум Игромании - Просмотр профиля:", + "account_missing_string" : "Пользователь не зарегистрирован и не имеет профиля для просмотра.", + "account_missing_code" : "200", + "known_accounts" : ["bob", "blue"], + "category" : "social", + "valid" : true + }, + { + "name" : "ilovegrowingmarijuana", + "check_uri" : "https://support.ilovegrowingmarijuana.com/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "<title> Profile - ", + "account_missing_string" : "Oops! That page doesn’t exist or is private", + "account_missing_code" : "404", + "known_accounts" : ["ILGM.Stacy", "Mosaicmind9x"], + "category" : "social", + "valid" : true + }, + { + "name" : "imagefap", + "check_uri" : "https://www.imagefap.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s Profile", + "account_missing_string" : "Invalid uid", + "account_missing_code" : "200", + "known_accounts" : ["lover03", "SecretSide15"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "ImageShack", + "check_uri" : "https://imageshack.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s Images", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["test"], + "category" : "images", + "valid" : true + }, + { + "name" : "iMGSRC.RU", + "check_uri" : "https://imgsrc.ru/main/user.php?lang=ru&user={account}", + "account_existence_code" : "200", + "account_existence_string" : "Присоединился", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["natalisn","andydiamond","natalyck"], + "category" : "images", + "valid" : true + }, + { + "name" : "imgur", + "check_uri" : "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", + "pretty_uri" : "https://imgur.com/user/{account}/about", + "account_existence_code" : "200", + "account_existence_string" : "created_at", + "account_missing_string" : "unable to find account", + "account_missing_code" : "404", + "known_accounts" : ["OliverClothesoff70", "DadOnTheInternet"], + "category" : "images", + "valid" : true + }, + { + "name" : "Independent academia", + "check_uri" : "https://independent.academia.edu/{account}", + "account_existence_code" : "200", + "account_existence_string" : "- Academia.edu", + "account_missing_string" : "Academia.edu", + "account_missing_code" : "404", + "known_accounts" : ["peter", "LiamM"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "InkBunny", + "check_uri" : "https://inkbunny.net/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Profile | Inkbunny, the Furry Art Community", + "account_missing_string" : "Members | Inkbunny, the Furry Art Community", + "account_missing_code" : "302", + "known_accounts" : ["AdminBunny", "test"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "InsaneJournal", + "check_uri" : "https://{account}.insanejournal.com/profile", + "account_existence_code" : "200", + "account_existence_string" : "User:", + "account_missing_string" : "The requested URL /profile was not found on this server", + "account_missing_code" : "200", + "known_accounts" : ["test", "pint-sized", "acroamatica"], + "category" : "social", + "valid" : true + }, + { + "name" : "Instagram", + "pretty_uri" : "https://instagram.com/{account}", + "check_uri" : "https://www.picuki.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Instagram profile with posts and stories", + "account_missing_string" : "Nothing found!", + "account_missing_code" : "404", + "known_accounts" : ["katyperry", "kirbstr"], + "category" : "social", + "valid" : true + }, + { + "name" : "instructables", + "check_uri" : "https://www.instructables.com/member/{account}/", + "account_existence_code" : "200", + "account_existence_string" : ">Joined", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["davidandora", "test"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Internet Archive Account", + "check_uri" : "https://archive.org/details/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "User Account", + "account_missing_string" : "<title>cannot find account", + "account_missing_code" : "200", + "known_accounts" : ["webbreacher", "jason_scott"], + "category" : "misc", + "valid" : true + }, + { + "name" : "Internet Archive User Search", + "check_uri" : "https://archive.org/search.php?query={account}", + "account_existence_code" : "200", + "account_existence_string" : "<!--/.item-ia-->", + "account_missing_string" : "", + "account_missing_code" : "200", + "known_accounts" : ["test", "mubix"], + "category" : "misc", + "valid" : true + }, + { + "name" : "interpals", + "check_uri" : "https://www.interpals.net/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Looking for", + "account_missing_string" : "User not found", + "account_missing_code" : "200", + "known_accounts" : ["test"], + "category" : "dating", + "valid" : true }, { "name" : "issuu", @@ -365,6 +1806,17 @@ "category" : "shopping", "valid" : true }, + { + "name" : "Jeuxvideo", + "check_uri" : "https://www.jeuxvideo.com/profil/{account}?mode=infos", + "account_existence_code" : "200", + "account_existence_string" : "- jeuxvideo.com", + "account_missing_string" : "rence des gamers", + "account_missing_code" : "404", + "known_accounts" : ["jane", "alex"], + "category" : "gaming", + "valid" : true + }, { "name" : "JSFiddle", "check_uri" : "https://jsfiddle.net/user/{account}/", @@ -376,6 +1828,39 @@ "category" : "coding", "valid" : true }, + { + "name" : "Justforfans", + "check_uri" : "https://justfor.fans/{account}", + "account_existence_code" : "200", + "account_existence_string" : " @ JustFor.Fans", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["devinfrancoxxx", "RileyChaux"], + "category" : "XXXPORNXXX", + "valid" : true + }, + { + "name" : "kaggle", + "check_uri" : "https://www.kaggle.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| Kaggle", + "account_missing_string" : "Kaggle: Your Home for Data Science", + "account_missing_code" : "404", + "known_accounts" : ["babyoda", "residentmario"], + "category" : "coding", + "valid" : true + }, + { + "name" : "Keybase", + "check_uri" : "https://keybase.io/{account}", + "account_existence_code" : "200", + "account_existence_string" : "username", + "account_missing_string" : "sorry, not found", + "account_missing_code" : "404", + "known_accounts" : ["test", "mubix"], + "category" : "social", + "valid" : true + }, { "name" : "Kickstarter", "check_uri" : "https://www.kickstarter.com/profile/{account}", @@ -388,15 +1873,37 @@ "valid" : true }, { - "name" : "Ko-Fi", - "check_uri" : "https://ko-fi.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "> Buy a Coffee for", - "account_missing_string" : "Object moved to", - "account_missing_code" : "302", - "known_accounts" : ["frank", "marcmakescomics"], - "category" : "social", - "valid" : true + "name" : "kik", + "check_uri" : "https://ws2.kik.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "firstName", + "account_missing_string" : "The page you requested was not found", + "account_missing_code" : "200", + "known_accounts" : ["adam", "smith", "jones"], + "category" : "social", + "valid" : true + }, + { + "name" : "Ko-Fi", + "check_uri" : "https://ko-fi.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "> Buy a Coffee for", + "account_missing_string" : "Object moved to", + "account_missing_code" : "302", + "known_accounts" : ["frank", "marcmakescomics"], + "category" : "social", + "valid" : true + }, + { + "name" : "Kongregate", + "check_uri" : "https://www.kongregate.com/accounts/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Member Since", + "account_missing_string" : "Sorry, no account with that name was found", + "account_missing_code" : "404", + "known_accounts" : ["test"], + "category" : "gaming", + "valid" : true }, { "name" : "Linktree", @@ -493,7 +2000,7 @@ "account_existence_string" : "profile_user_image", "account_missing_string" : "The page you are looking for cannot be found.", "account_missing_code" : "404", - "known_accounts" : ["txmustang302","RealWillJohnson"], + "known_accounts" : ["txmustang302"], "category" : "social", "valid" : true }, @@ -506,7 +2013,7 @@ "account_missing_code" : "404", "known_accounts" : ["john", "bob"], "category" : "tech", - "valid" : false + "valid" : true }, { "name" : "Poll Everywhere", @@ -708,705 +2215,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "about.me", - "check_uri" : "https://about.me/{account}", - "account_existence_code" : "200", - "account_existence_string" : " | about.me", - "account_missing_string" : "<title>about.me", - "account_missing_code" : "404", - "known_accounts" : ["john", "jill"], - "category" : "social", - "valid" : true - }, - { - "name" : "aNobii", - "check_uri" : "https://api.anobii.com/users/eid/{account}", - "pretty_uri" : "https://www.anobii.com/{account}/profile/activity", - "account_existence_code" : "200", - "account_existence_string" : "Anobian since", - "account_missing_string" : "A user matching the specified criteria could not be found", - "account_missing_code" : "200", - "known_accounts" : ["albertoricci", "trynyty01"], - "category" : "hobby", - "valid" : false - }, - { - "name" : "ask.fm", - "check_uri" : "https://ask.fm/{account}", - "account_existence_code" : "200", - "account_existence_string" : "answers,", - "account_missing_string" : "Well, apparently not anymore.", - "account_missing_code" : "200", - "known_accounts" : ["test", "bob"], - "category" : "social", - "valid" : true - }, - { - "name" : "authorSTREAM", - "check_uri" : "http://www.authorstream.com/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Presentations on authorSTREAM", - "account_missing_string" : "", - "account_missing_code" : "404", - "known_accounts" : ["test", "john"], - "category" : "social", - "valid" : true - }, - { - "name" : "Bandcamp", - "check_uri" : "https://bandcamp.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : " collection | Bandcamp", - "account_missing_string" : "

Sorry, that something isn’t here.

", - "account_missing_code" : "404", - "known_accounts" : ["alice", "bob"], - "category" : "music", - "valid" : true - }, - { - "name" : "Bandlab", - "check_uri" : "https://www.bandlab.com/api/v1.3/users/{account}", - "pretty_uri" : "https://www.bandlab.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "about", - "account_missing_code" : "404", - "account_missing_string" : "Couldn't find any matching element, it might be deleted", - "known_accounts" : ["rave_flawless", "delutaya"], - "category" : "music", - "valid" : true - }, - { - "name" : "Behance", - "check_uri" : "https://www.behance.net/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Behance", - "account_missing_string" : "Behance :: Oops! We can’t find that page.", - "account_missing_code" : "404", - "known_accounts" : ["alice", "john"], - "category" : "business", - "valid" : true - }, - { - "name" : "Bitbucket", - "check_uri" : "https://bitbucket.org/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Repositories", - "account_missing_string" : "That link has no power here", - "account_missing_code" : "404", - "known_accounts" : ["test", "WebBreacher"], - "category" : "coding", - "valid" : true - }, - { - "name" : "BLIP.fm", - "check_uri" : "https://blip.fm/{account}", - "account_existence_code" : "200", - "account_existence_string" : "recommended", - "account_missing_string" : "", - "account_missing_code" : "404", - "known_accounts" : ["john", "walnuts"], - "category" : "music", - "valid" : true - }, - { - "name" : "Blogmarks", - "check_uri" : "http://blogmarks.net/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "class=\"mark\"", - "account_missing_string" : "", - "account_missing_code" : "200", - "known_accounts" : ["test", "mike"], - "category" : "misc", - "valid" : true - }, - { - "name" : "Blogspot", - "check_uri" : "http://{account}.blogspot.com", - "account_existence_code" : "200", - "account_existence_string" : "Blogger Template Style", - "account_missing_string" : "Blog not found", - "account_missing_code" : "404", - "known_accounts" : ["test"], - "category" : "blog", - "valid" : true - }, - { - "name" : "BodyBuilding.com", - "check_uri" : "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", - "pretty_uri" : "http://bodyspace.bodybuilding.com/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "username", - "account_missing_string" : "data\":\"\"", - "account_missing_code" : "200", - "known_accounts" : ["mike"], - "category" : "health", - "valid" : true - }, - { - "name" : "Bugcrowd", - "check_uri" : "https://bugcrowd.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s researcher profile on Bugcrowd", - "account_missing_string" : ">Bugcrowd | Error", - "account_missing_code" : "404", - "known_accounts" : ["bitquark", "mert"], - "category" : "tech", - "valid" : true - }, - { - "name" : "BuzzFeed", - "check_uri" : "https://www.buzzfeed.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "memberSince", - "account_missing_string" : "We can't find the page you're looking for", - "account_missing_code" : "404", - "known_accounts" : ["janelytvynenko", "RobertK"], - "category" : "social", - "valid" : true - }, - { - "name" : "Buzznet", - "check_uri" : "https://www.buzznet.com/author/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Author:", - "account_missing_string" : "The page you are looking for can't be found.", - "account_missing_code" : "404", - "known_accounts" : ["carolinegawlik"], - "category" : "news", - "valid" : true - }, - { - "name" : "cash.app", - "check_uri" : "https://cash.app/${account}", - "account_existence_code" : "200", - "account_existence_string" : " on Cash App", - "account_missing_string" : "The page you are looking for can't be found", - "account_missing_code" : "404", - "known_accounts" : ["Jill", "john"], - "category" : "finance", - "valid" : true - }, - { - "name" : "cHEEZburger", - "check_uri" : "https://profile.cheezburger.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "profile-header", - "account_missing_string" : "Home - ", - "account_missing_code" : "302", - "known_accounts" : ["john"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Chess.com", - "check_uri" : "https://www.chess.com/member/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Last Online", - "account_missing_string" : "<title>Missing Page?! - Chess.com", - "account_missing_code" : "404", - "known_accounts" : ["john", "peter", "josh"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "Codecademy", - "check_uri" : "https://discuss.codecademy.com/u/{account}/summary", - "account_existence_code" : "200", - "account_existence_string" : " Profile - ", - "account_missing_string" : "Oops! That page doesn’t exist", - "account_missing_code" : "404", - "known_accounts" : ["doctypeme", "jon_morris"], - "category" : "coding", - "valid" : true - }, - { - "name" : "codementor", - "check_uri" : "https://www.codementor.io/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "ABOUT ME", - "account_missing_string" : "404/favicon.png", - "account_missing_code" : "404", - "known_accounts" : ["e4c5"], - "category" : "coding", - "valid" : true - }, - { - "name" : "COLOURlovers", - "check_uri" : "https://www.colourlovers.com/lover/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Color lovin' since", - "account_missing_string" : "Lover has gone missing", - "account_missing_code" : "410", - "known_accounts" : ["amorremanet", "bezzalopoly"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Dailymotion", - "check_uri" : "https://www.dailymotion.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "og:url", - "account_missing_string" : "404 Page not found", - "account_missing_code" : "404", - "known_accounts" : ["WeHappyKids", "john"], - "category" : "video", - "valid" : true - }, - { - "name" : "Destructoid", - "check_uri" : "https://www.destructoid.com/?name={account}", - "account_existence_code" : "200", - "account_existence_string" : "Follow", - "account_missing_string" : "Error in query", - "account_missing_code" : "200", - "known_accounts" : ["john", "alice", "bob"], - "category" : "social", - "valid" : true - }, - { - "name" : "DeviantArt", - "check_uri" : "https://www.deviantart.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : " | DeviantArt", - "account_missing_string" : "DeviantArt: 404", - "account_missing_code" : "404", - "known_accounts" : ["test", "john"], - "category" : "images", - "valid" : true - }, - { - "name" : "devRant", - "check_uri" : "https://devrant.com/users/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Joined devRant on", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["dfox", "trogus"], - "category" : "coding", - "valid" : true - }, - { - "name" : "diigo", - "check_uri" : "https://www.diigo.com/interact_api/load_profile_info?name={account}", - "pretty_uri" : "https://www.diigo.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "regist_at", - "account_missing_string" : "{}", - "account_missing_code" : "200", - "known_accounts" : ["whoami", "johndoe"], - "category" : "images", - "valid" : true - }, - { - "name" : "Discogs", - "check_uri" : "https://www.discogs.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Joined on", - "account_missing_code" : "404", - "account_missing_string" : "We couldn't find that page.", - "known_accounts" : ["7jlong", "venetian-guy"], - "category" : "music", - "valid" : true - }, - { - "name" : "Discourse", - "check_uri" : "https://meta.discourse.org/u/{account}/summary.json", - "pretty_uri" : "https://meta.discourse.org/u/{account}", - "account_existence_code" : "200", - "account_existence_string" : "topics", - "account_missing_code" : "404", - "account_missing_string" : "The requested URL or resource could not be found.", - "known_accounts" : ["ndalliard", "gerhard"], - "category" : "misc", - "valid" : true - }, - { - "name" : "discuss.elastic.co", - "check_uri" : "https://discuss.elastic.co/u/{account}", - "account_existence_code" : "200", - "account_existence_string" : " Profile", - "account_missing_string" : "Oops!", - "account_missing_code" : "404", - "known_accounts" : ["whoami", "johndoe"], - "category" : "tech", - "valid" : true - }, - { - "name" : "Disqus", - "check_uri" : "https://disqus.com/by/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "<title>Disqus Profile", - "account_missing_string" : "Page not found (404) - Disqus", - "account_missing_code" : "404", - "known_accounts" : ["Aristotelian1", "50calibercat"], - "category" : "social", - "valid" : true - }, - { - "name" : "DockerHub", - "check_uri" : "https://hub.docker.com/v2/users/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "username", - "account_missing_string" : "Not Found", - "account_missing_code" : "404", - "known_accounts" : ["soxoj", "torvalds"], - "category" : "coding", - "valid" : true - }, - { - "name" : "Dribbble", - "check_uri" : "https://dribbble.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : " | Dribbble", - "account_missing_string" : "(404)", - "account_missing_code" : "404", - "known_accounts" : ["UI8", "keeplegend"], - "category" : "art", - "valid" : true - }, - { - "name" : "Droners", - "check_uri" : "https://droners.io/accounts/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "- Professional Drone Pilot", - "account_missing_string" : "(404)", - "account_missing_code" : "302", - "known_accounts" : ["chriskahn", "swilken"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "easyen", - "check_uri" : "https://easyen.ru/index/8-0-{account}", - "account_existence_code" : "200", - "account_existence_string" : "День рождения", - "account_missing_string" : "Пользователь не найден", - "account_missing_code" : "200", - "known_accounts" : ["wd"], - "category" : "social", - "valid" : true - }, - { - "name" : "eBay", - "check_uri" : "https://www.ebay.com/usr/{account}", - "account_existence_code" : "200", - "account_existence_string" : "on eBay", - "account_missing_string" : "The User ID you entered was not found", - "account_missing_code" : "200", - "known_accounts" : ["the_gqs", "johnny"], - "category" : "shopping", - "valid" : true - }, - { - "name" : "Engadget", - "check_uri" : "https://www.engadget.com/about/editors/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "- Engadget", - "account_missing_string" : ", -", - "account_missing_code" : "404", - "known_accounts" : ["devindra-hardawar", "kris-holt"], - "category" : "tech", - "valid" : true - }, - { - "name" : "EPORNER", - "check_uri" : "https://www.eporner.com/profile/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Video/Pics views", - "account_missing_string" : "Profile not found", - "account_missing_code" : "404", - "known_accounts" : ["mrbreezy90", "JAVCollectionHD", "P2K2KK"], - "category" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Etsy", - "check_uri" : "https://www.etsy.com/people/{account}/favorite-items", - "account_existence_code" : "200", - "account_existence_string" : "'s favorite items - Etsy", - "account_missing_string" : "Sorry, the member you are looking for does not exist", - "account_missing_code" : "404", - "known_accounts" : ["bluefireinc", "jb8hyxtg"], - "category" : "shopping", - "valid" : true - }, - { - "name" : "F3", - "check_uri" : "https://f3.cool/{account}", - "account_existence_code" : "200", - "account_existence_string" : "@", - "account_missing_string" : "Page Not Found - F3", - "account_missing_code" : "404", - "known_accounts" : ["nick", "john"], - "category" : "social", - "valid" : true - }, - { - "name" : "fanpop", - "check_uri" : "https://www.fanpop.com/fans/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Fanpopping since", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["test", "johndoe"], - "category" : "social", - "valid" : true - }, - { - "name" : "Fiverr", - "check_uri" : "https://www.fiverr.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "member-since", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["yellowdd", "samanvay"], - "category" : "shopping", - "valid" : true - }, - { - "name" : "Flickr", - "check_uri" : "https://www.flickr.com/photos/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "| Flickr", - "account_missing_string" : "", - "account_missing_code" : "404", - "known_accounts" : ["glaciernps", "test"], - "category" : "images", - "valid" : true - }, - { - "name" : "Flipboard", - "check_uri" : "https://flipboard.com/@{account}", - "account_existence_code" : "200", - "account_existence_string" : ") on Flipboard", - "account_missing_string" : "<title>", - "account_missing_code" : "404", - "known_accounts" : ["cosmopolitan", "Mashable"], - "category" : "tech", - "valid" : true - }, - { - "name" : "Fodors Forum", - "check_uri" : "https://www.fodors.com/community/profile/{account}/forum-activity", - "account_existence_code" : "200", - "account_existence_string" : "Member since", - "account_missing_string" : "Plan Your Trip Online", - "account_missing_code" : "302", - "known_accounts" : ["mms", "gooster"], - "category" : "social", - "valid" : true - }, - { - "name" : "Foursquare", - "check_uri" : "https://foursquare.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "on Foursquare", - "account_missing_string" : "Foursquare - Independent Location Data Platform", - "account_missing_code" : "302", - "known_accounts" : ["john", "ncyp23"], - "category" : "social", - "valid" : true - }, - { - "name" : "freelancer", - "check_uri" : "https://www.freelancer.com/u/{account}", - "account_existence_code" : "200", - "account_existence_string" : "qualifications", - "account_missing_string" : "Looks like the page you are looking for doesn't exist.", - "account_missing_code" : "404", - "known_accounts" : ["mikehurley"], - "category" : "business", - "valid" : true - }, - { - "name" : "freesound", - "check_uri" : "https://freesound.org/people/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "START of Content area", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["test", "JohnDoe"], - "category" : "music", - "valid" : true - }, - { - "name" : "FriendFinder", - "check_uri" : "https://friendfinder.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Last Visit:", - "account_missing_string" : "302 Found", - "account_missing_code" : "302", - "known_accounts" : ["alex56", "john"], - "category" : "dating", - "valid" : true - }, - { - "name" : "FriendFinder-X", - "check_uri" : "https://www.friendfinder-x.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "'s Dating Profile on FriendFinder-x", - "account_missing_string" : "The document has moved", - "account_missing_code" : "302", - "known_accounts" : ["john"], - "category" : "dating", - "valid" : true - }, - { - "name" : "FurAffinity", - "check_uri" : "https://www.furaffinity.net/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Userpage of", - "account_missing_string" : "user cannot be found", - "account_missing_code" : "200", - "known_accounts" : ["test"], - "category" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "Gamespot", - "check_uri" : "https://www.gamespot.com/profile/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "'s Profile - GameSpot", - "account_missing_string" : "404: Not Found - GameSpot", - "account_missing_code" : "200", - "known_accounts" : ["alice", "bob"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "Garmin connect", - "check_uri" : "https://connect.garmin.com/modern/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "window.ERROR_VIEW = null", - "account_missing_string" : "resourceNotFoundRoute", - "account_missing_code" : "200", - "known_accounts" : ["danielebarison", "cderalow"], - "category" : "health", - "valid" : true - }, - { - "name" : "Geocaching", - "check_uri" : "https://www.geocaching.com/p/?u={account}", - "account_existence_code" : "200", - "account_existence_string" : "Groundspeak - User Profile", - "account_missing_string" : "Error 404: DNF", - "account_missing_code" : "404", - "known_accounts" : ["moun10bike", "niraD"], - "category" : "social", - "valid" : true - }, - { - "name" : "Giphy", - "check_uri" : "https://giphy.com/channel/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Share on GIPHY", - "account_missing_string" : "404 Not Found", - "account_missing_code" : "404", - "known_accounts" : ["buzz", "test"], - "category" : "social", - "valid" : true - }, - { - "name" : "GitHub", - "check_uri" : "https://github.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "p-nickname vcard-username d-block", - "account_missing_string" : "Page not found ", - "account_missing_code" : "404", - "known_accounts" : ["test", "WebBreacher"], - "category" : "coding", - "valid" : true - }, - { - "name" : "GitLab", - "check_uri" : "https://gitlab.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Member since", - "account_missing_string" : "GitLab.com offers free unlimited", - "account_missing_code" : "302", - "known_accounts" : ["skennedy", "KennBro", "alex", "bob"], - "category" : "coding", - "valid" : true - }, - { - "name" : "gitee", - "check_uri" : "https://gitee.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Commits, issues, and pull requests will appear", - "account_missing_string" : "Gitee is more than a development platform", - "account_missing_code" : "404", - "known_accounts" : ["maxim"], - "category" : "coding", - "valid" : true - }, - { - "name" : "gpodder.net", - "check_uri" : "https://gpodder.net/user/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "mdash; gpodder.net", - "account_missing_string" : "404 - Not found", - "account_missing_code" : "404", - "known_accounts" : ["blue", "red"], - "category" : "music", - "valid" : true - }, - { - "name" : "Gravatar", - "check_uri" : "http://en.gravatar.com/profiles/{account}.json", - "pretty_uri" : "http://en.gravatar.com/profiles/{account}", - "account_existence_code" : "200", - "account_existence_string" : "entry", - "account_missing_string" : "User not found", - "account_missing_code" : "404", - "known_accounts" : ["test"], - "category" : "images", - "valid" : true - }, - { - "name" : "Hacker News", - "check_uri" : "https://news.ycombinator.com/user?id={account}", - "account_existence_code" : "200", - "account_existence_string" : "created:", - "account_missing_string" : "No such user.", - "account_missing_code" : "200", - "known_accounts" : ["mubix", "egypt"], - "category" : "tech", - "valid" : true - }, - { - "name" : "HackerOne", - "check_uri" : "https://hackerone.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "profile that highlights", - "account_missing_string" : "Page not found", - "account_missing_code" : "301", - "known_accounts" : ["yashrs", "ameerpornillos"], - "category" : "tech", - "valid" : true - }, - { - "name" : "HubPages", - "check_uri" : "https://hubpages.com/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "name\">Followers", - "account_missing_string" : "Sorry, that user does not exist", - "account_missing_code" : "404", - "known_accounts" : ["greeneyes1607", "lmmartin"], - "category" : "blog", - "valid" : true - }, - { - "name" : "IFTTT", - "check_uri" : "https://ifttt.com/p/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Joined", - "account_missing_string" : "The requested page or file does not exist", - "account_missing_code" : "404", - "known_accounts" : ["nr9992", "sss90"], - "category" : "misc", - "valid" : true - }, { "name" : "ImageShack", "check_uri" : "https://imageshack.com/user/{account}", @@ -1507,28 +2315,6 @@ "category" : "dating", "valid" : true }, - { - "name" : "Keybase", - "check_uri" : "https://keybase.io/{account}", - "account_existence_code" : "200", - "account_existence_string" : "username", - "account_missing_string" : "sorry, not found", - "account_missing_code" : "404", - "known_accounts" : ["test", "mubix"], - "category" : "social", - "valid" : true - }, - { - "name" : "Kongregate", - "check_uri" : "https://www.kongregate.com/accounts/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Member Since", - "account_missing_string" : "Sorry, no account with that name was found", - "account_missing_code" : "404", - "known_accounts" : ["test"], - "category" : "gaming", - "valid" : true - }, { "name" : "Last.fm", "check_uri" : "https://www.last.fm/user/{account}", @@ -1710,12 +2496,12 @@ }, { "name" : "MyFitnessPal", - "check_uri" : "https://www.myfitnesspal.com/profile/{account}", + "check_uri" : "https://www.myfitnesspal.com/user/{account}/status", "account_existence_code" : "200", - "account_existence_string" : "created_at", - "account_missing_string" : "The page you were looking for could not be found", - "account_missing_code" : "200", - "known_accounts" : ["mike","titaniumclicks"], + "account_existence_string" : "s profile | MyFitnessPal.com", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["mike"], "category" : "health", "valid" : true }, @@ -1761,7 +2547,7 @@ "account_missing_code" : "404", "known_accounts" : ["nebkacrea", "cdiljda"], "category" : "social", - "valid" : false + "valid" : true }, { "name" : "NotABug", @@ -2254,8 +3040,8 @@ "check_uri" : "https://nitter.net/{account}", "pretty_uri" : "https://twitter.com/{account}", "account_existence_code" : "200", - "account_existence_string" : ")|nitter", - "account_missing_string" : "Error|nitter", + "account_existence_string" : ") | nitter", + "account_missing_string" : "Error | nitter", "account_missing_code" : "404", "known_accounts" : ["webbreacher", "chrishemsworth"], "category" : "social", @@ -2298,10 +3084,10 @@ "name" : "Venmo", "check_uri" : "https://account.venmo.com/u/{account}", "account_existence_code" : "200", - "account_existence_string" : "profileInfo_username", + "account_existence_string" : "\"profileInfo_username__", "account_missing_string" : "Sorry, the page you requested does not exist!", "account_missing_code" : "404", - "known_accounts" : ["John-Goudie-1", "John-Nebiolo"], + "known_accounts" : ["john", "liam"], "category" : "finance", "valid" : true }, @@ -2411,7 +3197,7 @@ "name" : "Weasyl", "check_uri" : "https://www.weasyl.com/~{account}", "account_existence_code" : "200", - "account_existence_string" : "’s profile — Weasyl", + "account_existence_string" : "'s profile — Weasyl", "account_missing_string" : "This user doesn't seem to be in our database.", "account_missing_code" : "404", "known_accounts" : ["weasyl", "test"], @@ -2584,39 +3370,6 @@ "category" : "social", "valid" : true }, - { - "name" : "CaringBridge", - "check_uri" : "https://www.caringbridge.org/visit/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| CaringBridge", - "account_missing_string" : "Sorry, we can’t find that site", - "account_missing_code" : "404", - "known_accounts" : ["robertherring"], - "category" : "health", - "valid" : true - }, - { - "name" : "Fark", - "check_uri" : "https://www.fark.com/users/{account}", - "account_existence_code" : "200", - "account_existence_string" : "bio", - "account_missing_string" : "Tastes like chicken.", - "account_missing_code" : "200", - "known_accounts" : ["bob", "bobby"], - "category" : "social", - "valid" : true - }, - { - "name" : "FatSecret", - "check_uri" : "https://www.fatsecret.com/member/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- Member", - "account_missing_string" : "Your Key to Success", - "account_missing_code" : "302", - "known_accounts" : ["bob", "bobby"], - "category" : "health", - "valid" : true - }, { "name" : "Yelp", "check_uri" : "https://www.yelp.com/user_details?userid={account}", @@ -2661,39 +3414,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Blogger", - "check_uri" : "https://www.blogger.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : ">On Blogger since", - "account_missing_string" : "Sorry, the blog you were looking for does not exist.", - "account_missing_code" : "404", - "known_accounts" : ["07333944864481878697", "05941544278367416980"], - "category" : "blog", - "valid" : true - }, - { - "name" : "ArmorGames", - "check_uri" : "https://armorgames.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "about", - "account_missing_string" : "404: Oh Noes!", - "account_missing_code" : "302", - "known_accounts" : ["john", "sammy"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "Fandom", - "check_uri" : "https://www.fandom.com/u/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| Profile | Fandom", - "account_missing_string" : "Not Found", - "account_missing_code" : "404", - "known_accounts" : ["EJacobs94", "Drew_Dietsch"], - "category" : "gaming", - "valid" : true - }, { "name" : "Zillow", "check_uri" : "https://www.zillow.com/profile/{account}/", @@ -2716,17 +3436,6 @@ "category" : "shopping", "valid" : true }, - { - "name" : "Fabswingers", - "check_uri" : "https://www.fabswingers.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "View Profile", - "account_missing_string" : "The user you tried to view doesn't seem to be on the site any more", - "account_missing_code" : "200", - "known_accounts" : ["naughty_nymphomaniac", "hellfireclub", "fabswingers.com"], - "category" : "dating", - "valid" : true - }, { "name" : "Magix", "check_uri" : "https://www.magix.info/us/users/profile/{account}/", @@ -2749,28 +3458,6 @@ "category" : "music", "valid" : true }, - { - "name" : "Appian", - "check_uri" : "https://community.appian.com/members/{account}", - "account_existence_code" : "200", - "account_existence_string" : "User Profile", - "account_missing_string" : "Go back to our", - "account_missing_code" : "301", - "known_accounts" : ["mikec", "varunkumarb0001"], - "category" : "tech", - "valid" : true - }, - { - "name" : "Digitalspy", - "check_uri" : "https://forums.digitalspy.com/profile/discussions/{account}", - "account_existence_code" : "200", - "account_existence_string" : "About", - "account_missing_string" : "User not found", - "account_missing_code" : "404", - "known_accounts" : ["JeffG1", "Maxatoria"], - "category" : "social", - "valid" : true - }, { "name" : "Moneysavingexpert", "check_uri" : "https://forums.moneysavingexpert.com/profile/{account}", @@ -2804,17 +3491,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Bentbox", - "check_uri" : "https://bentbox.co/{account}", - "account_existence_code" : "200", - "account_existence_string" : "BentBox photos and videos", - "account_missing_string" : "This user page is currently not available.", - "account_missing_code" : "302", - "known_accounts" : ["brockdoom", "witchhouse", "hotoptics"], - "category" : "XXXPORNXXX", - "valid" : true - }, { "name" : "Wireclub", "check_uri" : "https://www.wireclub.com/users/{account}", @@ -2838,17 +3514,6 @@ "category" : "social", "valid" : true }, - { - "name" : "AmericanThinker", - "check_uri" : "https://www.americanthinker.com/author/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Articles &", - "account_missing_string" : "American Thinker", - "account_missing_code" : "301", - "known_accounts" : ["terrypaulding", "monicashowalter"], - "category" : "political", - "valid" : true - }, { "name" : "Minds", "check_uri" : "https://www.minds.com/{account}/", @@ -2904,17 +3569,6 @@ "category" : "political", "valid" : true }, - { - "name" : "Bitchute", - "check_uri" : "https://www.bitchute.com/channel/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "subscribers", - "account_missing_string" : "404 - Page not found", - "account_missing_code" : "404", - "known_accounts" : ["simon_parkes", "americafloats", "daindor"], - "category" : "political", - "valid" : true - }, { "name" : "RumbleUser", "check_uri" : "https://rumble.com/user/{account}", @@ -2937,17 +3591,6 @@ "category" : "political", "valid" : true }, - { - "name" : "Dissenter", - "check_uri" : "https://dissenter.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Dissenter | The Comment Section of the Internet", - "account_missing_string" : "That user is not registered here.", - "account_missing_code" : "404", - "known_accounts" : ["pryerlee", "archdukeofevil"], - "category" : "political", - "valid" : true - }, { "name" : "TrackmaniaLadder", "check_uri" : "https://en.tm-ladder.com/{account}_rech.php", @@ -2970,39 +3613,6 @@ "category" : "social", "valid" : true }, - { - "name" : "igromania", - "check_uri" : "http://forum.igromania.ru/member.php?username={account}", - "account_existence_code" : "200", - "account_existence_string" : "Форум Игромании - Просмотр профиля:", - "account_missing_string" : "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "account_missing_code" : "200", - "known_accounts" : ["bob", "blue"], - "category" : "social", - "valid" : true - }, - { - "name" : "akniga", - "check_uri" : "https://akniga.org/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : " - Аудиокниги Клуб", - "account_missing_string" : "BOOTH - The International Indie Art Marketplace", - "account_missing_code" : "302", - "known_accounts" : ["monoliorder", "hasya"], - "category" : "shopping", - "valid" : true - }, - { - "name" : "Carbonmade", - "check_uri" : "https://{account}.carbonmade.com/", - "account_existence_code" : "200", - "account_existence_string" : "s online portfolio", - "account_missing_string" : "site not found", - "account_missing_code" : "404", - "known_accounts" : ["jenny", "bob"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Career.habr", - "check_uri" : "https://career.habr.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "— Хабр Карьера", - "account_missing_string" : "Ошибка 404", - "account_missing_code" : "404", - "known_accounts" : ["alex", "bob"], - "category" : "business", - "valid" : true - }, - { - "name" : "Facenama", - "check_uri" : "https://facenama.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "شبکه اجتماعی فیس نما", - "account_missing_string" : "خطای 404", - "account_missing_code" : "302", - "known_accounts" : ["john", "blue"], - "category" : "social", - "valid" : false - }, - { - "name" : "Hackaday", - "check_uri" : "https://hackaday.io/{account}", - "account_existence_code" : "200", - "account_existence_string" : "'s Profile | Hackaday.io", - "account_missing_string" : "The requested URL was not found on this server. That’s all we know.", - "account_missing_code" : "404", - "known_accounts" : ["john", "adam"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Hubski", - "check_uri" : "https://hubski.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "'s profile", - "account_missing_string" : "No such user.", - "account_missing_code" : "200", - "known_accounts" : ["john", "blue"], - "category" : "social", - "valid" : true - }, - { - "name" : "Dojoverse", - "check_uri" : "https://dojoverse.com/members/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Joined", - "account_missing_string" : "Looks like you got lost!.", - "account_missing_code" : "404", - "known_accounts" : ["eric", "danielrivera10927"], - "category" : "hobby", - "valid" : true - }, { "name" : "Massage Anywhere", "check_uri" : "https://www.massageanywhere.com/profile/{account}", @@ -3124,18 +3657,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Instagram", - "pretty_uri" : "https://instagram.com/{account}", - "check_uri" : "https://www.picuki.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Instagram profile with posts and stories", - "account_missing_string" : "Nothing found!", - "account_missing_code" : "404", - "known_accounts" : ["katyperry", "kirbstr"], - "category" : "social", - "valid" : true - }, { "name" : "Skypli", "check_uri" : "https://www.skypli.com/profile/{account}", @@ -3147,28 +3668,6 @@ "category" : "social", "valid" : false }, - { - "name" : "AllTrails", - "check_uri" : "https://www.alltrails.com/members/{account}", - "account_existence_code" : "200", - "account_existence_string" : "'s Profile | ", - "account_missing_string" : "User could not be found.", - "account_missing_code" : "302", - "known_accounts" : ["breckt", "rdoghartwig"], - "category" : "health", - "valid" : true - }, - { - "name" : "Cracked", - "check_uri" : "https://www.cracked.com/members/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Member Since", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["mbattagl","Hatchback"], - "category" : "social", - "valid" : true - }, { "name" : "ScoutWiki", "check_uri" : "https://en.scoutwiki.org/User:{account}", @@ -3192,14 +3691,14 @@ "valid" : true }, { - "name" : "ilovegrowingmarijuana", - "check_uri" : "https://support.ilovegrowingmarijuana.com/u/{account}", + "name" : "Ruby Dating", + "check_uri" : "https://ruby.dating/en/users/{account}", "account_existence_code" : "200", - "account_existence_string" : " Profile - ", - "account_missing_string" : "Oops! That page doesn’t exist or is private", - "account_missing_code" : "404", - "known_accounts" : ["ILGM.Stacy", "Mosaicmind9x"], - "category" : "social", + "account_existence_string" : "Looks for:", + "account_missing_string" : "We can’t find that user", + "account_missing_code" : "410", + "known_accounts" : ["Ute1833", "Jessika4922"], + "category" : "dating", "valid" : true }, { @@ -3213,17 +3712,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "Justforfans", - "check_uri" : "https://justfor.fans/{account}", - "account_existence_code" : "200", - "account_existence_string" : " @ JustFor.Fans", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["devinfrancoxxx", "RileyChaux"], - "category" : "XXXPORNXXX", - "valid" : true - }, { "name" : "zhihu", "check_uri" : "https://www.zhihu.com/people/{account}", @@ -3246,17 +3734,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "Gettr", - "check_uri" : "https://api.gettr.com/s/user/{account}/exist", - "account_existence_code" : "200", - "account_existence_string" : "cdate", - "account_missing_string" : "success\": false", - "account_missing_code" : "200", - "known_accounts" : ["qellyanon", "djerod"], - "category" : "social", - "valid" : true - }, { "name" : "Stripchat", "check_uri" : "https://stripchat.com/{account}", @@ -3268,17 +3745,6 @@ "category" : "XXXPORNXXX", "valid" : true }, - { - "name" : "Cults3D", - "check_uri" : "https://cults3d.com/en/users/{account}/creations", - "account_existence_code" : "200", - "account_existence_string" : "All the 3D models of", - "account_missing_string" : "Oh dear, this page is not working!", - "account_missing_code" : "404", - "known_accounts" : ["Bstar3Dart", "john"], - "category" : "hobby", - "valid" : true - }, { "name" : "USA Life", "check_uri" : "https://usa.life/{account}", @@ -3336,26 +3802,15 @@ }, { "name" : "Parler", - "check_uri" : "https://parler.com/{account}", + "check_uri" : "https://parler.com/user/{account}", "account_existence_code" : "200", - "account_existence_string" : " is on Parler. See what they're sharing.", - "account_missing_string" : "Parler - Where Free Speech Thrives", - "account_missing_code" : "200", + "account_existence_string" : "People to Follow", + "account_missing_string" : "join Parler today", + "account_missing_code" : "302", "known_accounts" : ["DineshDsouza", "SeanHannity"], "category" : "social", "valid" : true }, - { - "name" : "Elftown", - "check_uri" : "http://elftown.com/{account}", - "account_existence_code" : "303", - "account_existence_string" : "", - "account_missing_string" : "is an unknown", - "account_missing_code" : "200", - "known_accounts" : ["marhiah", "adnama"], - "category" : "social", - "valid" : false - }, { "name" : "osu!", "check_uri" : "https://osu.ppy.sh/users/{account}", @@ -3966,18 +4421,6 @@ "valid" : true }, { - "name" : "fansly", - "check_uri" : "https://apiv2.fansly.com/api/v1/account?usernames={account}", - "pretty_uri": "https://fansly.com/{account}/posts", - "account_existence_code" : "200", - "account_existence_string" : "username", - "account_missing_string" : "response: []", - "account_missing_code" : "200", - "known_accounts" : ["Mikomin","test"], - "category" : "XXXPORNXXX", - "valid" : true - }, - { "name" : "mym.fans", "check_uri" : "https://mym.fans/{account}", "account_existence_code" : "200", @@ -4000,51 +4443,6 @@ "category" : "finance", "valid" : true }, - { - "name" : "datezone", - "check_uri" : "https://www.datezone.com/users/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Profile", - "account_missing_string" : "There is an error", - "account_missing_code" : "404", - "known_accounts" : ["xkarola","zorro3330"], - "category" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "FanCentro", - "check_uri" : "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", - "pretty_uri" : "https://fancentro.com/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "\"status\":true", - "account_missing_string" : "\"status\":false", - "account_missing_code" : "200", - "known_accounts" : ["medroxy","miaaamador"], - "category" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "bitcoin forum", - "check_uri" : "https://bitcoinforum.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Profile of", - "account_missing_string" : "An Error Has Occurred!", - "account_missing_code" : "200", - "known_accounts" : ["alex", "boss"], - "category" : "finance", - "valid" : true - }, - { - "name" : "Fortnite Tracker", - "check_uri" : "https://fortnitetracker.com/profile/all/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s Fortnite Stats - Fortnite Tracker", - "account_missing_string" : "Fortnite Player Stats -", - "account_missing_code" : "404", - "known_accounts" : ["steph", "sam"], - "category" : "gaming", - "valid" : true - }, { "name" : "Tellonym", "check_uri" : "https://tellonym.me/{account}", @@ -4067,17 +4465,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Jeuxvideo", - "check_uri" : "https://www.jeuxvideo.com/profil/{account}?mode=infos", - "account_existence_code" : "200", - "account_existence_string" : "- jeuxvideo.com", - "account_missing_string" : "rence des gamers", - "account_missing_code" : "404", - "known_accounts" : ["jane", "alex"], - "category" : "gaming", - "valid" : true - }, { "name" : "Wikidot", "check_uri" : "http://www.wikidot.com/user:info/{account}", @@ -4089,83 +4476,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Chaos", - "check_uri" : "https://chaos.social/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "- chaos.social", - "account_missing_string" : "The page you are looking for isn't here.", - "account_missing_code" : "404", - "known_accounts" : ["alice", "sam"], - "category" : "social", - "valid" : true - }, - { - "name" : "Arduino", - "check_uri" : "https://create.arduino.cc/projecthub/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- Arduino Project Hub", - "account_missing_string" : "Arduino Project Hub", - "account_missing_code" : "404", - "known_accounts" : ["peter", "john"], - "category" : "tech", - "valid" : true - }, - { - "name" : "hackerearth", - "check_uri" : "https://www.hackerearth.com/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "| Developer Profile on HackerEarth", - "account_missing_string" : "404 | HackerEarth", - "account_missing_code" : "200", - "known_accounts" : ["peter", "liam"], - "category" : "coding", - "valid" : true - }, - { - "name" : "Independent academia", - "check_uri" : "https://independent.academia.edu/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- Academia.edu", - "account_missing_string" : "Academia.edu", - "account_missing_code" : "404", - "known_accounts" : ["peter", "LiamM"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Houzz", - "check_uri" : "https://www.houzz.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Followers", - "account_missing_string" : "Page Not Found", - "account_missing_code" : "404", - "known_accounts" : ["liam", "alex"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Hubski", - "check_uri" : "https://hubski.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "'s profile", - "account_missing_string" : "No such user.", - "account_missing_code" : "200", - "known_accounts" : ["kleinbl00", "peter"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "crowdin", - "check_uri" : "https://crowdin.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : ") – Crowdin", - "account_missing_string" : "Page Not Found - Crowdin", - "account_missing_code" : "404", - "known_accounts" : ["alex", "peter"], - "category" : "hobby", - "valid" : true - }, { "name" : "warriorforum", "check_uri" : "https://www.warriorforum.com/members/{account}.html", @@ -4324,39 +4634,6 @@ "category" : "hobby", "valid" : true }, - { - "name" : "kaggle", - "check_uri" : "https://www.kaggle.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| Kaggle", - "account_missing_string" : "Kaggle: Your Home for Data Science", - "account_missing_code" : "404", - "known_accounts" : ["babyoda", "residentmario"], - "category" : "coding", - "valid" : true - }, - { - "name" : "hackster", - "check_uri" : "https://www.hackster.io/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- Hackster.io", - "account_missing_string" : "Hackster.io - The community dedi", - "account_missing_code" : "404", - "known_accounts" : ["ian", "bob"], - "category" : "coding", - "valid" : true - }, - { - "name" : "anonup", - "check_uri" : "https://anonup.com/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "Following</span>", - "account_missing_string" : "Page not found!", - "account_missing_code" : "302", - "known_accounts" : ["john", "peter"], - "category" : "social", - "valid" : true - }, { "name" : "wego", "check_uri" : "https://wego.social/{account}", @@ -4368,17 +4645,6 @@ "category" : "political", "valid" : true }, - { - "name" : "kik", - "check_uri" : "https://ws2.kik.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "firstName", - "account_missing_string" : "The page you requested was not found", - "account_missing_code" : "200", - "known_accounts" : ["adam", "smith", "jones"], - "category" : "social", - "valid" : true - }, { "name": "Patronite", "check_uri": "https://patronite.pl/{account}", @@ -4415,17 +4681,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "Iconfinder", - "check_uri" : "https://www.iconfinder.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "iconsets", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["roundicons", "iconfinder"], - "category" : "images", - "valid" : true - }, { "name" : "Shesfreaky", "check_uri" : "https://www.shesfreaky.com/profile/{account}/", @@ -4459,28 +4714,6 @@ "category" : "music", "valid" : true }, - { - "name" : "ArtBreeder", - "check_uri" : "https://www.artbreeder.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "<title>", - "account_missing_string" : "Not found:", - "account_missing_code" : "404", - "known_accounts" : ["dolores", "cyborghyena"], - "category" : "art", - "valid" : true - }, - { - "name" : "BDSMLR", - "check_uri" : "https://{account}.bdsmlr.com", - "account_existence_code" : "200", - "account_existence_string" : "login", - "account_missing_string" : "This blog doesn't exist.", - "account_missing_code" : "200", - "known_accounts" : ["themunch", "shibari4all"], - "category" : "XXXPORNXXX", - "valid" : true - }, { "name" : "ReblogMe", "check_uri" : "https://{account}.reblogme.com", @@ -4503,17 +4736,6 @@ "category" : "tech", "valid" : true }, - { - "name" : "Friendweb", - "check_uri" : "https://friendweb.nl/{account}", - "account_existence_code" : "200", - "account_existence_string" : "friendweb.nl", - "account_missing_string" : "Page Not Found", - "account_missing_code" : "404", - "known_accounts" : ["HoogtePiet", "JeePee"], - "category" : "social", - "valid" : true - }, { "name" : "TotalWar", "check_uri" : "https://forums.totalwar.com/profile/{account}", @@ -4536,61 +4758,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "Chaos.social", - "check_uri" : "https://chaos.social/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "chaos.social", - "account_missing_string" : "The page you are looking for isn't here.", - "account_missing_code" : "404", - "known_accounts" : ["dictvm", "sml"], - "category" : "social", - "valid" : true - }, - { - "name" : "EU_Voice", - "check_uri" : "https://social.network.europa.eu/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "social.network.europa.eu", - "account_missing_string" : "The page you are looking for isn't here.", - "account_missing_code" : "404", - "known_accounts" : ["EC_DIGIT", "EUSPA"], - "category" : "social", - "valid" : true - }, - { - "name" : "Girlfriendsmeet", - "check_uri" : "http://www.girlfriendsmeet.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "online dating profile", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["john", "junech"], - "category" : "dating", - "valid" : true - }, - { - "name" : "icq-chat", - "check_uri" : "https://icq.icqchat.co/members/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "ICQ chat", - "account_missing_string" : "Oops! We ran into some problems", - "account_missing_code" : "404", - "known_accounts" : ["brookenora.54", "bigdaddy.77"], - "category" : "social", - "valid" : true - }, - { - "name" : "Heylink", - "check_uri" : "https://heylink.me/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "HeyLink.me |", - "account_missing_string" : "We can't find the page that you're looking for :(", - "account_missing_code" : "404", - "known_accounts" : ["mohammed13", "johnny"], - "category" : "misc", - "valid" : true - }, { "name" : "Yazawaj", "check_uri" : "https://www.yazawaj.com/profile/{account}", @@ -4602,28 +4769,6 @@ "category" : "dating", "valid" : true }, - { - "name" : "Alloannonces", - "check_uri" : "https://www.alloannonces.ma/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Vendeurs/Agents", - "account_missing_string" : "Page non defini", - "account_missing_code" : "404", - "known_accounts" : ["Rachid13", "Ayoub"], - "category" : "social", - "valid" : true - }, - { - "name" : "contactos.sex", - "check_uri" : "https://www.contactossex.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Información Personal", - "account_missing_string" : "Desde 2001 conectando gente!", - "account_missing_code" : "302", - "known_accounts" : ["danijak", "darkfox"], - "category" : "XXXPORNXXX", - "valid" : true - }, { "name" : "rsi", "check_uri" : "https://robertsspaceindustries.com/citizens/{account}", @@ -4635,17 +4780,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "imagefap", - "check_uri" : "https://www.imagefap.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s Profile", - "account_missing_string" : "Invalid uid", - "account_missing_code" : "200", - "known_accounts" : ["lover03", "SecretSide15"], - "category" : "XXXPORNXXX", - "valid" : true - }, { "name" : "lichess", "check_uri" : "https://lichess.org/@/{account}", @@ -4657,17 +4791,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "grandprof", - "check_uri" : "https://grandprof.org/communaute/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s Profile", - "account_missing_string" : "Mauvaise pioche", - "account_missing_code" : "404", - "known_accounts" : ["mohamed01", "amine"], - "category" : "misc", - "valid" : true - }, { "name" : "smelsy", "check_uri" : "https://www.smelsy.com/profile/{account}", @@ -4678,182 +4801,6 @@ "known_accounts" : ["mohamed01", "ahmed"], "category" : "misc", "valid" : true - }, - { - "name" : "footeo", - "check_uri" : "https://www.footeo.com/fr/users/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- Footeo", - "account_missing_string" : "VOTRE FRAPPE N'A PAS TROUVÉ LE CADRE !", - "account_missing_code" : "404", - "known_accounts" : ["rachid3", "mike"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "mstdn.social", - "check_uri" : "https://mstdn.social/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "mstdn.social", - "account_missing_string" : "The page you are looking for isn't here.", - "account_missing_code" : "404", - "known_accounts" : ["catboy", "esther"], - "category" : "social", - "valid" : true - }, - { - "name" : "mastodon.online", - "check_uri" : "https://mastodon.online/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "mastodon.online", - "account_missing_string" : "The page you are looking for isn't here.", - "account_missing_code" : "404", - "known_accounts" : ["amiw", "turbolove"], - "category" : "social", - "valid" : true - }, - { - "name" : "entrepreneurship-campus", - "check_uri" : "https://www.entrepreneurship-campus.org/members/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "| Entrepreneurship Campus", - "account_missing_string" : "Page Not Found -", - "account_missing_code" : "404", - "known_accounts" : ["sanjay01", "mohammed"], - "category" : "misc", - "valid" : true - }, - { - "name" : "stratege", - "check_uri" : "https://www.stratege.ru/users/{account}#args:ajax=1", - "account_existence_code" : "200", - "account_existence_string" : "| Stratege", - "account_missing_string" : "Такого пользователя на сайте не существует", - "account_missing_code" : "200", - "known_accounts" : ["oleg3", "oleg"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "xcraft", - "check_uri" : "https://vk.xcraft.ru/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "- User Profile", - "account_missing_string" : "Page not found.", - "account_missing_code" : "404", - "known_accounts" : ["oleg3", "nastya"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "999md", - "check_uri" : "https://999.md/ru/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "профиль пользователя на", - "account_missing_string" : "Ничего не найдено", - "account_missing_code" : "404", - "known_accounts" : ["serguei", "olga"], - "category" : "misc", - "valid" : true - }, - { - "name" : "stereo_ru", - "check_uri" : "https://stereo.ru/users/@{account}/", - "account_existence_code" : "200", - "account_existence_string" : "Профиль пользователя", - "account_missing_string" : "error-page", - "account_missing_code" : "404", - "known_accounts" : ["oleg33", "igor"], - "category" : "music", - "valid" : true - }, - { - "name" : "castingfr", - "check_uri" : "https://www.casting.fr/{account}", - "account_existence_code" : "200", - "account_existence_string" : ", artiste sur Casting.fr -", - "account_missing_string" : "Page introuvable", - "account_missing_code" : "404", - "known_accounts" : ["mamadou01", "serge"], - "category" : "misc", - "valid" : true - }, - { - "name" : "pokemonvortex", - "check_uri" : "https://www.pokemon-vortex.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s Profile", - "account_missing_string" : "- Member List", - "account_missing_code" : "200", - "known_accounts" : ["mamadou2", "dog"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "jecontacte", - "check_uri" : "https://www.jecontacte.com/profil/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Envoyer un message", - "account_missing_string" : "Votre Menu", - "account_missing_code" : "404", - "known_accounts" : ["moussa6", "cianashara"], - "category" : "dating", - "valid" : true - }, - { - "name" : "vinted", - "check_uri" : "https://www.vinted.nl/member/general/search?search_text={account}", - "account_existence_code" : "200", - "account_existence_string" : "flag-box-flag-box-top", - "account_missing_string" : "geen resultaten", - "account_missing_code" : "200", - "known_accounts" : ["john", "jack"], - "category" : "business", - "valid" : true - }, - { - "name" : "virustotal", - "check_uri" : "https://www.virustotal.com/gui/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "VirusTotal - User - ", - "account_missing_string" : "sTotal -", - "account_missing_code" : "200", - "known_accounts" : ["banana", "jack"], - "category" : "misc", - "valid" : true - }, - { - "name" : "sexbaba", - "check_uri" : "https://sexbaba.co/User-{account}", - "account_existence_code" : "200", - "account_existence_string" : "- Sex Baba", - "account_missing_string" : "is either invalid or doesn't exist", - "account_missing_code" : "404", - "known_accounts" : ["john", "surya"], - "category" : "dating", - "valid" : true - }, - { - "name" : "thesims.com", - "check_uri" : "https://forums.thesims.com/en_US/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "<h2 class", - "account_missing_string" : "User Not Found", - "account_missing_code" : "404", - "known_accounts" : ["babykittyjade", "simgurumorgan"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "ubisoft.com", - "check_uri" : "https://discussions.ubisoft.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Joined", - "account_missing_string" : "<title>Not Found | Ubisoft", - "account_missing_code" : "404", - "known_accounts" : ["rizkonnez", "gegg22"], - "category" : "gaming", - "valid" : true - } + } ] } From ae20bb08f33a76650c495ffb24286a85b779fa8c Mon Sep 17 00:00:00 2001 From: spotlightc <109301750+cami325@users.noreply.github.com> Date: Mon, 18 Jul 2022 16:13:09 -0400 Subject: [PATCH 010/104] Alphabetized JSON File L, M --- web_accounts_list.json | 704 +++++++++++++++++++++-------------------- 1 file changed, 369 insertions(+), 335 deletions(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index f41b567..8cd71f2 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -1906,26 +1906,71 @@ "valid" : true }, { - "name" : "Linktree", - "check_uri" : "https://linktr.ee/{account}", - "account_existence_code" : "200", - "account_existence_string" : "| Linktree", - "account_missing_string" : "The page you’re looking for doesn’t exist.", - "account_missing_code" : "404", - "known_accounts" : ["anne", "alex"], - "category" : "social", - "valid" : true + "name" : "LibraryThing", + "check_uri" : "https://www.librarything.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Collections", + "account_missing_string" : "Error: This user doesn't exist", + "account_missing_code" : "200", + "known_accounts" : ["test", "john"], + "category" : "hobby", + "valid" : true }, { - "name" : "linux.org.ru", - "check_uri" : "https://www.linux.org.ru/people/{account}/profile", - "account_existence_code" : "200", - "account_existence_string" : "Дата регистрации", - "account_missing_string" : "Пользователя не существует", - "account_missing_code" : "404", - "known_accounts" : ["john", "bob"], - "category" : "tech", - "valid" : true + "name" : "lichess", + "check_uri" : "https://lichess.org/@/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Activity", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["mohammed01", "mohammed03"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "LINE", + "check_uri" : "https://line.me/R/ti/p/@{account}?from=page", + "account_existence_code" : "200", + "account_existence_string" : "Add LINE Friends via QR Code", + "account_missing_code" : "404", + "account_missing_string" : "404 Not Found", + "known_accounts" : [ "roseareal", "yoasobi" ], + "category" : "social", + "valid" : true + }, + { + "name" : "Linktree", + "check_uri" : "https://linktr.ee/{account}", + "account_existence_code" : "200", + "account_existence_string" : "| Linktree", + "account_missing_string" : "The page you’re looking for doesn’t exist.", + "account_missing_code" : "404", + "known_accounts" : ["anne", "alex"], + "category" : "social", + "valid" : true + }, + { + "name" : "linux.org.ru", + "check_uri" : "https://www.linux.org.ru/people/{account}/profile", + "account_existence_code" : "200", + "account_existence_string" : "Дата регистрации", + "account_missing_string" : "Пользователя не существует", + "account_missing_code" : "404", + "known_accounts" : ["john", "bob"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Livejournal", + "check_uri" : "https://{account}.livejournal.com", + "account_existence_code" : "200", + "account_existence_string" : "<link rel=\"canonical\" href=\"", + "account_missing_string" : "<title>Unknown Journal", + "account_missing_code" : "404", + "known_accounts" : ["jill", "john"], + "allowed_types" : ["String","Person","WebAccount","Username"], + "category" : "blog", + "valid" : true }, { "name" : "lobste.rs", @@ -1939,27 +1984,315 @@ "valid" : true }, { - "name" : "mastodon", - "check_uri" : "https://mastodon.social/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "profile:username", - "account_missing_string" : "The page you are looking for isn't here.", - "account_missing_code" : "404", - "known_accounts" : ["john", "alex"], - "category" : "social", - "valid" : true + "name" : "MAGABOOK", + "check_uri" : "https://magabook.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Recent Updates", + "account_missing_string" : "Page Not Be Found", + "account_missing_code" : "200", + "known_accounts" : ["PamelaElliott62", "eric"], + "category" : "social", + "valid" : true }, { - "name" : "MyAnimeList", - "check_uri" : "https://myanimelist.net/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Profile - MyAnimeList.net", - "account_missing_string" : "<title>404 Not Found", - "account_missing_code" : "404", - "known_accounts" : ["test", "admin"], - "category" : "social", - "valid" : true + "name" : "MAGA-CHAT", + "check_uri" : "https://maga-chat.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Recent Updates", + "account_missing_string" : "Page Not Be Found", + "account_missing_code" : "200", + "known_accounts" : ["Rich", "RjosephJr"], + "category" : "social", + "valid" : true }, + { + "name" : "Magix", + "check_uri" : "https://www.magix.info/us/users/profile/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "About me", + "account_missing_string" : "Page not found", + "account_missing_code" : "200", + "known_accounts" : ["baywolfmusic", "johnebaker"], + "category" : "music", + "valid" : true + }, + { + "name" : "MapMyTracks", + "check_uri" : "https://www.mapmytracks.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Daily distance this week", + "account_missing_string" : "Outside together", + "account_missing_code" : "302", + "known_accounts" : ["ulirad", "CBSloan"], + "category" : "health", + "valid" : true + }, + { + "name" : "Marshmallow", + "check_uri" : "https://marshmallow-qa.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "さんにメッセージをおくる", + "account_missing_code" : "404", + "account_missing_string" : "For compensation, here are cats for you.", + "known_accounts" : ["yuino_fox", "momo"], + "category" : "social", + "valid" : true + }, + { + "name" : "Martech", + "check_uri" : "https://martech.org/author/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "twitter:site", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["mani-karthik", "james-green"], + "category" : "business", + "valid" : true + }, + { + "name" : "Massage Anywhere", + "check_uri" : "https://www.massageanywhere.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "<title>MassageAnywhere.com Profile for ", + "account_missing_string" : "<title>MassageAnywhere.com: Search Results", + "account_missing_code" : "200", + "known_accounts" : ["lorilmccluskey", "LomiNYC"], + "category" : "health", + "valid" : true + }, + { + "name" : "mastodon", + "check_uri" : "https://mastodon.social/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "profile:username", + "account_missing_string" : "The page you are looking for isn't here.", + "account_missing_code" : "404", + "known_accounts" : ["john", "alex"], + "category" : "social", + "valid" : true + }, + { + "name" : "MCUUID (Minecraft)", + "check_uri" : "https://playerdb.co/api/player/minecraft/{account}", + "pretty_uri" : "https://mcuuid.net/?q={account}", + "account_existence_code" : "200", + "account_existence_string" : "Successfully found player by given ID.", + "account_missing_string" : "minecraft.api_failure", + "account_missing_code" : "200", + "known_accounts" : ["smithy", "bob"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "Medium", + "check_uri" : "https://{account}.medium.com/about", + "account_existence_code" : "200", + "account_existence_string" : "Medium member since", + "account_missing_string" : "Out of nothing, something", + "account_missing_code" : "404", + "known_accounts" : ["zulie", "jessicalexicus"], + "category" : "news", + "valid" : true + }, + { + "name" : "meet me", + "check_uri" : "https://www.meetme.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Meet people like ", + "account_missing_string" : "<title>MeetMe - Chat and Meet New People</title", + "account_missing_code" : "302", + "known_accounts" : ["john", "marsha"], + "category" : "dating", + "valid" : true + }, + { + "name" : "memrise", + "check_uri" : "https://app.memrise.com/user/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "followers", + "account_missing_string" : "Memrise - Error", + "account_missing_code" : "404", + "known_accounts" : ["alice", "john"], + "category" : "hobby", + "valid" : true + }, + { + "name" : "Microsoft Technet Community", + "check_uri" : "https://social.technet.microsoft.com/profile/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "s Profile", + "account_missing_string" : "The resource you are looking for has been removed", + "account_missing_code" : "404", + "known_accounts" : ["john", "test"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Minds", + "check_uri" : "https://www.minds.com/{account}/", + "account_existence_code" : "200", + "account_existence_string" : ") | Minds", + "account_missing_string" : "Sorry, this channel doesn't appear to exist", + "account_missing_code" : "404", + "known_accounts" : ["Willieleev1971", "john"], + "category" : "political", + "valid" : true + }, + { + "name" : "Minecraft List", + "check_uri" : "https://minecraftlist.com/players/{account}", + "account_existence_code" : "200", + "account_existence_string" : "-->was seen on", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["alice", "bob"], + "category" : "social", + "valid" : true + }, { "name" : "Newgrounds", "check_uri" : "https://{account}.newgrounds.com/", @@ -2360,173 +2693,6 @@ "category" : "blog", "valid" : true }, - { - "name" : "Martech", - "check_uri" : "https://martech.org/author/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "twitter:site", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["mani-karthik", "james-green"], - "category" : "business", - "valid" : true - }, - { - "name" : "Marshmallow", - "check_uri" : "https://marshmallow-qa.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "さんにメッセージをおくる", - "account_missing_code" : "404", - "account_missing_string" : "For compensation, here are cats for you.", - "known_accounts" : ["yuino_fox", "momo"], - "category" : "social", - "valid" : true - }, - { - "name" : "MCUUID (Minecraft)", - "check_uri" : "https://playerdb.co/api/player/minecraft/{account}", - "pretty_uri" : "https://mcuuid.net/?q={account}", - "account_existence_code" : "200", - "account_existence_string" : "Successfully found player by given ID.", - "account_missing_string" : "minecraft.api_failure", - "account_missing_code" : "200", - "known_accounts" : ["smithy", "bob"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "Medium", - "check_uri" : "https://{account}.medium.com/about", - "account_existence_code" : "200", - "account_existence_string" : "Medium member since", - "account_missing_string" : "Out of nothing, something", - "account_missing_code" : "404", - "known_accounts" : ["zulie", "jessicalexicus"], - "category" : "news", - "valid" : true - }, - { - "name" : "meet me", - "check_uri" : "https://www.meetme.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Meet people like ", - "account_missing_string" : "<title>MeetMe - Chat and Meet New People</title", - "account_missing_code" : "302", - "known_accounts" : ["john", "marsha"], - "category" : "dating", - "valid" : true - }, - { - "name" : "Microsoft Technet Community", - "check_uri" : "https://social.technet.microsoft.com/profile/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "s Profile", - "account_missing_string" : "The resource you are looking for has been removed", - "account_missing_code" : "404", - "known_accounts" : ["john", "test"], - "category" : "tech", - "valid" : true - }, - { - "name" : "Minecraft List", - "check_uri" : "https://minecraftlist.com/players/{account}", - "account_existence_code" : "200", - "account_existence_string" : "-->was seen on", - "account_missing_string" : "", - "account_missing_code" : "404", - "known_accounts" : ["alice", "bob"], - "category" : "social", - "valid" : true - }, { "name" : "NameMC", "check_uri" : "https://namemc.com/search?q={account}", @@ -3403,17 +3569,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Mixi", - "check_uri" : "https://mixi.jp/view_community.pl?id={account}", - "account_existence_code" : "200", - "account_existence_string" : "| mixiコミュニティ", - "account_missing_string" : "データがありません", - "account_missing_code" : "200", - "known_accounts" : ["2854333", "19123"], - "category" : "social", - "valid" : true - }, { "name" : "Zillow", "check_uri" : "https://www.zillow.com/profile/{account}/", @@ -3436,17 +3591,6 @@ "category" : "shopping", "valid" : true }, - { - "name" : "Magix", - "check_uri" : "https://www.magix.info/us/users/profile/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "About me", - "account_missing_string" : "Page not found", - "account_missing_code" : "200", - "known_accounts" : ["baywolfmusic", "johnebaker"], - "category" : "music", - "valid" : true - }, { "name" : "Tunefind", "check_uri" : "https://www.tunefind.com/user/profile/{account}", @@ -3458,17 +3602,6 @@ "category" : "music", "valid" : true }, - { - "name" : "Moneysavingexpert", - "check_uri" : "https://forums.moneysavingexpert.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Profile", - "account_missing_string" : "User Not Found", - "account_missing_code" : "404", - "known_accounts" : ["Heathermck", "MallyGirl"], - "category" : "finance", - "valid" : true - }, { "name" : "Thetattooforum", "check_uri" : "https://www.thetattooforum.com/members/{account}/", @@ -3514,17 +3647,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Minds", - "check_uri" : "https://www.minds.com/{account}/", - "account_existence_code" : "200", - "account_existence_string" : ") | Minds", - "account_missing_string" : "Sorry, this channel doesn't appear to exist", - "account_missing_code" : "404", - "known_accounts" : ["Willieleev1971", "john"], - "category" : "political", - "valid" : true - }, { "name" : "NaturalNews", "check_uri" : "https://naturalnews.com/author/{account}/", @@ -3624,28 +3746,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Massage Anywhere", - "check_uri" : "https://www.massageanywhere.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "MassageAnywhere.com Profile for ", - "account_missing_string" : "<title>MassageAnywhere.com: Search Results", - "account_missing_code" : "200", - "known_accounts" : ["lorilmccluskey", "LomiNYC"], - "category" : "health", - "valid" : true - }, - { - "name" : "MapMyTracks", - "check_uri" : "https://www.mapmytracks.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Daily distance this week", - "account_missing_string" : "Outside together", - "account_missing_code" : "302", - "known_accounts" : ["ulirad", "CBSloan"], - "category" : "health", - "valid" : true - }, { "name" : "21buttons", "check_uri" : "https://www.21buttons.com/buttoner/{account}", @@ -3756,17 +3856,6 @@ "category" : "social", "valid" : true }, - { - "name" : "MAGA-CHAT", - "check_uri" : "https://maga-chat.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Recent Updates", - "account_missing_string" : "Page Not Be Found", - "account_missing_code" : "200", - "known_accounts" : ["Rich", "RjosephJr"], - "category" : "social", - "valid" : true - }, { "name" : "Our Freedom Book", "check_uri" : "https://www.ourfreedombook.com/{account}", @@ -3778,17 +3867,6 @@ "category" : "social", "valid" : true }, - { - "name" : "MAGABOOK", - "check_uri" : "https://magabook.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Recent Updates", - "account_missing_string" : "Page Not Be Found", - "account_missing_code" : "200", - "known_accounts" : ["PamelaElliott62", "eric"], - "category" : "social", - "valid" : true - }, { "name" : "SoliKick", "check_uri" : "https://solikick.com/-{account}", @@ -4421,17 +4499,6 @@ "valid" : true }, { - "name" : "mym.fans", - "check_uri" : "https://mym.fans/{account}", - "account_existence_code" : "200", - "account_existence_string" : "posts", - "account_missing_string" : "Il n’y a rien ici…", - "account_missing_code" : "404", - "known_accounts" : ["Djelizamay","Andysparkles"], - "category" : "social", - "valid" : true - }, - { "name" : "SpankPay", "check_uri" : "https://pay-api.spankchain.com/profiles/{account}?allowBlank=", "pretty_uri" : "https://spankpay.me/{account}", @@ -4623,17 +4690,6 @@ "category" : "shopping", "valid" : true }, - { - "name" : "memrise", - "check_uri" : "https://app.memrise.com/user/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "followers", - "account_missing_string" : "Memrise - Error", - "account_missing_code" : "404", - "known_accounts" : ["alice", "john"], - "category" : "hobby", - "valid" : true - }, { "name" : "wego", "check_uri" : "https://wego.social/{account}", @@ -4747,17 +4803,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "Mmorpg", - "check_uri" : "https://forums.mmorpg.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "MMORPG.com Forums", - "account_missing_string" : "404 Not Not_Found", - "account_missing_code" : "404", - "known_accounts" : ["TheDalaiBomba", "MadLovin"], - "category" : "gaming", - "valid" : true - }, { "name" : "Yazawaj", "check_uri" : "https://www.yazawaj.com/profile/{account}", @@ -4780,17 +4825,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "lichess", - "check_uri" : "https://lichess.org/@/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Activity", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["mohammed01", "mohammed03"], - "category" : "gaming", - "valid" : true - }, { "name" : "smelsy", "check_uri" : "https://www.smelsy.com/profile/{account}", From e8896aeea62921e23bb5d9f0f77f3bbabd6ec705 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Mon, 18 Jul 2022 16:34:48 -0400 Subject: [PATCH 011/104] Create codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 72 +++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..dc30c9f --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,72 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ "master" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "master" ] + schedule: + - cron: '17 19 * * 0' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'python' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 From fa29890ff5952e05ad90c7aa1fe1c12f3c543bf5 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Mon, 18 Jul 2022 16:39:20 -0400 Subject: [PATCH 012/104] Create security.md policy --- SECURITY.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..4ebe63e --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,6 @@ +# Security Policy + +## Reporting a Vulnerability + +To report a vulnerability, please create an [Issue](https://github.com/WebBreacher/WhatsMyName/issues) in this project or send +an email to `micah` `@` `spotliight-infosec.com` From 98a117b15a738a09e78ac8640f28fc84f86a9450 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Mon, 18 Jul 2022 16:43:13 -0400 Subject: [PATCH 013/104] Create Code of Conduct --- CODE_OF_CONDUCT.md | 128 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..b17910d --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,128 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +`micah` `@` `spotlight-infosec.com`. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. From 704deb96206bc91f1a94ad33616ad286b537e1e2 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Mon, 18 Jul 2022 16:49:07 -0400 Subject: [PATCH 014/104] Deleting old Code of Conduct and replacing it --- CODEOFCONDUCT.md | 84 ------------------------------------------------ 1 file changed, 84 deletions(-) delete mode 100644 CODEOFCONDUCT.md diff --git a/CODEOFCONDUCT.md b/CODEOFCONDUCT.md deleted file mode 100644 index 6d73f66..0000000 --- a/CODEOFCONDUCT.md +++ /dev/null @@ -1,84 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment for our community include: - -* Demonstrating empathy and kindness toward other people -* Being respectful of differing opinions, viewpoints, and experiences -* Giving and gracefully accepting constructive feedback -* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience -* Focusing on what is best not just for us as individuals, but for the overall community - -Examples of unacceptable behavior include: - -* The use of sexualized language or imagery, and sexual attention or - advances of any kind -* Trolling, insulting or derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or email - address, without their explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Enforcement Responsibilities - -Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. - -Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [whatsmyname '@' osint.ninja]. All complaints will be reviewed and investigated promptly and fairly. - -All community leaders are obligated to respect the privacy and security of the reporter of any incident. - -## Enforcement Guidelines - -Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: - -### 1. Correction - -**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. - -**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. - -### 2. Warning - -**Community Impact**: A violation through a single incident or series of actions. - -**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. - -### 3. Temporary Ban - -**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. - -**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. - -### 4. Permanent Ban - -**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. - -**Consequence**: A permanent ban from any sort of public interaction within the community. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, -available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. - -Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see the FAQ at -https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. From 917a4782d312e63c82fc227488ba5071618e8a7b Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Mon, 18 Jul 2022 23:29:49 +0200 Subject: [PATCH 015/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index 8cd71f2..7c036b7 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -619,6 +619,17 @@ "category" : "tech", "valid" : true }, + { + "name" : "clusterdafrica", + "check_uri" : "https://clusterdafrica.com/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "Membre depuis -", + "account_missing_string" : "- Page non trouvée!", + "account_missing_code" : "302", + "known_accounts" : ["mamadou", "konate"], + "category" : "social", + "valid" : true + }, { "name" : "cnet", "check_uri" : "https://www.cnet.com/profiles/{account}/", From be3f02f6e855e929258be9d924c2843cab5d3e2f Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Tue, 19 Jul 2022 03:43:32 +0200 Subject: [PATCH 016/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index 7c036b7..4cdd61e 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2359,6 +2359,17 @@ "category" : "tech", "valid" : true }, + { + "name" : "pikabu", + "check_uri" : "https://pikabu.ru/@{account}", + "account_existence_code" : "200", + "account_existence_string" : "— все посты пользователя", + "account_missing_string" : "404. Страница не найдена", + "account_missing_code" : "404", + "known_accounts" : ["igor01", "serguei"], + "category" : "social", + "valid" : true + }, { "name" : "Poll Everywhere", "check_uri" : "https://pollev.com/proxy/api/users/{account}", From abe3d14891fdd492648daa918ba6b283a5a670fc Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Tue, 19 Jul 2022 13:20:59 +0200 Subject: [PATCH 017/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index 4cdd61e..b8a6111 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2415,6 +2415,17 @@ "category" : "music", "valid" : true }, + { + "name" : "public", + "check_uri" : "https://public.com/@{account}", + "account_existence_code" : "200", + "account_existence_string" : ") Investment Portfolio on Public", + "account_missing_string" : "04 - Page Not Found - Public ", + "account_missing_code" : "404", + "known_accounts" : ["igor1", "david2"], + "category" : "finance", + "valid" : true + }, { "name" : "redbubble", "check_uri" : "https://www.redbubble.com/people/{account}/shop?ref=artist_title_name%2F", From edf3ca17b6e3384109e6279c6ae8d0e6433462d0 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Tue, 19 Jul 2022 13:21:29 +0200 Subject: [PATCH 018/104] Update web_accounts_list.json --- web_accounts_list.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index b8a6111..bb49e07 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2425,7 +2425,7 @@ "known_accounts" : ["igor1", "david2"], "category" : "finance", "valid" : true - }, + }, { "name" : "redbubble", "check_uri" : "https://www.redbubble.com/people/{account}/shop?ref=artist_title_name%2F", From 121f736b685a6428f38053cd6e02d2d9bae67cdb Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Tue, 19 Jul 2022 18:02:37 +0200 Subject: [PATCH 019/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index bb49e07..0ae990e 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2437,6 +2437,17 @@ "category" : "shopping", "valid" : true }, + { + "name" : "risk", + "check_uri" : "https://risk.ru/people/{account}", + "account_existence_code" : "200", + "account_existence_string" : "— Люди — Risk.ru", + "account_missing_string" : "404 — Risk.ru", + "account_missing_code" : "404", + "known_accounts" : ["igor1", "olga"], + "category" : "hobby", + "valid" : true + }, { "name" : "Shanii Writes", "check_uri" : "https://forum.shanniiwrites.com/u/{account}/summary.json", From 287a71476c0edb46a25b21be73be26279f49a602 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Tue, 19 Jul 2022 19:56:29 +0200 Subject: [PATCH 020/104] Update web_accounts_list.json --- web_accounts_list.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index 0ae990e..a6c5328 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2438,7 +2438,7 @@ "valid" : true }, { - "name" : "risk", + "name" : "risk.ru", "check_uri" : "https://risk.ru/people/{account}", "account_existence_code" : "200", "account_existence_string" : "— Люди — Risk.ru", From 9f9c34d06a58a13a8e84e6ca187cad4896c3bb44 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Tue, 19 Jul 2022 23:24:41 +0200 Subject: [PATCH 021/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index a6c5328..4ddf24d 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2404,6 +2404,17 @@ "category" : "gaming", "valid" : true }, + { + "name" : "postcrossing", + "check_uri" : "https://www.postcrossing.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : ", from", + "account_missing_string" : "- Postcrossing", + "account_missing_code" : "404", + "known_accounts" : ["Vladimir", "olga3"], + "category" : "social", + "valid" : true + }, { "name" : "promodj", "check_uri" : "https://promodj.com/{account}", From 4e92ecdaa9e8ebaa1d986203d8b42fb4e21fc9d8 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Tue, 19 Jul 2022 18:36:28 -0400 Subject: [PATCH 022/104] Creating the GitHub action for validating JSON --- .github/workflows/validate-json.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/validate-json.yml diff --git a/.github/workflows/validate-json.yml b/.github/workflows/validate-json.yml new file mode 100644 index 0000000..8d50117 --- /dev/null +++ b/.github/workflows/validate-json.yml @@ -0,0 +1,14 @@ +name: Validate JSON + +on: [pull_request] + +jobs: + verify-json-validation: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Validate JSON + uses: docker://orrosenblatt/validate-json-action:latest + env: + INPUT_SCHEMA: /schema.json + INPUT_JSONS: /web_accounts_list.json /sample.json From 1c21f07bc7cd9e35346ec24398a0187a0cdf9703 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Tue, 19 Jul 2022 18:37:12 -0400 Subject: [PATCH 023/104] Adding the schema file for the JSON files --- schema.json | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 schema.json diff --git a/schema.json b/schema.json new file mode 100644 index 0000000..adf952e --- /dev/null +++ b/schema.json @@ -0,0 +1,70 @@ +// 20220719183637 +// https://raw.githubusercontent.com/myresearch-acct1/WhatsMyName/master/schema.json + +{ + "type": "object", + "required": [ + + ], + "properties": { + "license": { + "type": "array", + "items": { + "type": "string" + } + }, + "authors": { + "type": "array", + "items": { + "type": "string" + } + }, + "categories": { + "type": "array", + "items": { + "type": "string" + } + }, + "sites": { + "type": "array", + "items": { + "type": "object", + "required": [ + + ], + "properties": { + "name": { + "type": "string" + }, + "check_uri": { + "type": "string" + }, + "account_existence_code": { + "type": "string" + }, + "account_existence_string": { + "type": "string" + }, + "account_missing_string": { + "type": "string" + }, + "account_missing_code": { + "type": "string" + }, + "known_accounts": { + "type": "array", + "items": { + "type": "string" + } + }, + "category": { + "type": "string" + }, + "valid": { + "type": "boolean" + } + } + } + } + } +} From a8c6ebea88185cfd816b9c75674e106900044cdc Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Wed, 20 Jul 2022 16:12:04 +0200 Subject: [PATCH 024/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index 4ddf24d..d40a2fb 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -232,6 +232,17 @@ "category" : "social", "valid" : true }, + { + "name" : "au.ru", + "check_uri" : "https://au.ru/user/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Лоты пользователя ", + "account_missing_string" : "Пользователь не найден", + "account_missing_code" : "404", + "known_accounts" : ["Svetlana7", "nastya"], + "category" : "misc", + "valid" : true + }, { "name" : "Audiojungle", "check_uri" : "https://audiojungle.net/user/{account}", From 7e84fb57ce9d8b1117be9c0d32025b42f39cf844 Mon Sep 17 00:00:00 2001 From: OSINT Tactical <104733166+C3n7ral051nt4g3ncy@users.noreply.github.com> Date: Wed, 20 Jul 2022 16:12:58 +0200 Subject: [PATCH 025/104] Update web_accounts_list.json --- web_accounts_list.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web_accounts_list.json b/web_accounts_list.json index d40a2fb..59c1167 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -795,6 +795,17 @@ "category" : "video", "valid" : true }, + { + "name" : "darudar", + "check_uri" : "https://darudar.org/users/{account}/", + "account_existence_code" : "200", + "account_existence_string" : ". Дарудар", + "account_missing_string" : "404. Дару~дар: миру~мир!", + "account_missing_code" : "404", + "known_accounts" : ["svetlana7", "igor"], + "category" : "misc", + "valid" : true + }, { "name" : "datezone", "check_uri" : "https://www.datezone.com/users/{account}/", From be7d9d2514919917df9c1337a96358bfac413a21 Mon Sep 17 00:00:00 2001 From: WebBreacher Date: Wed, 20 Jul 2022 11:46:42 -0400 Subject: [PATCH 026/104] Update schema.json added header info --- schema.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/schema.json b/schema.json index adf952e..6a64402 100644 --- a/schema.json +++ b/schema.json @@ -1,7 +1,7 @@ -// 20220719183637 -// https://raw.githubusercontent.com/myresearch-acct1/WhatsMyName/master/schema.json - { + "$schema": "http://json-schema.org/draft-04/schema#", + "title": "WhatsMyName JSON File", + "description": "A site that should be checked for usernames.", "type": "object", "required": [ From 7126b2a3fe3c00f4ba38c3f79c04529d08b7a692 Mon Sep 17 00:00:00 2001 From: spotlightc <109301750+cami325@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:33:50 -0400 Subject: [PATCH 027/104] Alphabetized N --- web_accounts_list.json | 297 +++++++++++------------------------------ 1 file changed, 76 insertions(+), 221 deletions(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index 59c1167..e984d5e 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2326,16 +2326,82 @@ "category" : "social", "valid" : true }, - { - "name" : "Newgrounds", - "check_uri" : "https://{account}.newgrounds.com/", - "account_existence_code" : "200", - "account_existence_string" : "fans", - "account_missing_string" : "Whoops, that's a swing and a miss!", - "account_missing_code" : "404", - "known_accounts" : ["john", "bob"], - "category" : "gaming", - "valid" : true + { + "name" : "NameMC", + "check_uri" : "https://namemc.com/search?q={account}", + "account_existence_code" : "200", + "account_existence_string" : "Status: Unavailable", + "account_missing_string" : "Status: Available*", + "account_missing_code" : "200", + "known_accounts" : ["alice", "bob"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "nairaland", + "check_uri" : "https://www.nairaland.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s Profile", + "account_missing_string" : "404: Page Not Found", + "account_missing_code" : "301", + "known_accounts" : ["amakaone", "seun"], + "category" : "news", + "valid" : true + }, + { + "name" : "NaturalNews", + "check_uri" : "https://naturalnews.com/author/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "All posts by", + "account_missing_string" : "The page you are looking for cannot be found or is no longer available.", + "account_missing_code" : "200", + "known_accounts" : ["jdheyes", "healthranger"], + "category" : "political", + "valid" : true + }, + { + "name" : "Naver", + "check_uri" : "https://blog.naver.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : ": 네이버 블로그", + "account_missing_string" : "페이지를 찾을 수 없습니다", + "account_missing_code" : "500", + "known_accounts" : ["bob", "blue"], + "category" : "social", + "valid" : true + }, + { + "name" : "netvibes", + "check_uri" : "https://www.netvibes.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "userId", + "account_missing_string" : "Page not found", + "account_missing_code" : "404", + "known_accounts" : ["nebkacrea", "cdiljda"], + "category" : "social", + "valid" : true + }, + { + "name" : "Newgrounds", + "check_uri" : "https://{account}.newgrounds.com/", + "account_existence_code" : "200", + "account_existence_string" : "fans", + "account_missing_string" : "Whoops, that's a swing and a miss!", + "account_missing_code" : "404", + "known_accounts" : ["john", "bob"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "NotABug", + "check_uri" : "https://notabug.org/{account}", + "account_existence_code" : "200", + "account_existence_string" : "followers and is following", + "account_missing_string" : "Not Found", + "account_missing_code" : "404", + "known_accounts" : ["notabug", "hp", "zPlus"], + "category" : "coding", + "valid" : true }, { "name" : "ok.ru", @@ -2625,184 +2691,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "ImageShack", - "check_uri" : "https://imageshack.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s Images", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["test"], - "category" : "images", - "valid" : true - }, - { - "name" : "iMGSRC.RU", - "check_uri" : "https://imgsrc.ru/main/user.php?lang=ru&user={account}", - "account_existence_code" : "200", - "account_existence_string" : "Присоединился", - "account_missing_string" : "", - "account_missing_code" : "302", - "known_accounts" : ["natalisn","andydiamond","natalyck"], - "category" : "images", - "valid" : true - }, - { - "name" : "imgur", - "check_uri" : "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", - "pretty_uri" : "https://imgur.com/user/{account}/about", - "account_existence_code" : "200", - "account_existence_string" : "created_at", - "account_missing_string" : "unable to find account", - "account_missing_code" : "404", - "known_accounts" : ["OliverClothesoff70", "DadOnTheInternet"], - "category" : "images", - "valid" : true - }, - { - "name" : "InkBunny", - "check_uri" : "https://inkbunny.net/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Profile | Inkbunny, the Furry Art Community", - "account_missing_string" : "Members | Inkbunny, the Furry Art Community", - "account_missing_code" : "302", - "known_accounts" : ["AdminBunny", "test"], - "category" : "XXXPORNXXX", - "valid" : true - }, - { - "name" : "InsaneJournal", - "check_uri" : "https://{account}.insanejournal.com/profile", - "account_existence_code" : "200", - "account_existence_string" : "User:", - "account_missing_string" : "The requested URL /profile was not found on this server", - "account_missing_code" : "200", - "known_accounts" : ["test", "pint-sized", "acroamatica"], - "category" : "social", - "valid" : true - }, - { - "name" : "instructables", - "check_uri" : "https://www.instructables.com/member/{account}/", - "account_existence_code" : "200", - "account_existence_string" : ">Joined", - "account_missing_string" : "", - "account_missing_code" : "404", - "known_accounts" : ["davidandora", "test"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "Internet Archive Account", - "check_uri" : "https://archive.org/details/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "User Account", - "account_missing_string" : "<title>cannot find account", - "account_missing_code" : "200", - "known_accounts" : ["webbreacher", "jason_scott"], - "category" : "misc", - "valid" : true - }, - { - "name" : "Internet Archive User Search", - "check_uri" : "https://archive.org/search.php?query={account}", - "account_existence_code" : "200", - "account_existence_string" : "<!--/.item-ia-->", - "account_missing_string" : "", - "account_missing_code" : "200", - "known_accounts" : ["test", "mubix"], - "category" : "misc", - "valid" : true - }, - { - "name" : "interpals", - "check_uri" : "https://www.interpals.net/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Looking for", - "account_missing_string" : "User not found", - "account_missing_code" : "200", - "known_accounts" : ["test"], - "category" : "dating", - "valid" : true - }, - { - "name" : "Last.fm", - "check_uri" : "https://www.last.fm/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : "scrobbling since", - "account_missing_string" : "Whoops! Sorry, but this page doesn't exist.", - "account_missing_code" : "404", - "known_accounts" : ["test"], - "category" : "music", - "valid" : true - }, - { - "name" : "LibraryThing", - "check_uri" : "https://www.librarything.com/profile/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Collections", - "account_missing_string" : "Error: This user doesn't exist", - "account_missing_code" : "200", - "known_accounts" : ["test", "john"], - "category" : "hobby", - "valid" : true - }, - { - "name" : "LINE", - "check_uri" : "https://line.me/R/ti/p/@{account}?from=page", - "account_existence_code" : "200", - "account_existence_string" : "Add LINE Friends via QR Code", - "account_missing_code" : "404", - "account_missing_string" : "404 Not Found", - "known_accounts" : [ "roseareal", "yoasobi" ], - "category" : "social", - "valid" : true - }, - { - "name" : "Livejournal", - "check_uri" : "https://{account}.livejournal.com", - "account_existence_code" : "200", - "account_existence_string" : "<link rel=\"canonical\" href=\"", - "account_missing_string" : "<title>Unknown Journal", - "account_missing_code" : "404", - "known_accounts" : ["jill", "john"], - "allowed_types" : ["String","Person","WebAccount","Username"], - "category" : "blog", - "valid" : true - }, - { - "name" : "NameMC", - "check_uri" : "https://namemc.com/search?q={account}", - "account_existence_code" : "200", - "account_existence_string" : "Status: Unavailable", - "account_missing_string" : "Status: Available*", - "account_missing_code" : "200", - "known_accounts" : ["alice", "bob"], - "category" : "gaming", - "valid" : true - }, - { - "name" : "netvibes", - "check_uri" : "https://www.netvibes.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "userId", - "account_missing_string" : "Page not found", - "account_missing_code" : "404", - "known_accounts" : ["nebkacrea", "cdiljda"], - "category" : "social", - "valid" : true - }, - { - "name" : "NotABug", - "check_uri" : "https://notabug.org/{account}", - "account_existence_code" : "200", - "account_existence_string" : "followers and is following", - "account_missing_string" : "Not Found", - "account_missing_code" : "404", - "known_accounts" : ["notabug", "hp", "zPlus"], - "category" : "coding", - "valid" : true - }, { "name" : "OpenStreetMap", "check_uri" : "https://www.openstreetmap.org/user/{account}", @@ -3724,17 +3612,6 @@ "category" : "social", "valid" : true }, - { - "name" : "NaturalNews", - "check_uri" : "https://naturalnews.com/author/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "All posts by", - "account_missing_string" : "The page you are looking for cannot be found or is no longer available.", - "account_missing_code" : "200", - "known_accounts" : ["jdheyes", "healthranger"], - "category" : "political", - "valid" : true - }, { "name" : "thegatewaypundit", "check_uri" : "https://www.thegatewaypundit.com/author/{account}/", @@ -3812,17 +3689,6 @@ "category" : "social", "valid" : true }, - { - "name" : "Naver", - "check_uri" : "https://blog.naver.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : ": 네이버 블로그", - "account_missing_string" : "페이지를 찾을 수 없습니다", - "account_missing_code" : "500", - "known_accounts" : ["bob", "blue"], - "category" : "social", - "valid" : true - }, { "name" : "21buttons", "check_uri" : "https://www.21buttons.com/buttoner/{account}", @@ -4723,17 +4589,6 @@ "category" : "gaming", "valid" : true }, - { - "name" : "nairaland", - "check_uri" : "https://www.nairaland.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "s Profile", - "account_missing_string" : "404: Page Not Found", - "account_missing_code" : "301", - "known_accounts" : ["amakaone", "seun"], - "category" : "news", - "valid" : true - }, { "name" : "tradingview", "check_uri" : "https://www.tradingview.com/u/{account}/", From 0d3ca5e10e753dc08588166cbbdfed3505095dd9 Mon Sep 17 00:00:00 2001 From: spotlightc <109301750+cami325@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:52:53 -0400 Subject: [PATCH 028/104] Alphabetized O and P --- web_accounts_list.json | 678 ++++++++++++++++++++--------------------- 1 file changed, 332 insertions(+), 346 deletions(-) diff --git a/web_accounts_list.json b/web_accounts_list.json index e984d5e..0b471e1 100644 --- a/web_accounts_list.json +++ b/web_accounts_list.json @@ -2425,6 +2425,17 @@ "category" : "finance", "valid" : true }, + { + "name" : "OpenStreetMap", + "check_uri" : "https://www.openstreetmap.org/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Mapper since:", + "account_missing_string" : "does not exist", + "account_missing_code" : "404", + "known_accounts" : ["kemkim"], + "category" : "social", + "valid" : true + }, { "name" : "Orbys", "check_uri" : "https://orbys.net/{account}", @@ -2437,71 +2448,337 @@ "valid" : true }, { - "name" : "PCPartPicker", - "check_uri" : "https://pcpartpicker.com/user/{account}/", - "account_existence_code" : "200", - "account_existence_string" : "class=\"active\"", - "account_missing_string" : "The page you requested could not be found.", - "account_missing_code" : "404", - "known_accounts" : ["john", "bob"], - "category" : "tech", - "valid" : true + "name" : "osu!", + "check_uri" : "https://osu.ppy.sh/users/{account}", + "account_existence_code" : "302", + "account_existence_string" : "", + "account_missing_string" : "User not found! ;_;", + "account_missing_code" : "404", + "known_accounts" : ["stretches", "spiken8"], + "category" : "gaming", + "valid" : true }, { - "name" : "pikabu", - "check_uri" : "https://pikabu.ru/@{account}", - "account_existence_code" : "200", - "account_existence_string" : "— все посты пользователя", - "account_missing_string" : "404. Страница не найдена", - "account_missing_code" : "404", - "known_accounts" : ["igor01", "serguei"], - "category" : "social", - "valid" : true + "name" : "Our Freedom Book", + "check_uri" : "https://www.ourfreedombook.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "meta property=\"og:", + "account_missing_string" : "Sorry, page not found", + "account_missing_code" : "302", + "known_accounts" : ["DaveLipsky", "StarlaJene"], + "category" : "social", + "valid" : true }, { - "name" : "Poll Everywhere", - "check_uri" : "https://pollev.com/proxy/api/users/{account}", - "pretty_uri" : "https://pollev.com/{account}", - "account_existence_code" : "200", - "account_existence_string" : "name", - "account_missing_string" : "ResourceNotFound", - "account_missing_code" : "404", - "known_accounts" : ["josh", "jsmith"], - "category" : "tech", - "valid" : true + "name" : "ow.ly", + "check_uri" : "http://ow.ly/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Images", + "account_missing_string" : "404 error", + "account_missing_code" : "404", + "known_accounts" : ["StopAdMedia", "jokervendetti"], + "category" : "social", + "valid" : true }, { - "name" : "pokemonshowdown", - "check_uri" : "https://pokemonshowdown.com/users/{account}", - "account_existence_code" : "200", - "account_existence_string" : "Official ladder", - "account_missing_string" : " (Unregistered)", - "account_missing_code" : "404", - "known_accounts" : ["red", "blue"], - "category" : "gaming", - "valid" : true + "name" : "Parler", + "check_uri" : "https://parler.com/user/{account}", + "account_existence_code" : "200", + "account_existence_string" : "People to Follow", + "account_missing_string" : "join Parler today", + "account_missing_code" : "302", + "known_accounts" : ["DineshDsouza", "SeanHannity"], + "category" : "social", + "valid" : true }, { - "name" : "Pokerstrategy", - "check_uri" : "http://www.pokerstrategy.net/user/{account}/profile/", - "account_existence_code" : "200", - "account_existence_string" : "User profile for", - "account_missing_string" : "Sorry, the requested page couldn't be found!", - "account_missing_code" : "404", - "known_accounts" : ["john", "bob"], - "category" : "gaming", - "valid" : true + "name" : "Parler archived profile", + "check_uri" : "http://archive.org/wayback/available?url=https://parler.com/profile/{account}", + "pretty_uri" : "https://web.archive.org/web/2/https://parler.com/profile/{account}", + "account_existence_code" : "200", + "account_existence_string" : "\"archived_snapshots\": {\"closest\"", + "account_missing_string" : "\"archived_snapshots\": {}", + "account_missing_code" : "200", + "known_accounts" : ["JoePags", "dineshdsouza"], + "category" : "archived", + "valid" : true + }, + { + "name" : "Parler archived posts", + "check_uri" : "http://archive.org/wayback/available?url=https://parler.com/profile/{account}/posts", + "pretty_uri" : "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts", + "account_existence_code" : "200", + "account_existence_string" : "\"archived_snapshots\": {\"closest\"", + "account_missing_string" : "\"archived_snapshots\": {}", + "account_missing_code" : "200", + "known_accounts" : ["JoePags", "dineshdsouza"], + "category" : "archived", + "valid" : true }, { - "name" : "postcrossing", - "check_uri" : "https://www.postcrossing.com/user/{account}", - "account_existence_code" : "200", - "account_existence_string" : ", from", - "account_missing_string" : "- Postcrossing", - "account_missing_code" : "404", - "known_accounts" : ["Vladimir", "olga3"], - "category" : "social", - "valid" : true + "name" : "Pastebin", + "check_uri" : "https://pastebin.com/u/{account}", + "account_existence_code" : "200", + "account_existence_string" : "'s Pastebin", + "account_missing_string" : "", + "account_missing_code" : "404", + "known_accounts" : ["test", "john"], + "category" : "tech", + "valid" : true + }, + { + "name" : "PatientsLikeMe", + "check_uri" : "https://www.patientslikeme.com/members/{account}", + "account_existence_code" : "200", + "account_existence_string" : "s profile | PatientsLikeMe", + "account_missing_string" : "", + "account_missing_code" : "302", + "known_accounts" : ["thjuland", "Pedro0703", "Hydropioneer"], + "category" : "health", + "valid" : true + }, + { + "name" : "Patreon", + "check_uri" : "https://www.patreon.com/{account}", + "account_existence_code" : "200", + "account_existence_string" : "Become a patron of", + "account_missing_string" : "Oh no! Looks like you got lost.", + "account_missing_code" : "404", + "known_accounts" : ["mubix", "doughboys"], + "category" : "finance", + "valid" : true + }, + { + "name": "Patronite", + "check_uri": "https://patronite.pl/{account}", + "account_existence_code": "200", + "account_existence_string": "Zostań Patronem", + "account_missing_string": "Nie znaleźliśmy strony której szukasz.", + "account_missing_code": "404", + "known_accounts": ["radio357", "radionowyswiat"], + "category": "finance", + "valid": true + }, + { + "name" : "PCGamer", + "check_uri" : "https://forums.pcgamer.com/members/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "Joined", + "account_missing_string" : "Oops! We ran into some problems", + "account_missing_code" : "404", + "known_accounts" : ["volley.302", "cjmariani.94198", "cholidsnake.2334"], + "category" : "gaming", + "valid" : true + }, + { + "name" : "PCPartPicker", + "check_uri" : "https://pcpartpicker.com/user/{account}/", + "account_existence_code" : "200", + "account_existence_string" : "class=\"active\"", + "account_missing_string" : "The page you requested could not be found.", + "account_missing_code" : "404", + "known_accounts" : ["john", "bob"], + "category" : "tech", + "valid" : true + }, + { + "name" : "Periscope", + "check_uri" : "https://www.periscope.tv/{account}", + "account_existence_code" : "200", + "account_existence_string" : "