From 09931fe30a63a2e46fe129bc5df801cf699f7e8f Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Sat, 24 May 2025 13:36:59 +0300 Subject: [PATCH 01/18] Create sort-format-json.yml --- .github/workflows/sort-format-json.yml | 85 ++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 .github/workflows/sort-format-json.yml diff --git a/.github/workflows/sort-format-json.yml b/.github/workflows/sort-format-json.yml new file mode 100644 index 0000000..37aa0c5 --- /dev/null +++ b/.github/workflows/sort-format-json.yml @@ -0,0 +1,85 @@ +name: Sort and Format wmn-data.json + +on: + push: + paths: + - 'wmn-data.json' + - 'wmn-data-schema.json' + +jobs: + sort-json: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Create sorting script + run: | + cat << 'EOF' > sort-wmn-data.js + const fs = require('fs'); + + const dataPath = 'wmn-data.json'; + const schemaPath = 'wmn-data-schema.json'; + + const data = JSON.parse(fs.readFileSync(dataPath, 'utf8')); + const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8')); + + // ---------- Sorting Helpers ---------- + function sortArrayAlphabetically(arr) { + return arr.sort((a, b) => a.localeCompare(b)); + } + + function reorderObjectKeys(obj, keyOrder) { + const reordered = {}; + keyOrder.forEach(key => { + if (key in obj) reordered[key] = obj[key]; + }); + Object.keys(obj).forEach(key => { + if (!keyOrder.includes(key)) reordered[key] = obj[key]; + }); + return reordered; + } + + // ---------- Extract Schema Key Order ---------- + const siteSchema = schema.properties?.sites?.items; + const keyOrder = Array.isArray(siteSchema?.required) ? siteSchema.required : []; + + // ---------- Sort authors and categories ---------- + if (Array.isArray(data.authors)) { + data.authors = sortArrayAlphabetically(data.authors); + } + + if (Array.isArray(data.categories)) { + data.categories = sortArrayAlphabetically(data.categories); + } + + // ---------- Sort and Reorder Sites ---------- + if (Array.isArray(data.sites)) { + data.sites.sort((a, b) => a.name.localeCompare(b.name)); + data.sites = data.sites.map(site => reorderObjectKeys(site, keyOrder)); + } + + fs.writeFileSync(dataPath, JSON.stringify(data, null, 2)); + console.log('wmn-data.json sorted and reordered according to schema'); + EOF + + - name: Install Prettier + run: npm install --global prettier + + - name: Run sorting script and format + run: | + node sort-wmn-data.js + prettier --write wmn-data.json + + - name: Commit if changed + run: | + git config --global user.name "github-actions" + git config --global user.email "github-actions@github.com" + git add wmn-data.json + git diff --cached --quiet || git commit -m "chore: auto-sort wmn-data.json by schema" + git push From 06809c67eadea3926f98d18eec2948355d5f3b1d Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Sat, 24 May 2025 14:01:45 +0300 Subject: [PATCH 02/18] Adding uri_pretty to the schema --- wmn-data-schema.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/wmn-data-schema.json b/wmn-data-schema.json index 42eabca..8b801a7 100644 --- a/wmn-data-schema.json +++ b/wmn-data-schema.json @@ -99,6 +99,16 @@ ], "pattern": "^.*$" }, + "uri_pretty": { + "$id": "#root/sites/items/uri_check", + "title": "Uri_pretty", + "type": "string", + "default": "", + "examples": [ + "https://101010.pl/@{account}" + ], + "pattern": "^.*$" + }, "post_body": { "$id": "#root/sites/items/post_body", "title": "Post_body", From 00b18c66aaf2a3c93c37f2f150b5fe5c4dca6d2e Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 24 May 2025 11:02:01 +0000 Subject: [PATCH 03/18] chore: auto-sort wmn-data.json by schema --- wmn-data.json | 14962 ++++++++++++++++++++++++------------------------ 1 file changed, 7510 insertions(+), 7452 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 94be686..ef786f1 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -1,7452 +1,7510 @@ -{ - "license" : ["Copyright (C) 2025 Micah Hoffman", - "This work is licensed under the Creative Commons Attribution-ShareAlike", - "4.0 International License. To view a copy of this license, visit", - "http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to", - "Creative Commons, PO Box 1866, Mountain View, CA 94042, USA."], - "authors" : ["Micah Hoffman", "0x9404", "3xp0rt", "alexisthereal", "alvaromaltrain", - "arin17bishwa", "AXRoux", "balestek", "Brenden2008", "C3n7ral051nt4g3ncy", - "degun-osint", "End of interactive chart.", "fres621", "Its-Just-Nans", "Itsoon", - "janhalendk", "K2SOsint", "maxk096", "ni5arga", "p1ngul1n0", "Paradoxxs", - "serdaraltin", "SlopeSlayer910", "SorkoPiko", "TikvahTerminator", - "Contributions since 2023-12"], - "categories" : ["archived","art","blog","business","coding","dating","finance","gaming","health", - "hobby","images","misc","music","news","political","search","shopping","social", - "tech","video","xx NSFW xx"], - "sites" : [ - { - "name" : "Mastodon-101010.pl", - "uri_check" : "https://101010.pl/@{account}", - "e_code" : 200, - "e_string" : "@101010.pl", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["szekspir", "xaphanpl"], - "cat" : "social" - }, - { - "name" : "3DNews", - "uri_check" : "https://forum.3dnews.tech/member.php?username={account}", - "e_code" : 200, - "e_string" : "Просмотр профиля:", - "m_string" : "Пользователь не зарегистрирован", - "m_code" : 200, - "known" : ["bob", "red"], - "cat" : "social" - }, - { - "name" : "247sports", - "uri_check" : "https://247sports.com/User/{account}/", - "e_code" : 200, - "e_string" : "247Sports", - "m_code" : 404, - "known" : ["bob", "john"], - "cat" : "hobby" - }, - { - "name" : "35photo", - "uri_check" : "https://35photo.pro/@{account}/", - "e_code" : 200, - "e_string" : "Ошибка / 7dach.ru", - "m_code" : 404, - "known" : ["lana", "svetlana"], - "cat" : "social" - }, - { - "name" : "21buttons", - "uri_check" : "https://www.21buttons.com/buttoner/{account}", - "e_code" : 200, - "e_string" : "profile-info__profile-data__name", - "m_string" : "This is not the page you're looking for", - "m_code" : 404, - "known" : ["patricialmendro", "ginamariahoffmann", "espeworkout"], - "cat" : "social" - }, - { - "name" : "about.me", - "uri_check" : "https://about.me/{account}", - "e_code" : 200, - "e_string" : " | about.me", - "m_string" : "about.me", - "m_code" : 404, - "known" : ["john", "jill"], - "cat" : "social" - }, - { - "name" : "ACF", - "uri_check" : "https://support.advancedcustomfields.com/forums/users/{account}/", - "e_code" : 200, - "e_string" : "ACF Support", - "m_string" : "Page Not Found", - "m_code" : 200, - "known" : ["mike", "greg"], - "cat" : "coding" - }, - { - "name" : "AdmireMe.VIP", - "uri_check" : "https://admireme.vip/{account}/", - "e_code" : 200, - "e_string" : "creator-stat subscriber", - "m_string" : "<title>Page Not Found |", - "m_code" : 404, - "known" : ["justjessicarabbit", "savannah250xo"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Adult_Forum", - "uri_check" : "https://adultforum.gr/{account}-glamour-escorts/", - "e_code" : 200, - "e_string" : "Glamour Escorts ", - "m_string" : "Page not found - Adult Forum Gr", - "m_code" : 404, - "known" : ["nastya3", "ekaterina"], - "cat" : "xx NSFW xx" - }, - { - "name" : "adultism", - "uri_check" : "https://www.adultism.com/profile/{account}", - "e_code" : 200, - "e_string" : "Last login:", - "m_string" : "<title> Not Found", - "m_code" : 404, - "known" : ["laura", "sara"], - "cat" : "xx NSFW xx" - }, - { - "name" : "ADVFN", - "uri_check" : "https://uk.advfn.com/forum/profile/{account}", - "e_code" : 200, - "e_string" :"Profile | ADVFN", - "m_string" : "ADVFN ERROR - Page Not Found", - "m_code" : 404, - "known" : ["crypto", "crypto1"], - "cat" : "finance" - }, - { - "name" : "Airline_Pilot_Life", - "uri_check" : "https://airlinepilot.life/u/{account}.json", - "uri_pretty" : "https://airlinepilot.life/u/{account}", - "e_code" : 200, - "e_string" : "primary_group_name", - "m_string" : "he requested URL or resource could not be found.", - "m_code" : 404, - "known" : ["hannah", "addison"], - "cat" : "social" - }, - { - "name" : "Airliners", - "uri_check" : "https://www.airliners.net/user/{account}/profile", - "e_code" : 200, - "e_string" : "'s Profile | Airliners Members | Airliners.net", - "m_string" : "An Error Occurred", - "m_code" : 404, - "known" : ["pilot", "pilota"], - "cat" : "social" - }, - { - "name" : "akniga", - "uri_check" : "https://akniga.org/profile/{account}", - "e_code" : 200, - "e_string" : " - Аудиокниги Клуб</title", - "m_string" : "К сожалению, такой страницы не существует. Вероятно, она была удалена с сервера, либо ее здесь никогда не было.", - "m_code" : 200, - "known" : ["bob", "blue"], - "cat" : "hobby" - }, - { - "name" : "Albicla", - "uri_check" : "https://albicla.com/{account}/post/1", - "uri_pretty" : "https://albicla.com/{account}", - "e_code" : 500, - "e_string" : "500 Post tymczasowo niedostępny", - "m_string" : "404 Nie znaleziono użytkownika", - "m_code" : 200, - "known" : ["GazetaPolska", "GPCodziennie"], - "cat" : "social" - }, - { - "name" : "alik", - "uri_check" : "https://www.alik.cz/u/{account}", - "e_code" : 200, - "e_string" : "Vizitka – Alík.cz", - "m_string" : "Vizitka nenalezena", - "m_code" : 404, - "known" : ["igor", "pavel"], - "cat" : "social" - }, - { - "name" : "allmylinks", - "uri_check" : "https://allmylinks.com/{account}", - "e_code" : 200, - "e_string" : "message", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["blue", "goddessbecca"], - "cat" : "social" - }, - { - "name" : "Alura", - "uri_check" : "https://cursos.alura.com.br/user/{account}", - "e_code" : 200, - "e_string" : "Perfil de", - "m_string" : "\"error\":\"Not Found\"", - "m_code" : 404, - "known" : ["edmilson", "jonathan"], - "cat" : "tech" - }, - { - "name" : "Ameblo", - "uri_check" : "https://ameblo.jp/{account}", - "e_code" : 200, - "e_string" : "画像一覧", - "m_string" : "削除された可能性がございます。", - "m_code" : 404, - "known" : ["ereko-blog", "senpai"], - "cat" : "blog" - }, - { - "name" : "AmericanThinker", - "uri_check" : "https://www.americanthinker.com/author/{account}/", - "e_code" : 200, - "e_string" : "Articles &", - "m_string" : "American Thinker", - "m_code" : 301, - "known" : ["terrypaulding", "monicashowalter"], - "cat" : "political" - }, - { - "name" : "Anime-Planet", - "uri_check" : "https://www.anime-planet.com/api/validation/username", - "uri_pretty" : "https://www.anime-planet.com/users/{account}", - "post_body" : "{\"username\":\"{account}\"}", - "e_code" : 400, - "e_string" : "\"msg\":\"Username is unavailable\"", - "m_string" : "\"status\":\"ok\"", - "m_code" : 200, - "known" : ["zala", "lindapearl"], - "cat" : "social", - "headers" : { - "Content-Type": "application/json" - }, - "protection" : ["cloudflare"] - }, - { - "name" : "AniList", - "uri_check" : "https://graphql.anilist.co", - "uri_pretty" : "https://anilist.co/user/{account}", - "post_body" : "{\"query\":\"query{User(name:\\\"{account}\\\"){id name}}\"}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_code" : 404, - "m_string" : "Not Found", - "known" : ["test", "johndoe"], - "cat" : "social", - "headers" : { - "accept": "application/json", - "Content-Type": "application/json" - } - }, - { - "name" : "anonup", - "uri_check" : "https://anonup.com/@{account}", - "e_code" : 200, - "e_string" : "Show followings", - "m_string" : "Page not found!", - "m_code" : 302, - "known" : ["john", "peter"], - "cat" : "social" - }, - { - "name" : "Apex Legends", - "uri_check" : "https://api.tracker.gg/api/v2/apex/standard/profile/origin/{account}", - "uri_pretty" : "https://apex.tracker.gg/apex/profile/origin/{account}/overview", - "headers" : {"User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", "Accept-Language": "en-US,en;q=0.5", "Origin": "https://apex.tracker.gg", "Referer": "https://apex.tracker.gg/", "TE": "trailers"}, - "e_code" : 200, - "e_string" : "platformInfo", - "m_code" : 404, - "m_string" : "CollectorResultStatus::NotFound", - "known" : ["tttcheekyttt", "RollsRoyce_Dawn"], - "cat" : "gaming" - }, - { - "name" : "Aparat", - "uri_check" : "https://www.aparat.com/api/fa/v1/user/user/information/username/{account}", - "uri_pretty" : "https://www.aparat.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "class=\"error-body\"", - "m_code" : 404, - "known" : ["abolfazlxmaster", "siahkolah"], - "cat" : "social" - }, - { - "name" : "Appian", - "uri_check" : "https://community.appian.com/members/{account}", - "e_code" : 200, - "e_string" : "User Profile", - "m_string" : "Go back to our", - "m_code" : 301, - "known" : ["mikec", "varunkumarb0001"], - "cat" : "tech" - }, - { - "name" : "Archive Of Our Own Account", - "uri_check" : "https://archiveofourown.org/users/{account}", - "e_code" : 200, - "e_string" : "class=\"user home\"", - "m_string" : "class=\"system errors error-404 region\"", - "m_code" : 404, - "known" : ["test", "john"], - "cat" : "hobby" - }, - { - "name" : "Arduino", - "uri_check" : "https://projecthub.arduino.cc/{account}", - "e_code" : 200, - "e_string" : "| Arduino Project Hub", - "m_string" : "Arduino Project Hub", - "m_code" : 404, - "known" : ["peter", "john"], - "cat" : "tech" - }, - { - "name" : "ArmorGames", - "uri_check" : "https://armorgames.com/user/{account}", - "e_code" : 200, - "e_string" : "about", - "m_string" : "404: Oh Noes!", - "m_code" : 302, - "known" : ["john", "sammy"], - "cat" : "gaming" - }, - { - "name" : "ArtBreeder", - "uri_check" : "https://www.artbreeder.com/{account}", - "e_code" : 200, - "e_string" : "", - "m_string" : "Not found:", - "m_code" : 404, - "known" : ["dolores", "cyborghyena"], - "cat" : "art" - }, - { - "name" : "Artists & Clients", - "uri_check" : "https://artistsnclients.com/people/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_code" : 404, - "m_string" : "The page you requested wasn't there when we tried to get it for you. What a bother!", - "known" : ["luluc0", "MuraArts"], - "cat" : "art" - }, - { - "name" : "ArtStation", - "uri_check" : "https://www.artstation.com/{account}", - "e_code" : 200, - "e_string" : "Portfolio", - "m_code" : 404, - "m_string" : "Page not found", - "known" : ["kongaxl_design", "alex_pi"], - "cat" : "art" - }, - { - "name" : "ArchWiki", - "uri_check" : "https://wiki.archlinux.org/api.php?action=query&format=json&list=users&ususers={account}&usprop=cancreate&formatversion=2&errorformat=html&errorsuselocal=true&uselang=en", - "uri_pretty" : "https://wiki.archlinux.org/title/User:{account}", - "e_code" : 200, - "e_string" : "\"userid\":", - "m_string" : "\"missing\":true", - "m_code" : 200, - "known" : ["Lahwaacz", "Erus_Iluvatar"], - "cat" : "social" - }, - { - "name" : "Arch Linux GitLab", - "uri_check" : "https://gitlab.archlinux.org/api/v4/users?username={account}", - "uri_pretty" : "https://gitlab.archlinux.org/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "[]", - "m_code" : 200, - "known" : ["morganamilo", "nl6720"], - "cat" : "social" - }, - { - "name" : "asciinema", - "uri_check" : "https://asciinema.org/~{account}", - "e_code" : 200, - "e_string" : "class=\"profile-page\"", - "m_string" : "<h1>404 Not Found</h1>", - "m_code" : 404, - "known" : ["john", "red"], - "cat" : "coding" - }, - { - "name" : "AtCoder", - "uri_check" : "https://atcoder.jp/users/{account}", - "e_code" : 200, - "e_string" : "<h3>Contest Status</h3>", - "m_string" : ">404 Page Not Found</h1>", - "m_code" : 404, - "known" : ["apiad", "kotatsugame"], - "cat" : "coding" - }, - { - "name" : "au.ru", - "uri_check" : "https://au.ru/user/{account}/", - "e_code" : 200, - "e_string" : "Лоты пользователя ", - "m_string" : "Пользователь не найден", - "m_code" : 404, - "known" : ["Svetlana7", "nastya"], - "cat" : "misc" - }, - { - "name" : "Audiojungle", - "uri_check" : "https://audiojungle.net/user/{account}", - "e_code" : 200, - "e_string" : "s profile on AudioJungle", - "m_string" : "404 - Nothing to see here", - "m_code" : 404, - "known" : ["john", "reds"], - "cat" : "music" - }, - { - "name" : "Avid Community", - "uri_check" : "https://community.avid.com/members/{account}/default.aspx", - "e_code" : 200, - "e_string" : "My Activity", - "m_code" : 302, - "headers" : {"Host": "community.avid.com", "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8", "Cache-Control": "no-cache"}, - "m_string" : "The user you requested cannot be found.", - "known" : ["Thayne", "Admin"], - "cat" : "music" - }, - { - "name" : "babepedia", - "uri_check" : "https://www.babepedia.com/user/{account}", - "e_code" : 200, - "e_string" : "'s Page", - "m_string" : "Profile not found", - "m_code" : 404, - "known" : ["cherry", "betty"], - "cat" : "xx NSFW xx" - }, - { - "name" : "BabyPips", - "uri_check" : "https://forums.babypips.com/u/{account}.json", - "uri_pretty" : "https://forums.babypips.com/u/{account}/summary", - "e_code" : 200, - "e_string" : "user_badges", - "m_string" : "The requested URL or resource could not be found", - "m_code" : 404, - "known" : ["baemax023", "scottycarsonmvp"], - "cat" : "social" - }, - { - "name" : "Bandcamp", - "uri_check" : "https://bandcamp.com/{account}", - "e_code" : 200, - "e_string" : " collection | Bandcamp", - "m_string" : "

Sorry, that something isn’t here.

", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "music" - }, - { - "name" : "Bandlab", - "uri_check" : "https://www.bandlab.com/api/v1.3/users/{account}", - "uri_pretty" : "https://www.bandlab.com/{account}", - "e_code" : 200, - "e_string" : "about", - "m_string" : "Couldn't find any matching element, it might be deleted", - "m_code" : 404, - "known" : ["rave_flawless", "delutaya"], - "cat" : "music" - }, - { - "name" : "bblog_ru", - "uri_check" : "https://www.babyblog.ru/user/{account}", - "e_code" : 200, - "e_string" : ") — дневник на Babyblog.ru", - "m_string" : "БэбиБлог - беременность, календарь беременности, дневники", - "m_code" : 200, - "known" : ["joyfitnessdance1", "bobkokatya94"], - "cat" : "misc" - }, - { - "name" : "BDSMLR", - "uri_check" : "https://{account}.bdsmlr.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "login", - "m_string" : "This blog doesn't exist.", - "m_code" : 200, - "known" : ["themunch", "shibari4all"], - "cat" : "xx NSFW xx" - }, - { - "name" : "bdsmsingles", - "uri_check" : "https://www.bdsmsingles.com/members/{account}/", - "e_code" : 200, - "e_string" : "Profile", - "m_string" : "BDSM Singles", - "m_code" : 302, - "known" : ["GoddessBlueDiamo", "aalama"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Beacons", - "uri_check" : "https://beacons.ai/{account}", - "e_code" : 200, - "e_string" : " - Link in Bio & Creator Tools | Beacons", - "m_string" : "The page you are looking for does not seem to exist anymore", - "m_code" : 200, - "known" : ["rafaballerini", "lexaloco", "jardred"], - "cat" : "social", - "protection" : ["cloudflare"] - }, - { - "name" : "Bentbox", - "uri_check" : "https://bentbox.co/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "This user is currently not available", - "m_code" : 200, - "known" : ["brockdoom", "witchhouse", "hotoptics"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Bento", - "uri_check" : "https://bento.me/{account}", - "e_code" : 200, - "e_string" : "href=\"https://bento.me/explore\"", - "m_string" : ">Available!
", - "m_code" : 404, - "known" : ["carlito", "taylor"], - "cat" : "social" - }, - { - "name" : "BiggerPockets", - "uri_check" : "https://www.biggerpockets.com/users/{account}", - "e_code" : 200, - "e_string" : "| BiggerPockets", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["trustgreene", "chasel9"], - "cat" : "finance" - }, - { - "name" : "BIGO Live", - "uri_check" : "https://www.bigo.tv/user/{account}", - "e_code" : 200, - "e_string" : "userInfo:{nickName", - "m_string" : "userInfo:{}", - "m_code" : 200, - "known" : ["treasdior", "Jacin19"], - "cat" : "gaming" - }, - { - "name" : "Bikemap", - "uri_check" : "https://www.bikemap.net/en/u/{account}/routes/created/", - "e_code" : 200, - "e_string" : "- 🚲 Bikemap", - "m_string" : "Page not found - Error 404 ", - "m_code" : 404, - "known" : ["mike", "greg"], - "cat" : "health" - }, - { - "name" : "Bimpos", - "uri_check" : "https://ask.bimpos.com/user/{account}", - "e_code" : 200, - "e_string" : "<title>User ", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["john", "db"], - "cat" : "tech" - }, - { - "name" : "biolink", - "uri_check" : "https://bio.link/{account}", - "e_code" : 200, - "e_string" : "profile:username", - "m_string" : "The page you’re looking for doesn’t exist", - "m_code" : 404, - "known" : ["adli_hm", "jake"], - "cat" : "misc" - }, - { - "name" : "Bio Sites", - "uri_check" : "https://bio.site/{account}", - "e_code" : 200, - "e_string" : "section\":{\"handles", - "m_string" : "This site no longer exists", - "m_code" : 404, - "known" : ["leticiabufoni", "kayurkaRhea"], - "cat" : "social" - }, - { - "name" : "Bitbucket", - "uri_check" : "https://bitbucket.org/!api/2.0/repositories/{account}?page=1&pagelen=25&sort=-updated_on&q=&fields=-values.owner%2C-values.workspace", - "uri_pretty" : "https://bitbucket.org/{account}/workspace/repositories/", - "e_code" : 200, - "e_string" : "full_name", - "m_string" : "No workspace with identifier", - "m_code" : 404, - "known" : ["LaNMaSteR53", "osamahalisawi"], - "cat" : "coding" - }, - { - "name" : "Bitchute", - "uri_check" : "https://api.bitchute.com/api/beta/channel", - "uri_pretty" : "https://www.bitchute.com/channel/{account}/", - "post_body" : "{\"channel_id\":\"{account}\"}", - "e_code" : 200, - "e_string" : "\"channel_id\":", - "m_string" : "\"errors\":", - "m_code" : 404, - "known" : ["simon_parkes", "americafloats", "daindor"], - "cat" : "political", - "headers" : { - "Content-Type": "application/json" - } - }, - { - "name" : "Blogger", - "uri_check" : "https://www.blogger.com/profile/{account}", - "e_code" : 200, - "e_string" : "shadow-light user-stats", - "m_string" : "Sorry, the blog you were looking for does not exist.", - "m_code" : 405, - "known" : ["07333944864481878697", "05941544278367416980"], - "cat" : "blog" - }, - { - "name" : "blogi.pl", - "uri_check" : "https://www.blogi.pl/osoba,{account}.html", - "e_code" : 200, - "e_string" : "Informacje ogólne", - "m_string" : "Niepoprawny adres.", - "m_code" : 200, - "known" : ["naukowa", "izkpaw"], - "cat" : "blog" - }, - { - "name" : "Blogmarks", - "uri_check" : "http://blogmarks.net/user/{account}", - "e_code" : 200, - "e_string" : "class=\"mark\"", - "m_string" : "", - "m_code" : 200, - "known" : ["test", "mike"], - "cat" : "misc" - }, - { - "name" : "Blogspot", - "uri_check" : "http://{account}.blogspot.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "Blogger Template Style", - "m_string" : "Blog not found", - "m_code" : 404, - "known" : ["test"], - "cat" : "blog" - }, - { - "name" : "Bluesky 1", - "uri_check" : "https://bsky.app/profile/{account}", - "e_code" : 200, - "e_string" : "on Bluesky", - "m_code" : 200, - "m_string" : "<p id=\"bsky_did\"></p>", - "known" : ["bsky.app", "safety.bsky.app"], - "cat" : "social" - }, - { - "name" : "Bluesky 2", - "uri_check" : "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor={account}.bsky.social", - "uri_pretty" : "https://bsky.app/profile/{account}.bsky.social", - "e_code" : 200, - "e_string" : "\"handle\":\"", - "m_code" : 400, - "m_string" : "\"message\":\"Profile not found\"", - "known" : ["john", "mark"], - "cat" : "social" - }, - { - "name" : "BoardGameGeek", - "uri_check" : "https://api.geekdo.com/api/accounts/validate/username?username={account}", - "uri_pretty" : "https://boardgamegeek.com/user/{account}", - "e_code" : 200, - "e_string" : "\"message\":\"Sorry, this username is already taken.\"", - "m_string" : "\"isValid\":true", - "m_code" : 200, - "known" : ["ntrautner", "Petdoc"], - "cat" : "gaming" - }, - { - "name" : "BodyBuilding.com", - "uri_check" : "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", - "uri_pretty" : "http://bodyspace.bodybuilding.com/{account}/", - "e_code" : 200, - "e_string" : "username", - "m_string" : "data\" :\"\"", - "m_code" : 200, - "known" : ["mike"], - "cat" : "health" - }, - { - "name" : "bonga_cams", - "uri_check" : "https://pt.bongacams.com/{account}", - "e_code" : 200, - "e_string" : "Chat público ao vivo de", - "m_string" : "Câmaras de sexo free: chat pornô ao vivo", - "m_code" : 404, - "known" : ["prettykatea", "milaowens"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Bookcrossing", - "uri_check" : "https://www.bookcrossing.com/mybookshelf/{account}", - "e_code" : 200, - "e_string" : "Recent Book Activity", - "m_string" : "Sorry, we were unable to locate the content that you requested.", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "hobby" - }, - { - "name" : "Booknode", - "uri_check" : "https://booknode.com/profil/{account}", - "e_code" : 200, - "e_string" : "<title>Profil de", - "m_string" : "<title>Page non trouvée", - "m_code" : 404, - "known" : ["Paraffine", "chanoa"], - "cat" : "hobby" - }, - { - "name" : "boosty", - "uri_check" : "https://boosty.to/{account}", - "e_code" : 200, - "e_string" : "- exclusive content on Boosty", - "m_string" : "Blog not found", - "m_code" : 200, - "known" : ["evdokia", "lana"], - "cat" : "social" - }, - { - "name" : "Booth", - "uri_check" : "https://{account}.booth.pm/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "- BOOTH", - "m_string" : "BOOTH - The International Indie Art Marketplace", - "m_code" : 302, - "known" : ["monoliorder", "hasya"], - "cat" : "shopping" - }, - { - "name" : "Brickset", - "uri_check" : "https://brickset.com/profile/{account}", - "e_code" : 200, - "e_string" : "Member since:", - "m_string" : "{name}", - "m_code" : 200, - "known" : ["lowlead", "vwong19"], - "cat" : "hobby" - }, - { - "name" : "BugCrowd", - "uri_check" : "https://bugcrowd.com/{account}/profile_widgets", - "uri_pretty" : "https://bugcrowd.com/{account}", - "e_code" : 200, - "e_string" : "\"widgets\":", - "m_string" : "class='cc-error-page__msg'", - "m_code" : 404, - "known" : ["lopseg", "Ebrietas"], - "cat" : "tech" - }, - { - "name" : "Bunpro", - "uri_check" : "https://community.bunpro.jp/u/{account}.json", - "e_code" : 200, - "e_string" : "username", - "m_code" : 404, - "m_string" : "The requested URL or resource could not be found.", - "known" : ["blacktide", "honey"], - "cat" : "social" - }, - { - "name" : "Buy Me a Coffee", - "uri_check" : "https://app.buymeacoffee.com/api/v1/check_availability", - "uri_pretty" : "https://buymeacoffee.com/{account}", - "post_body" : "{\"project_slug\":\"{account}\"}", - "e_code" : 200, - "e_string" : "\"available\":false", - "m_string" : "\"available\":true", - "m_code" : 200, - "known" : ["freebird", "robinwong"], - "cat" : "finance", - "protection" : ["cloudflare"], - "headers" : { - "Content-Type": "application/json" - } - }, - { - "name" : "BuzzFeed", - "uri_check" : "https://www.buzzfeed.com/{account}", - "e_code" : 200, - "e_string" : " on BuzzFeed", - "m_string" : "Es posible que el enlace que seleccionaste esté roto o que se haya eliminado la página", - "m_code" : 404, - "known" : ["braftty", "guillermo"], - "cat" : "misc" - }, - { - "name" : "Calendy", - "uri_check" : "https://calendly.com/{account}", - "e_code" : 200, - "e_string" : "og:author", - "m_code" : 404, - "m_string" : "Sorry, but the page you were looking for could not be found.", - "known" : ["honey", "roger"], - "cat" : "misc" - }, - { - "name" : "Cameo", - "uri_check" : "https://www.cameo.com/{account}", - "e_code" : 200, - "e_string" : "aggregateRating", - "m_string" : "", - "m_code" : 301, - "known" : ["michael_owen10", "sarahall3"], - "cat" : "shopping" - }, - { - "name" : "Carbonmade", - "uri_check" : "https://{account}.carbonmade.com/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "s online portfolio", - "m_string" : "site not found", - "m_code" : 404, - "known" : ["jenny", "bob"], - "cat" : "hobby" - }, - { - "name" : "Career.habr", - "uri_check" : "https://career.habr.com/{account}", - "e_code" : 200, - "e_string" : "— Хабр Карьера", - "m_string" : "Ошибка 404", - "m_code" : 404, - "known" : ["alex", "bob"], - "cat" : "business" - }, - { - "name" : "carrd.co", - "uri_check" : "https://{account}.carrd.co", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "( Made with Carrd )", - "m_code" : 404, - "m_string" : "Sorry, the requested page could not be found.", - "known" : ["liam", "peter"], - "cat" : "business" - }, - { - "name" : "CastingCallClub", - "uri_check" : "https://www.castingcall.club/{account}", - "e_code" : 200, - "e_string" : "| Casting Call Club", - "m_code" : 302, - "m_string" : "404: This is not the page you were looking for. In the future, our AI robot overlords will be able to better predict exactly what you were looking for.", - "known" : ["Lindz", "Danye"], - "cat" : "hobby" - }, - { - "name" : "CD-Action", - "uri_check" : "https://cdaction.pl/uzytkownicy/{account}", - "e_code" : 200, - "e_string" : "Lista gier:", - "m_string" : "Coś się popsuło...", - "m_code" : 404, - "known" : ["saczuan", "cormac"], - "cat" : "gaming" - }, - { - "name" : "cda.pl", - "uri_check" : "https://www.cda.pl/{account}", - "e_code" : 200, - "e_string" : "Foldery", - "m_string" : "Strona na którą chcesz wejść nie istnieje", - "m_code" : 200, - "known" : ["test2", "janek"], - "cat" : "video" - }, - { - "name" : "cfx.re", - "uri_check" : "https://forum.cfx.re/u/{account}.json", - "uri_pretty" : "https://forum.cfx.re/u/{account}/summary", - "e_code" : 200, - "e_string" : "created_at", - "m_string" : "The requested URL or resource could not be found.", - "m_code" : 404, - "known" : ["masiball", "anel_hadzyc", "kiminaze"], - "cat" : "gaming" - }, - { - "name" : "championat", - "uri_check" : "https://www.championat.com/user/{account}/", - "e_code" : 200, - "e_string" : "Личный профил", - "m_string" : "Извините, запрашиваемая страница не найдена", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "news" - }, - { - "name" : "chatango.com", - "uri_check" : "https://{account}.chatango.com", - "e_code" : 200, - "e_string" : "Chatango!", - "m_string" : "<title>Unknown User!", - "m_code" : 200, - "known" : ["7nights", "merbailey", "steakomura", "equicentric"], - "cat" : "social" - }, - { - "name" : "Mastodon-Chaos.social", - "uri_check" : "https://chaos.social/@{account}", - "e_code" : 200, - "e_string" : "@chaos.social) - chaos.social", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["dictvm", "sml"], - "cat" : "social" - }, - { - "name" : "chaturbate", - "uri_check" : "https://chaturbate.com/{account}/", - "e_code" : 200, - "e_string" : "'s Bio and Free Webcam", - "m_string" : "It's probably just a broken link", - "m_code" : 404, - "known" : ["pussylovekate", "kemii"], - "cat" : "xx NSFW xx" - }, - { - "name" : "cHEEZburger", - "uri_check" : "https://profile.cheezburger.com/{account}", - "e_code" : 200, - "e_string" : "profile-header", - "m_string" : "Home - ", - "m_code" : 302, - "known" : ["john"], - "cat" : "hobby" - }, - { - "name" : "Chamsko", - "uri_check" : "https://www.chamsko.pl/profil/{account}", - "e_code" : 200, - "e_string" : "W serwisie od", - "m_string" : "Strona nie istnieje.", - "m_code" : 404, - "known" : ["test", "janek"], - "cat" : "images" - }, - { - "name" : "Chess.com", - "uri_check" : "https://api.chess.com/pub/player/{account}", - "uri_pretty" : "https://www.chess.com/member/{account}", - "e_code" : 200, - "e_string" : "player_id", - "m_string" : "not found", - "m_code" : 404, - "known" : ["john", "peter", "josh"], - "cat" : "gaming" - }, - { - "name" : "Chomikuj.pl", - "uri_check" : "https://chomikuj.pl/{account}/", - "e_code" : 200, - "e_string" : "Foldery", - "m_string" : "Chomik o takiej nazwie nie istnieje", - "m_code" : 404, - "known" : ["test", "test2"], - "cat" : "misc" - }, - { - "name" : "Chyoa", - "uri_check" : "https://chyoa.com/user/{account}", - "e_code" : 200, - "e_string" : "When I'm not reading erotica I like to read", - "m_string" : "Sorry, I got distracted...", - "m_code" : 404, - "known" : ["joe", "carlos01"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Cloudflare", - "uri_check" : "https://community.cloudflare.com/u/{account}/card.json", - "uri_pretty" : "https://community.cloudflare.com/u/{account}", - "e_code" : 200, - "e_string" : "user_avatar", - "m_string" : "The requested URL or resource could not be found", - "m_code" : 404, - "known" : ["carl", "morten"], - "cat" : "tech" - }, - { - "name" : "Clubhouse", - "uri_check" : "https://www.clubhouse.com/@{account}", - "e_code" : 200, - "e_string" : "\"user\":", - "m_string" : "404", - "m_code" : 404, - "known" : ["kirbyplessas", "rohan"], - "cat" : "social" - }, - { - "name" : "cnet", - "uri_check" : "https://www.cnet.com/profiles/{account}/", - "e_code" : 200, - "e_string" : "Member Since:", - "m_string" : "Page Not Found (404) - CNET", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "news" - }, - { - "name" : "Coub", - "uri_check" : "https://coub.com/api/v2/channels/{account}", - "uri_pretty" : "https://coub.com/{account}/", - "e_code" : 200, - "e_string" : "\"user_id\":", - "m_string" : "\"error\":\"Unhandled exception\"", - "m_code" : 404, - "known" : ["djantidog", "mcnorington"], - "cat" : "social" - }, - { - "name" : "Community Adobe", - "uri_check" : "https://community.adobe.com/t5/forums/searchpage/tab/user?q={account}", - "e_code" : 200, - "e_string" : "UserSearchItemContainer", - "m_string" : "No search results found.", - "m_code" : 200, - "known" : ["test", "janet"], - "cat" : "tech" - }, - { - "name" : "Coda", - "uri_check" : "https://coda.io/@{account}/", - "e_code" : 200, - "e_string" : "- Coda Profile", - "m_string" : "Coda | Page not found - Coda", - "m_code" : 404, - "known" : ["huizer", "kennywong"], - "cat" : "hobby" - }, - { - "name" : "Codeberg", - "uri_check" : "https://codeberg.org/{account}", - "e_code" : 200, - "e_string" : "Joined on", - "m_code" : 404, - "m_string" : "The page you are trying to reach either", - "known" : ["dachary", "happy"], - "cat" : "coding" - }, - { - "name" : "Codecademy", - "uri_check" : "https://discuss.codecademy.com/u/{account}/summary", - "e_code" : 200, - "e_string" : " Profile - ", - "m_string" : "Oops! That page doesn’t exist", - "m_code" : 404, - "known" : ["doctypeme", "ocean.war"], - "cat" : "coding" - }, - { - "name" : "CodeChef", - "uri_check" : "https://www.codechef.com/users/{account}", - "e_code" : 200, - "e_string" : "class=\"user-profile-container\"", - "m_string" : "", - "m_code" : 302, - "known" : ["maroonrk", "lyrically"], - "cat" : "coding" - }, - { - "name" : "Codeforces", - "uri_check" : "https://codeforces.com/api/user.info?handles={account}", - "uri_pretty" : "https://codeforces.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"status\":\"OK\"", - "m_string" : "\"status\":\"FAILED\"", - "m_code" : 400, - "known" : ["Abdul01", "Abdullah"], - "cat" : "coding" - }, - { - "name" : "codementor", - "uri_check" : "https://www.codementor.io/@{account}", - "e_code" : 200, - "e_string" : "ABOUT ME", - "m_string" : "404/favicon.png", - "m_code" : 404, - "known" : ["e4c5", "juanelfers"], - "cat" : "coding" - }, - { - "name" : "Code Project", - "uri_check" : "https://www.codeproject.com/Members/{account}", - "e_code" : 200, - "e_string" : "Member since", - "m_string" : "Unable to load the requested member's information", - "m_code" : 200, - "known" : ["WmCraig", "Rick-York"], - "cat" : "coding" - }, - { - "name" : "Codewars", - "uri_check" : "https://www.codewars.com/users/{account}", - "e_code" : 200, - "e_string" : "| Codewars", - "m_string" : "Whoops! The page you were looking for doesn't seem to exist.", - "m_code" : 404, - "known" : ["john", "reds"], - "cat" : "coding" - }, - { - "name" : "Coderwall", - "uri_check" : "https://coderwall.com/{account}/", - "e_code" : 200, - "e_string" : "s profile |", - "m_string" : "404! Our feels when that url is used", - "m_code" : 404, - "known" : ["john", "test"], - "cat" : "coding" - }, - { - "name" : "COLOURlovers", - "uri_check" : "https://www.colourlovers.com/lover/{account}", - "e_code" : 200, - "e_string" : "Color lovin' since", - "m_string" : "Lover has gone missing", - "m_code" : 410, - "known" : ["amorremanet", "bezzalopoly"], - "cat" : "hobby" - }, - { - "name" : "contactos.sex", - "uri_check" : "https://www.contactossex.com/profile/{account}", - "e_code" : 200, - "e_string" : "Información Personal", - "m_string" : "Desde 2001 conectando gente!", - "m_code" : 302, - "known" : ["danijak", "darkfox"], - "cat" : "xx NSFW xx" - }, - { - "name" : "coroflot", - "uri_check" : "https://www.coroflot.com/{account}", - "e_code" : 200, - "e_string" : "portfolio", - "m_string" : "Looking for something?", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "art" - }, - { - "name": "Coub", - "uri_check": "https://coub.com/{account}", - "e_code": 200, - "e_string": "- Channel on Coub", - "m_string": "Sorry, that page doesn't exist.", - "m_code": 404, - "known": ["dmitry.kozhevnikov","idesignking"], - "cat": "misc", - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" - } - }, - { - "name" : "cowboys4angels", - "uri_check" : "https://cowboys4angels.com/cowboy/{account}/", - "e_code" : 200, - "e_string" : " - Cowboys 4 Angels", - "m_string" : "Error Page not found", - "m_code" : 404, - "known" : ["jaxjames", "jordan-2"], - "cat" : "xx NSFW xx" - }, - - { - "name" : "cracked_io", - "uri_check" : "https://cracked.io/{account}", - "e_code" : 200, - "e_string" : "Cracked.io - Profile of", - "m_string" : "The member you specified is either invalid or doesn't exist", - "m_code" : 404, - "known" : ["RealPsycho", "SamWinchester"], - "cat" : "social" - }, - { - "name" : "Cracked", - "uri_check" : "https://www.cracked.com/members/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "", - "m_code" : 302, - "known" : ["mbattagl","Hatchback"], - "cat" : "social" - }, - { - "name" : "crevado", - "uri_check" : "https://{account}.crevado.com/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "Portfolio", - "m_string" : "Site not found :-(", - "m_code" : 404, - "known" : ["john", "red"], - "cat" : "images" - }, - { - "name" : "Crowdin", - "uri_check" : "https://crowdin.com/profile/{account}", - "e_code" : 200, - "e_string" : "id=\"profile-page\"", - "m_string" : "class=\"error-page\"", - "m_code" : 404, - "known" : ["erga", "peter"], - "cat" : "hobby" - }, - { - "name" : "Cults3D", - "uri_check" : "https://cults3d.com/en/users/{account}/creations", - "e_code" : 200, - "e_string" : "All the 3D models of", - "m_string" : "Oh dear, this page is not working!", - "m_code" : 404, - "known" : ["Bstar3Dart", "john"], - "cat" : "hobby" - }, - { - "name" : "Cytoid", - "uri_check" : "https://cytoid.io/profile/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_code" : 404, - "m_string" : "Profile not found", - "known" : ["nyala", "speedymlg7"], - "cat" : "gaming" - }, - { - "name" : "Daily Kos", - "uri_check" : "https://www.dailykos.com/user/{account}", - "e_code" : 200, - "e_string" : "id=\"userData\"", - "m_code" : 404, - "m_string" : "Page not found! (404)", - "known" : ["msouza", "kos"], - "cat" : "news" - }, - { - "name" : "darudar", - "uri_check" : "https://darudar.org/users/{account}/", - "e_code" : 200, - "e_string" : ". Дарудар", - "m_string" : "404. Дару~дар: миру~мир!", - "m_code" : 404, - "known" : ["svetlana7", "igor"], - "cat" : "misc" - }, - { - "name" : "datezone", - "uri_check" : "https://www.datezone.com/users/{account}/", - "e_code" : 200, - "e_string" : "profile_status", - "m_string" : "404: page not found", - "m_code" : 200, - "known" : ["maniektwist","carllos"], - "cat" : "xx NSFW xx" - }, - { - "name" : "dateinasia", - "uri_check" : "https://www.dateinasia.com/{account}", - "e_code" : 200, - "e_string" : "About me", - "m_string" : "The page you are looking for does not exist", - "m_code" : 404, - "known" : ["shime", "janeferater"], - "cat" : "dating" - }, - { - "name" : "Dating.ru", - "uri_check" : "https://dating.ru/{account}/", - "e_code" : 200, - "e_string" : "| dating.ru", - "m_string" : "Такой страницы не существует.", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "dating" - }, - { - "name" : "Mastodon-Defcon", - "uri_check" : "https://defcon.social/@{account}", - "e_code" : 200, - "e_string" : "- DEF CON Social", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["defcon", "buttersnatcher"], - "cat" : "social" - }, - { - "name" : "Demotywatory", - "uri_check" : "https://demotywatory.pl/user/{account}", - "e_code" : 200, - "e_string" : "Z nami od:", - "m_string" : "Użytkownik o podanym pseudonimie nie istnieje.", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "images" - }, - { - "name" : "depop", - "uri_check" : "https://www.depop.com/{account}/", - "e_code" : 200, - "e_string" : "s Shop - Depop", - "m_string" : "Sorry, that page doesn't exist", - "m_code" : 404, - "known" : ["sara", "susan"], - "cat" : "shopping" - }, - { - "name" : "Designspriation", - "uri_check" : "https://www.designspiration.com/{account}/", - "e_code" : 200, - "e_string" : "has discovered on Designspiration", - "m_string" : "Content Not Found", - "m_code" : 404, - "known" : ["sam", "smith"], - "cat" : "art" - }, - { - "name" : "Destructoid", - "uri_check" : "https://www.destructoid.com/?name={account}", - "e_code" : 200, - "e_string" : "Follow", - "m_string" : "Error in query", - "m_code" : 200, - "known" : ["john", "alice", "bob"], - "cat" : "social" - }, - { - "name" : "destream", - "uri_check" : "https://api.destream.net/siteapi/v2/live/details/{account}", - "uri_pretty" : "https://destream.net/live/{account}", - "e_code" : 200, - "e_string" : "\"userName\":", - "m_code" : 400, - "m_string" : "\"errorMessage\":\"Error happened.\"", - "known" : ["skromnuy_fifa", "wudjer"], - "cat" : "finance" - }, - { - "name" : "DeviantArt", - "uri_check" : "https://www.deviantart.com/{account}", - "e_code" : 200, - "e_string" : " | DeviantArt", - "m_string" : "DeviantArt: 404", - "m_code" : 404, - "known" : ["rattybike", "john"], - "cat" : "images" - }, - { - "name" : "dev.to", - "uri_check" : "https://dev.to/{account}", - "e_code" : 200, - "e_string" : "\"@id\":", - "m_string" : "class=\"not-found-page base-background-color\"", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "coding", - "protection" : ["other"] - }, - { - "name" : "devRant", - "uri_check" : "https://devrant.com/users/{account}", - "e_code" : 200, - "e_string" : "Joined devRant on", - "m_string" : "", - "m_code" : 302, - "known" : ["dfox", "trogus"], - "cat" : "coding" - }, - { - "name" : "dfgames", - "uri_check" : "https://www.dfgames.com.br/user/{account}", - "e_code" : 200, - "e_string" : "Reputa", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["carlos01", "eduardo"], - "cat" : "gaming" - }, - { - "name" : "Diablo", - "uri_check" : "https://diablo2.io/member/{account}/", - "e_code" : 200, - "e_string" :"Viewing profile - ", - "m_string" : "The requested user does not exist", - "m_code" : 404, - "known" : ["Mike01", "John"], - "cat" : "gaming" - }, - { - "name" : "diigo", - "uri_check" : "https://www.diigo.com/interact_api/load_profile_info?name={account}", - "uri_pretty" : "https://www.diigo.com/profile/{account}", - "e_code" : 200, - "e_string" : "regist_at", - "m_string" : "{}", - "m_code" : 200, - "known" : ["whoami", "johndoe"], - "cat" : "images" - }, - { - "name" : "DIBIZ", - "uri_check" : "https://www.dibiz.com/{account}", - "e_code" : 200, - "e_string" : "Add to contacts
", - "m_string" : "An Error Has Occurred", - "m_code" : 404, - "known" : ["fractalhue", "rid"], - "cat" : "business" - }, - { - "name" : "Digitalspy", - "uri_check" : "https://forums.digitalspy.com/profile/discussions/{account}", - "e_code" : 200, - "e_string" : "About", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["JeffG1", "Maxatoria"], - "cat" : "social" - }, - { - "name" : "Discogs", - "uri_check" : "https://api.discogs.com/users/{account}", - "uri_pretty" : "https://www.discogs.com/user/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_code" : 404, - "m_string" : "\"message\": \"User does not exist or may have been deleted.\"", - "known" : ["damiano84", "bernadette69"], - "cat" : "music" - }, - { - "name" : "Discourse", - "uri_check" : "https://meta.discourse.org/u/{account}/summary.json", - "uri_pretty" : "https://meta.discourse.org/u/{account}", - "e_code" : 200, - "e_string" : "topics", - "m_code" : 404, - "m_string" : "The requested URL or resource could not be found.", - "known" : ["ndalliard", "gerhard"], - "cat" : "misc" - }, - { - "name" : "discuss.elastic.co", - "uri_check" : "https://discuss.elastic.co/u/{account}", - "e_code" : 200, - "e_string" : " Profile", - "m_string" : "Oops!", - "m_code" : 404, - "known" : ["whoami", "johndoe"], - "cat" : "tech" - }, - { - "name" : "Dissenter", - "uri_check" : "https://dissenter.com/user/{account}", - "e_code" : 200, - "e_string" : "Dissenter | The Comment Section of the Internet", - "m_string" : "That user is not registered here.", - "m_code" : 404, - "known" : ["pryerlee", "archdukeofevil"], - "cat" : "political" - }, - { - "name" : "DOTAFire", - "uri_check" : "https://www.dotafire.com/ajax/searchSite?text={account}&search=members", - "e_code" : 200, - "e_string" : "href=\"/profile/", - "m_code" : 200, - "m_string" : ">No results found</span>", - "known" : ["DotaCoachApp", "zveen"], - "cat" : "gaming" - }, - { - "name" : "Disqus", - "uri_check" : "https://disqus.com/api/3.0/users/details?user=username:{account}&api_key=E8Uh5l5fHZ6gD8U3KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F", - "uri_pretty" : "https://disqus.com/by/{account}/", - "e_code" : 200, - "e_string" : "\"code\":0", - "m_string" : "\"code\":2", - "m_code" : 400, - "known" : ["Aristotelian1", "50calibercat"], - "cat" : "social" - }, - { - "name" : "Discord Users", - "uri_check" : "https://discord.com/api/v9/unique-username/username-attempt-unauthed", - "post_body" : "{\"username\": \"{account}\"}", - "e_code" : 200, - "e_string" : "\"taken\":true", - "m_string" : "\"taken\":false", - "m_code" : 200, - "known" : ["test", "web"], - "cat" : "social", - "headers" : { - "Content-Type" : "application/json" - } - }, - { - "name" : "Discord Invites", - "uri_check" : "https://discord.com/api/v9/invites/{account}?with_counts=true&with_expiration=true", - "uri_pretty" : "https://discord.com/invite/{account}", - "e_code" : 200, - "e_string" : "\"channel\":", - "m_string" : "\"message\": \"Unknown Invite\"", - "m_code" : 404, - "known" : ["test", "web"], - "cat" : "social" - }, - { - "name" : "DOU", - "uri_check" : "https://dou.ua/users/{account}/", - "e_code" : 200, - "e_string" : "class=\"page-profile\"", - "m_string" : "class=\"page-error\"", - "m_code" : 404, - "known" : ["doucommunity", "volodymyrobrizan"], - "cat" : "social" - }, - { - "name" : "Docker Hub Users", - "uri_check" : "https://hub.docker.com/v2/users/{account}/", - "uri_pretty" : "https://hub.docker.com/u/{account}", - "e_code" : 200, - "e_string" : "\"uuid\":", - "m_string" : "\"message\":\"User not found\"", - "m_code" : 404, - "known" : ["dannapierskitoptal", "torvalds"], - "cat" : "coding" - }, - { - "name" : "Docker Hub Organizations", - "uri_check" : "https://hub.docker.com/v2/orgs/{account}/", - "uri_pretty" : "https://hub.docker.com/u/{account}", - "e_code" : 200, - "e_string" : "\"uuid\":", - "m_string" : "\"orgname\":[\"", - "m_code" : 404, - "known" : ["bitnami", "tensorflow"], - "cat" : "coding" - }, - { - "name" : "Donation Alerts", - "uri_check" : "https://www.donationalerts.com/api/v1/user/{account}/donationpagesettings", - "uri_pretty" : "https://www.donationalerts.com/r/{account}", - "e_code" : 200, - "e_string" : "\"data\":", - "m_code" : 202, - "m_string" : "\"success\":false", - "known" : ["gorou", "saku"], - "cat" : "finance" - }, - { - "name" : "Donatty", - "uri_check" : "https://api.donatty.com/users/find/{account}", - "uri_pretty" : "https://donatty.com/{account}", - "e_code" : 200, - "e_string" : "\"response\":", - "m_string" : "\"error\":\"internal error\"", - "m_code" : 404, - "known" : ["takaisekai", "fordmac"], - "cat" : "business", - "protection": ["cloudflare"] - }, - { - "name" : "donate.stream", - "uri_check" : "https://donate.stream/api/v1/streamer.get?path={account}&app=9f4e793cec820015d511dbc77b20c5c1", - "uri_pretty" : "https://donate.stream/{account}", - "e_code" : 200, - "e_string" : "\"response\":", - "m_string" : "\"message\":\"Not found\"", - "m_code" : 200, - "known" : ["requiemzxc_komaru", "hexttr"], - "cat" : "finance", - "protection": ["cloudflare"] - }, - { - "name" : "dot.cards", - "uri_check" : "https://dot.cards/{account}", - "e_code" : 200, - "e_string" : "status\": \"success", - "m_string" : "status\": \"username_not_found", - "m_code" : 200, - "known" : ["dakmusic", "jhartwell"], - "cat" : "business" - }, - { - "name" : "Dojoverse", - "uri_check" : "https://dojoverse.com/members/{account}/", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "Looks like you got lost!.", - "m_code" : 404, - "known" : ["eric", "danielrivera10927"], - "cat" : "hobby" - }, - { - "name" : "Dribbble", - "uri_check" : "https://dribbble.com/{account}", - "e_code" : 200, - "e_string" : " | Dribbble", - "m_string" : "(404)", - "m_code" : 404, - "known" : ["UI8", "keeplegend"], - "cat" : "art" - }, - { - "name" : "Droners", - "uri_check" : "https://droners.io/accounts/{account}/", - "e_code" : 200, - "e_string" : "- Professional Drone Pilot", - "m_string" : "(404)", - "m_code" : 302, - "known" : ["chriskahn", "swilken"], - "cat" : "hobby" - }, - { - "name" : "Drum", - "uri_check" : "https://drum.io/{account}/", - "e_code" : 200, - "e_string" : "firstName\": \"", - "m_string" : "Page not found", - "m_code" : 302, - "known" : ["huckcredibleshotz", "thesuccesspalette"], - "cat" : "hobby" - }, - { - "name" : "Duolingo", - "uri_check" : "https://www.duolingo.com/2017-06-30/users?username={account}&_=1628308619574", - "uri_pretty" : "https://www.duolingo.com/profile/{account}", - "e_code" : 200, - "e_string" : "joinedClassroomIds", - "m_string" : "\"users\" : []", - "m_code" : 200, - "known" : ["sdfsdf", "duolingo"], - "cat" : "hobby" - }, - { - "name" : "easyen", - "uri_check" : "https://easyen.ru/index/8-0-{account}", - "e_code" : 200, - "e_string" : "День рождения", - "m_string" : "Пользователь не найден", - "m_code" : 200, - "known" : ["wd"], - "cat" : "social" - }, - { - "name" : "Electrobel", - "uri_check" : "https://be.electrobel.org/register.ajax", - "uri_pretty" : "https://be.electrobel.org/{account}", - "post_body" : "action=checkUsername&username={account}", - "e_code" : 200, - "e_string" : "\"html\":\"Username existsPlease choose another\"", - "m_string" : "\"html\":\"Name is available\"", - "m_code" : 200, - "known" : ["wixel", "Gloomer"], - "cat" : "social", - "headers" : { - "Content-Type": "application/x-www-form-urlencoded" - } - }, - { - "name" : "Evolution CMS", - "uri_check" : "https://community.evocms.ru/users/?search={account}", - "e_code" : 200, - "e_string" : "id=\"user-search\"", - "m_string" : "", - "m_code" : 200, - "known" : ["Dmi3yy", "Pathologic"], - "cat" : "tech" - }, - { - "name" : "eBay", - "uri_check" : "https://www.ebay.com/usr/{account}", - "e_code" : 200, - "e_string" : "on eBay", - "m_string" : "The User ID you entered was not found", - "m_code" : 200, - "known" : ["the_gqs", "johnny"], - "cat" : "shopping" - }, - { - "name" : "ebay_stores", - "uri_check" : "https://www.ebay.com/str/{account}", - "e_code" : 200, - "e_string" : "| eBay Stores", - "m_string" : "Sorry, this store was not found.", - "m_code" : 410, - "known" : ["tactical", "tactical-security"], - "cat" : "shopping" - }, - { - "name" : "Engadget", - "uri_check" : "https://www.engadget.com/about/editors/{account}/", - "e_code" : 200, - "e_string" : "\"displayName\"", - "m_string" : ", - Engadget", - "m_code" : 200, - "known" : ["devindra-hardawar", "kris-holt"], - "cat" : "tech" - }, - { - "name" : "EPORNER", - "uri_check" : "https://www.eporner.com/profile/{account}/", - "e_code" : 200, - "e_string" : "Video/Pics views", - "m_string" : "Profile not found", - "m_code" : 404, - "known" : ["LAM_2030", "DianaX814"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Etsy", - "uri_check" : "https://www.etsy.com/people/{account}", - "e_code" : 200, - "e_string" : " favorite items - Etsy", - "m_string" : "Sorry, the member you are looking for does not exist", - "m_code" : 404, - "known" : ["david", "happiness"], - "cat" : "shopping" - }, - { - "name" : "Expressional.social (Mastodon Instance)", - "uri_check" : "https://expressional.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://expressional.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["jippi", "poolesen"], - "cat" : "social" - }, - { - "name" : "Eyeem", - "uri_check" : "https://www.eyeem.com/u/{account}", - "e_code" : 200, - "e_string" : "Marketplace", - "m_string" : "Not Found (404) | EyeEm", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "art" - }, - { - "name" : "F3", - "uri_check" : "https://f3.cool/{account}", - "e_code" : 200, - "e_string" : "@", - "m_string" : "Page Not Found - F3", - "m_code" : 404, - "known" : ["nick", "john"], - "cat" : "social" - }, - { - "name" : "FL.ru", - "uri_check" : "https://www.fl.ru/users/{account}/portfolio/", - "e_code" : 200, - "e_string" : "class=\"page-profile\"", - "m_string" : "<title>404 Not Found", - "m_code" : 404, - "known" : ["linig4", "polik100500"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "Fabswingers", - "uri_check" : "https://www.fabswingers.com/profile/{account}", - "e_code" : 200, - "e_string" : "View Profile", - "m_string" : "The user you tried to view doesn't seem to be on the site any more", - "m_code" : 200, - "known" : ["justusboth2013", "hellfireclub", "fabswingers.com"], - "cat" : "dating" - }, - { - "name" : "Freelance.RU", - "uri_check" : "https://freelance.ru/{account}", - "e_code" : 200, - "e_string" : "class=\" user-top-container user-portfolio\"", - "m_string" : "class=\"msg_error alert alert-danger\"", - "m_code" : 404, - "known" : ["sunsey", "semanticlan"], - "cat" : "business" - }, - { - "name" : "freeCodeCamp", - "uri_check" : "https://api.freecodecamp.org/api/users/get-public-profile?username={account}", - "uri_pretty" : "https://www.freecodecamp.org/{account}", - "e_code" : 200, - "e_string" : "\"user\":", - "m_string" : "\"error\":\"User not found\"", - "m_code" : 404, - "known" : ["zaira", "CaesarSage"], - "cat" : "coding", - "protection" : ["cloudflare"] - }, - { - "name" : "FACEIT", - "uri_check" : "https://www.faceit.com/api/users/v1/nicknames/{account}", - "uri_pretty" : "https://www.faceit.com/en/players/{account}", - "e_code" : 200, - "e_string" : "\"result\":\"OK\"", - "m_string" : "\"message\":\"user not found\"", - "m_code" : 404, - "known" : ["s1mple", "w0nderful"], - "cat" : "gaming" - }, - { - "name" : "Facebook", - "uri_check" : "https://www.facebook.com/{account}/", - "e_code" : 200, - "e_string" : "__isProfile", - "m_string" : "Facebook", - "m_code" : 200, - "known" : ["john.miniolic", "adam"], - "cat" : "social" - }, - { - "name" : "Faktopedia", - "uri_check" : "https://faktopedia.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza fakty od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["janek", "ania"], - "cat" : "images" - }, - { - "name" : "FanCentro", - "uri_check" : "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", - "uri_pretty" : "https://fancentro.com/{account}/", - "e_code" : 200, - "e_string" : "\"status\":true", - "m_string" : "\"status\":false", - "m_code" : 200, - "known" : ["medroxy","miaaamador"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Fandom", - "uri_check" : "https://www.fandom.com/u/{account}", - "e_code" : 200, - "e_string" : "| Profile | Fandom", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["EJacobs94", "Drew_Dietsch"], - "cat" : "gaming" - }, - { - "name" : "fanpop", - "uri_check" : "https://www.fanpop.com/fans/{account}", - "e_code" : 200, - "e_string" : "Fanpopping since", - "m_string" : "", - "m_code" : 302, - "known" : ["test", "johndoe"], - "cat" : "social" - }, - { - "name" : "Fark", - "uri_check" : "https://www.fark.com/users/{account}", - "e_code" : 200, - "e_string" : "Fark account number", - "m_string" : "Tastes like chicken.", - "m_code" : 200, - "known" : ["bob", "bobby"], - "cat" : "social" - }, - { - "name" : "fansly", - "uri_check" : "https://apiv2.fansly.com/api/v1/account?usernames={account}", - "uri_pretty" : "https://fansly.com/{account}/posts", - "e_code" : 200, - "e_string" : "username", - "m_string" : "response: []", - "m_code" : 200, - "known" : ["Mikomin","test"], - "cat" : "xx NSFW xx" - }, - { - "name" : "FatSecret", - "uri_check" : "https://www.fatsecret.com/member/{account}", - "e_code" : 200, - "e_string" : "- Member", - "m_string" : "Your Key to Success", - "m_code" : 302, - "known" : ["bob", "bobby"], - "cat" : "health" - }, - { - "name" : "Federated.press (Mastodon Instance)", - "uri_check" : "https://federated.press/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://federated.press/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["wood", "cliffcheney"], - "cat" : "social" - }, - { - "name" : "figma", - "uri_check" : "https://www.figma.com/@{account}", - "e_code" : 200, - "e_string" : ") on Figma Community", - "m_string" : "The page you are looking for can't be found.", - "m_code" : 404, - "known" : ["bob", "mike"], - "cat" : "tech" - }, - { - "name" : "Filmweb", - "uri_check" : "https://www.filmweb.pl/user/{account}", - "e_code" : 200, - "e_string" : "profil w Filmweb", - "m_string" : "Varnish 404", - "m_code" : 200, - "known" : ["test", "Marcin_P"], - "cat" : "hobby" - }, - { - "name" : "Filmot Channel Search", - "uri_check" : "https://filmot.com/channelsearch/{account}", - "e_code" : 200, - "e_string" : "Subscribers", - "m_string" : "No channels found", - "m_code" : 200, - "known" : ["bobicraft", "parodiadoranimado"], - "cat" : "archived" - }, - { - "name" : "Filmot Unlisted Videos", - "uri_check" : "https://filmot.com/unlistedSearch?channelQuery={account}&sortField=uploaddate&sortOrder=desc&", - "e_code" : 200, - "e_string" : "clips found", - "m_string" : "No results", - "m_code" : 200, - "known" : ["holasoygerman", "elrubiusomg"], - "cat" : "archived" - }, - { - "name" : "fine_art_america", - "uri_check" : "https://fineartamerica.com/profiles/{account}", - "e_code" : 200, - "e_string" : "Shop for artwork by", - "m_string" : "Browse through millions of independent artists in our extensive", - "m_code" : 301, - "known" : ["scott-norris", "mary-helmreich"], - "cat" : "shopping" - }, - { - "name" : "Fiverr", - "uri_check" : "https://www.fiverr.com/{account}", - "e_code" : 200, - "e_string" : "member-since", - "m_string" : "", - "m_code" : 302, - "known" : ["yellowdd", "samanvay"], - "cat" : "shopping" - }, - { - "name" : "Flickr", - "uri_check" : "https://www.flickr.com/photos/{account}/", - "e_code" : 200, - "e_string" : "| Flickr", - "m_string" : "", - "m_code" : 404, - "known" : ["glaciernps", "test"], - "cat" : "images" - }, - { - "name" : "Flipboard", - "uri_check" : "https://flipboard.com/@{account}", - "e_code" : 200, - "e_string" : ") on Flipboard", - "m_string" : "", - "m_code" : 404, - "known" : ["cosmopolitan", "Mashable"], - "cat" : "tech" - }, - { - "name" : "flowcode", - "uri_check" : "https://www.flowcode.com/page/{account}", - "e_code" : 200, - "e_string" : ";s Flowpage", - "m_string" : "Nobody's reserved this Flowpage yet.", - "m_code" : 404, - "known" : ["evdokia", "irina"], - "cat" : "social" - }, - { - "name" : "Folkd", - "uri_check" : "https://www.folkd.com/?app=core&module=system&controller=ajax&do=usernameExists&input={account}", - "uri_pretty" : "https://www.folkd.com/search/?q={account}&quick=1&type=core_members", - "e_code" : 200, - "e_string" : "\"message\":\"That display name is in use by another member.\"", - "m_string" : "\"result\":\"ok\"", - "m_code" : 200, - "known" : ["smartplayapk", "abdulmerfantz"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "Fodors Forum", - "uri_check" : "https://www.fodors.com/community/profile/{account}/forum-activity", - "e_code" : 200, - "e_string" : "User Profile | Fodor’s Travel", - "m_string" : "Plan Your Trip Online", - "m_code" : 302, - "known" : ["jdstraveler", "gooster"], - "cat" : "social" - }, - { - "name" : "Fortnite Tracker", - "uri_check" : "https://fortnitetracker.com/profile/all/{account}", - "e_code" : 200, - "e_string" : "s Fortnite Stats - Fortnite Tracker", - "m_string" : "Fortnite Player Stats -", - "m_code" : 404, - "known" : ["steph", "sam"], - "cat" : "gaming" - }, - { - "name" : "forumprawne.org", - "uri_check" : "https://forumprawne.org/members/{account}.html", - "e_code" : 200, - "e_string" : "Wiadomość", - "m_string" : "", - "m_code" : 500, - "known" : ["test", "test2"], - "cat" : "misc" - }, - { - "name" : "Fosstodon.org (Mastodon Instance)", - "uri_check" : "https://fosstodon.org/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://fosstodon.org/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["linux", "Phil35"], - "cat" : "social" - }, - { - "name" : "fotka", - "uri_check" : "https://api.fotka.com/v2/user/dataStatic?login={account}", - "uri_pretty" : "https://fotka.com/profil/{account}", - "e_code" : 200, - "e_string" : "profil", - "m_string" : "ERROR", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "social" - }, - { - "name" : "Fotolog Archived Profile", - "uri_check" : "https://archive.org/wayback/available?url=https://www.fotolog.com/{account}", - "uri_pretty" : "https://web.archive.org/web/2/fotolog.com/{account}", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["x_zudex_x", "angelito"], - "cat" : "archived" - }, - { - "name" : "Foursquare", - "uri_check" : "https://foursquare.com/{account}", - "e_code" : 200, - "e_string" : "class=\"userProfile2Page\"", - "m_string" : "", - "m_code" : 308, - "known" : ["j0hn", "ncyp23"], - "cat" : "social" - }, - { - "name" : "Freelancehunt Freelancer", - "uri_check" : "https://freelancehunt.com/en/freelancer/{account}.html", - "e_code" : 200, - "e_string" : "\"@id\":\"https://freelancehunt.com/en/freelancers\"", - "m_string" : "User not found.", - "m_code" : 404, - "known" : ["rhythmdev_top", "Zainka"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "Freelancehunt Employer", - "uri_check" : "https://freelancehunt.com/en/employer/{account}.html", - "e_code" : 200, - "e_string" : "\"@id\":\"https://freelancehunt.com/en/employers\"", - "m_string" : "User not found.", - "m_code" : 404, - "known" : ["vadym1232", "Dekovital"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "Freelance.ua", - "uri_check" : "https://freelance.ua/user/{account}/", - "e_code" : 200, - "e_string" : "p-profile-avatar", - "m_string" : "Схоже, дана сторінка не знайдена", - "m_code" : 404, - "known" : ["tkachenkoalex", "oleksandrseo1"], - "cat" : "social" - }, - { - "name" : "FreeSteamKeys", - "uri_check" : "https://www.freesteamkeys.com/members/{account}/", - "e_code" : 200, - "e_string" : "item-header-avatar", - "m_string" : "error404", - "m_code" : 404, - "known" : ["giveaway-su", "keygenerator"], - "cat" : "gaming" - }, - { - "name" : "Freelancer", - "uri_check" : "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={account}&compact=true", - "uri_pretty" : "https://www.freelancer.com/u/{account}", - "e_code" : 200, - "e_string" : "\"users\":{\"", - "m_string" : "\"users\":{}", - "m_code" : 200, - "known" : ["desiaunty", "creatvmind"], - "cat" : "business" - }, - { - "name" : "freesound", - "uri_check" : "https://freesound.org/people/{account}/", - "e_code" : 200, - "e_string" : "Has been a user for", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["test", "JohnDoe"], - "cat" : "music" - }, - { - "name" : "FriendFinder", - "uri_check" : "https://friendfinder.com/profile/{account}", - "e_code" : 200, - "e_string" : "Last Visit:", - "m_string" : "302 Found", - "m_code" : 302, - "known" : ["alex56", "john"], - "cat" : "dating" - }, - { - "name" : "FriendFinder-X", - "uri_check" : "https://www.friendfinder-x.com/profile/{account}", - "e_code" : 200, - "e_string" : "'s Dating Profile on FriendFinder-x", - "m_string" : "The document has moved", - "m_code" : 302, - "known" : ["john"], - "cat" : "dating" - }, - { - "name" : "Fur Affinity", - "uri_check" : "https://www.furaffinity.net/user/{account}/", - "e_code" : 200, - "e_string" : "", - "m_string" : "

System Error

", - "m_code" : 200, - "known" : ["karintina", "mikrogoat"], - "cat" : "images" - }, - { - "name" : "Gab", - "uri_check" : "https://gab.com/api/v1/account_by_username/{account}", - "uri_pretty" : "https://gab.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "\"error\":\"Record not found\"", - "m_code" : 404, - "known" : ["RealMarjorieGreene", "LaurenBoebert"], - "cat" : "political" - }, - { - "name" : "game_debate", - "uri_check" : "https://www.game-debate.com/profile/{account}", - "e_code" : 200, - "e_string" : "| , , GB pc game performance", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["Johnboy", "Crazy"], - "cat" : "gaming" - }, - { - "name" : "Game Jolt", - "uri_check" : "https://gamejolt.com/site-api/web/profile/@{account}/", - "uri_pretty" : "https://gamejolt.com/@{account}", - "e_code" : 200, - "e_string" : "created_on", - "m_string" : "null,", - "m_code" : 404, - "known" : ["nilllzz", "KorbloxTeams"], - "cat" : "gaming" - }, - { - "name" : "Gamer DVR", - "uri_check" : "https://gamerdvr.com/gamer/{account}", - "e_code" : 200, - "e_string" : "class=\"gamerpic\"", - "m_string" : "You are being <", - "m_code" : 302, - "known" : ["dnlunger", "punksxe"], - "cat" : "gaming" - }, - { - "name" : "Gamespot", - "uri_check" : "https://www.gamespot.com/profile/{account}/summary/activity/?ajax", - "uri_pretty" : "https://www.gamespot.com/profile/{account}/", - "e_code" : 200, - "e_string" : "\"success\":true", - "m_string" : "\"success\":false", - "m_code" : 200, - "known" : ["alice", "bob"], - "cat" : "gaming", - "protection" : ["cloudflare"] - }, - { - "name" : "Garmin connect", - "uri_check" : "https://connect.garmin.com/modern/profile/{account}", - "e_code" : 200, - "e_string" : "window.ERROR_VIEW = null", - "m_string" : "resourceNotFoundRoute", - "m_code" : 200, - "known" : ["tommy", "cderalow"], - "cat" : "health" - }, - { - "name" : "GDBrowser", - "uri_check" : "https://gdbrowser.com/api/profile/{account}", - "uri_pretty" : "https://gdbrowser.com/u/{account}", - "e_code" : 200, - "e_string" : "\"accountID\":", - "m_string" : "-1", - "m_code" : 500, - "known" : ["SorkoPiko", "Subwoofer"], - "cat" : "gaming" - }, - { - "name" : "GeeksForGeeks", - "uri_check" : "https://authapi.geeksforgeeks.org/api-get/user-profile-info/?handle={account}", - "uri_pretty" : "https://www.geeksforgeeks.org/user/{account}/", - "e_code" : 200, - "e_string" : "\"message\":\"data retrieved successfully\"", - "m_code" : 400, - "m_string" : "\"message\":\"User not found!\"", - "known" : ["nath_789", "harshrajsinghsiwan", "igovindindia"], - "cat" : "coding" - }, - { - "name" : "Geocaching", - "uri_check" : "https://www.geocaching.com/p/?u={account}", - "e_code" : 200, - "e_string" : "Groundspeak - User Profile", - "m_string" : "Error 404: DNF", - "m_code" : 404, - "known" : ["moun10bike", "niraD"], - "cat" : "social" - }, - { - "name" : "getmonero", - "uri_check" : "https://forum.getmonero.org/user/{account}", - "e_code" : 200, - "e_string" :"Monero | User", - "m_string" : "Monero | Page not found. Error: 404", - "m_code" : 200, - "known" : ["silverfox", "monero"], - "cat" : "misc" - }, - { - "name" : "Gettr", - "uri_check" : "https://api.gettr.com/s/user/{account}/exist", - "uri_pretty" : "https://gettr.com/user/{account}", - "e_code" : 200, - "e_string" : "\"success\":true", - "m_string" : "\"success\":false", - "m_code" : 200, - "known" : ["gettr", "support"], - "cat" : "social" - }, - { - "name" : "Gigapan", - "uri_check" : "https://www.gigapan.com/profiles/{account}", - "e_code" : 200, - "e_string" : "width=\"100\"", - "m_string" : "View Gigapans", - "m_code" : 404, - "known" : ["test", "lucahammer"], - "cat" : "hobby" - }, - { - "name" : "Giphy (Channel)", - "uri_check" : "https://giphy.com/channel/{account}", - "e_code" : 200, - "e_string" : "\\\"user_id\\\"", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["teddy_99", "LastYear"], - "cat" : "images", - "protection" : ["other"] - }, - { - "name" : "Gitea", - "uri_check" : "https://gitea.com/{account}", - "e_code" : 200, - "e_string" : "class=\"page-content user profile\"", - "m_string" : "class=\"status-page-error\"", - "m_code" : 404, - "known" : ["xin", "dev"], - "cat" : "coding" - }, - { - "name" : "giters", - "uri_check" : "https://giters.com/{account}", - "e_code" : 200, - "e_string" : " - Giters", - "m_string" : "This page could not be found", - "m_code" : 404, - "known" : ["WebBreacher", "C3n7ral051nt4g3ncy"], - "cat" : "coding" - }, - { - "name" : "GitHub", - "uri_check" : "https://api.github.com/users/{account}", - "uri_pretty" : "https://github.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "\"status\": \"404\"", - "m_code" : 404, - "known" : ["test", "WebBreacher"], - "cat" : "coding", - "headers" : { - "User-Agent" : "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" - } - }, - { - "name" : "GitHub Gists", - "uri_check" : "https://api.github.com/users/{account}/gists", - "uri_pretty" : "https://gits.github.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "\"status\": \"404\"", - "m_code" : 404, - "known" : ["teymurgahramanov", "WebBreacher"], - "cat" : "coding", - "headers" : { - "User-Agent" : "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" - } - }, - { - "name" : "GitLab", - "uri_check" : "https://gitlab.com/users/{account}/exists", - "uri_pretty" : "https://gitlab.com/{account}", - "e_code" : 200, - "e_string" : "\"exists\":true", - "m_string" : "\"exists\":false", - "m_code" : 200, - "known" : ["skennedy", "KennBro"], - "cat" : "coding" - }, - { - "name" : "Gitee", - "uri_check" : "https://gitee.com/{account}", - "e_code" : 200, - "e_string" : "class=\"ui container user_page\"", - "m_string" : "class=\"container error midCenter\"", - "m_code" : 404, - "known" : ["maxim", "fupengfei"], - "cat" : "coding" - }, - { - "name" : "gloria.tv", - "uri_check" : "https://gloria.tv/{account}", - "e_code" : 200, - "e_string" : "Last online", - "m_string" : "Page unavailable", - "m_code" : 404, - "known" : ["Irapuato", "en.news"], - "cat" : "social" - }, - { - "name" : "GNOME GitLab", - "uri_check" : "https://gitlab.gnome.org/api/v4/users?username={account}", - "uri_pretty" : "https://gitlab.gnome.org/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "[]", - "m_code" : 200, - "known" : ["MystikNinja", "0xMRTT"], - "cat" : "coding", - "protection" : ["other"] - }, - { - "name" : "GNOME Shell Extensions", - "uri_check" : "https://extensions.gnome.org/accounts/profile/{account}", - "e_code" : 200, - "e_string" : "class=\"user-details\"", - "m_string" : "

404 - Page not Found

", - "m_code" : 404, - "known" : ["johnny", "dev"], - "cat" : "coding" - }, - { - "name" : "GOG", - "uri_check" : "https://www.gog.com/u/{account}", - "e_code" : 200, - "e_string" : "window.profilesData.profileUser", - "m_code" : 302, - "m_string" : "href=\"http://www.gog.com/404\"", - "known" : ["user", "Admin"], - "cat" : "gaming" - }, - { - "name" : "Goodgame_Russia", - "uri_check" : "https://goodgame.ru/channel/{account}/", - "e_code" : 200, - "e_string" : "channel_id", - "m_string" : "Такой страницы не существует", - "m_code" : 400, - "known" : ["ejysarmat", "JacksonTV"], - "cat" : "gaming" - }, - { - "name" : "gpodder.net", - "uri_check" : "https://gpodder.net/user/{account}/", - "e_code" : 200, - "e_string" : "mdash; gpodder.net", - "m_string" : "404 - Not found", - "m_code" : 404, - "known" : ["blue", "red"], - "cat" : "music" - }, - { - "name" : "grandprof", - "uri_check" : "https://grandprof.org/communaute/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "Mauvaise pioche", - "m_code" : 404, - "known" : ["mohamed01", "amine"], - "cat" : "misc" - }, - { - "name" : "Gravatar", - "uri_check" : "https://en.gravatar.com/{account}.json", - "uri_pretty" : "https://en.gravatar.com/{account}", - "e_code" : 200, - "e_string" : "entry", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["test"], - "cat" : "images" - }, - { - "name" : "Graphics.social (Mastodon Instance)", - "uri_check" : "https://graphics.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://graphics.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["brian", "moonpotato"], - "cat" : "social" - }, - { - "name" : "GTAinside.com", - "uri_check" : "https://www.gtainside.com/user/{account}", - "e_code" : 200, - "e_string" : "userpage_user", - "m_string" : "

404 Not Found", - "m_code" : 200, - "known" : ["daniel", "franco"], - "cat" : "gaming" - }, - { - "name" : "gumroad", - "uri_check" : "https://{account}.gumroad.com/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "s profile picture", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["ellietalksmoney", "reallyniceimages"], - "cat" : "shopping" - }, - { - "name" : "Habr", - "uri_check" : "https://habr.com/ru/users/{account}/", - "e_code" : 200, - "e_string" : "tm-page tm-user", - "m_string" : "tm-error-message", - "m_code" : 404, - "known" : ["Bo0oM", "AlhimicMan"], - "cat" : "social" - }, - { - "name" : "Habr Freelancer", - "uri_check" : "https://freelance.habr.com/freelancers/{account}", - "e_code" : 200, - "e_string" : "user-profile profile-blocks", - "m_string" : "icon_user_locked", - "m_code" : 404, - "known" : ["Bo0oM", "Akloom"], - "cat" : "social" - }, - { - "name" : "Habr Employer", - "uri_check" : "https://freelance.habr.com/freelancers/{account}/employer", - "e_code" : 200, - "e_string" : "user-profile profile-blocks", - "m_string" : "icon_user_locked", - "m_code" : 404, - "known" : ["aufdk", "Danvantariy"], - "cat" : "social" - }, - { - "name" : "Habr Q&A", - "uri_check" : "https://qna.habr.com/user/{account}", - "e_code" : 200, - "e_string" : "class=\"page-header__info\"", - "m_string" : "icon_error_404", - "m_code" : 404, - "known" : ["Masthead", "dmitriypur"], - "cat" : "coding" - }, - { - "name" : "HulkShare", - "uri_check" : "https://www.hulkshare.com/{account}", - "e_code" : 200, - "e_string" : "id=\"profile_image\"", - "m_string" : "Invalid user.", - "m_code" : 200, - "known" : ["djjamesryan", "dxcrew2"], - "cat" : "social" - }, - { - "name" : "Habbo.com", - "uri_check" : " https://www.habbo.com/api/public/users?name={account}", - "uri_pretty" : " https://www.habbo.com/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["john", "michelle"], - "cat" : "gaming" - }, - { - "name" : "Habbo.es", - "uri_check" : " https://www.habbo.es/api/public/users?name={account}", - "uri_pretty" : " https://www.habbo.es/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "not-found", - "m_code" : 404, - "known" : ["juan", "michelle"], - "cat" : "gaming" - }, - { - "name" : "Habbo.com.br", - "uri_check" : "https://www.habbo.com.br/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.com.br/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["jeaniucas", "cellao"], - "cat" : "gaming" - }, - { - "name" : "Habbo.de", - "uri_check" : "https://www.habbo.de/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.de/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["klaus", "angelinaa"], - "cat" : "gaming" - }, - { - "name" : "Habbo.com.tr", - "uri_check" : "https://www.habbo.com.tr/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.com.tr/profile/{account}", - "e_code" : 200, - "e_string" : "currentLevel", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["fatma9180", "elektrikci"], - "cat" : "gaming" - }, - { - "name" : "Habbo.fr", - "uri_check" : "https://www.habbo.fr/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.fr/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["2006", "sicilienne"], - "cat" : "gaming" - }, - { - "name" : "Habbo.it", - "uri_check" : "https://www.habbo.it/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.it/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["samsebek", "papablu"], - "cat" : "gaming" - }, - { - "name" : "Habbo.nl", - "uri_check" : "https://www.habbo.nl/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.nl/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["XOTWOD.xx", "xoSorxo"], - "cat" : "gaming" - }, - { - "name" : "Habbo.fi", - "uri_check" : "https://www.habbo.fi/api/public/users?name={account}", - "uri_pretty" : "https://www.habbo.fi/profile/{account}", - "e_code" : 200, - "e_string" : "uniqueId\":", - "m_string" : "error\": \"not-found", - "m_code" : 404, - "known" : ["cucumberz", "Yasline"], - "cat" : "gaming" - }, - { - "name" : "Habtium", - "uri_check" : "https://habtium.es/{account}", - "e_code" : 200, - "e_string" : "
Oops!", - "m_code" : 404, - "known" : ["diegjeremy", "suigetsu"], - "cat" : "gaming" - }, - { - "name" : "Hackaday.io", - "uri_check" : "https://hackaday.io/{account}", - "strip_bad_char" : "-", - "e_code" : 200, - "e_string" : "class=\"following-container \"", - "m_string" : "class=\"error-nav\"", - "m_code" : 404, - "known" : ["john", "adam"], - "cat" : "hobby" - }, - { - "name" : "hackrocks", - "uri_check" : "https://hackrocks.com/api/users/profile", - "uri_pretty" : "https://hackrocks.com/id/{account}", - "post_body" : "{\"username\":\"{account}\"}", - "e_code" : 200, - "e_string" : "\"username\":", - "m_string" : "\"error_data\":\"USER_NOT_FOUND\"", - "m_code" : 404, - "known" : ["mespejo", "NeoWaveCode"], - "cat" : "tech", - "headers" : { - "Accept": "application/json, text/plain, */*", - "Content-Type": "application/json" - } - }, - { - "name" : "Hacker News", - "uri_check" : "https://news.ycombinator.com/user?id={account}", - "e_code" : 200, - "e_string" : "created:", - "m_string" : "No such user.", - "m_code" : 200, - "known" : ["mubix", "egypt"], - "cat" : "tech" - }, - { - "name" : "Hackernoon", - "uri_check" : "https://hackernoon.com/_next/data/foL6JC7ro2FEEMD-gMKgQ/u/{account}.json", - "uri_pretty" : "https://hackernoon.com/u/{account}", - "e_code" : 200, - "e_string" : "\"profile\"", - "m_string" : "__N_REDIRECT", - "m_code" : 200, - "known" : ["john", "alex"], - "cat" : "tech" - }, - { - "name" : "hackerearth", - "uri_check" : "https://www.hackerearth.com/@{account}", - "e_code" : 200, - "e_string" : "| Developer Profile on HackerEarth", - "m_string" : "404 | HackerEarth", - "m_code" : 200, - "known" : ["peter", "liam"], - "cat" : "coding" - }, - { - "name" : "HackerOne", - "uri_check" : "https://hackerone.com/graphql", - "uri_pretty" : "https://hackerone.com/{account}", - "post_body" : "{\"query\":\"query($url: URI!) {\\n resource(url: $url) {\\n ... on User { username }\\n }\\n }\",\"variables\":{\"url\":\"{account}\"}}", - "e_code" : 200, - "e_string" : "\"username\":", - "m_string" : "\"type\":\"NOT_FOUND\"", - "m_code" : 200, - "known" : ["born2hack", "godiego"], - "cat" : "tech", - "headers" : { - "Content-Type": "application/json" - } - }, - { - "name" : "HackerRank", - "uri_check" : "https://www.hackerrank.com/rest/contests/master/hackers/{account}/profile", - "uri_pretty" : "https://www.hackerrank.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"model\":", - "m_string" : "\"error\":\"Not Found\"", - "m_code" : 404, - "known" : ["FMota", "adepanges"], - "cat" : "tech", - "protection" : ["other"] - }, - { - "name" : "Hackster", - "uri_check" : "https://www.hackster.io/{account}", - "e_code" : 200, - "e_string" : "data-hypernova-key=\"UserProfile\"", - "m_string" : "id=\"error\"", - "m_code" : 404, - "known" : ["hendra", "sologithu"], - "cat" : "coding" - }, - { - "name" : "hamaha", - "uri_check" : "https://hamaha.net/{account}", - "e_code" : 200, - "e_string" : "- трейдинг форекс фьючерсы акции фондовый рынок ", - "m_string" : "HAMAHA Биткоин форум.", - "m_code" : 200, - "known" : ["oleg", "misha"], - "cat" : "finance" - }, - { - "name" : "Hanime", - "uri_check" : "https://hanime.tv/channels/{account}", - "e_code" : 200, - "e_string" : "Channel Views", - "m_code" : 302, - "m_string" : "DYNAMIC", - "known" : ["thecolorred-7902", "arisu-cum-stats-2787"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Hcommons.social (Mastodon Instance)", - "uri_check" : "https://hcommons.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://hcommons.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["hello", "iuulaio"], - "cat" : "social" - }, - { - "name" : "Heylink", - "uri_check" : "https://heylink.me/{account}/", - "e_code" : 200, - "e_string" : "HeyLink.me |", - "m_string" : "We can't find the page that you're looking for :(", - "m_code" : 404, - "known" : ["mohammed13", "johnny"], - "cat" : "misc" - }, - { - "name" : "hiberworld", - "uri_check" : "https://hiberworld.com/user/{account}", - "e_code" : 200, - "e_string" : "Member since ", - "m_string" : "Looks like you got lost ", - "m_code" : 200, - "known" : ["Axeman", "Silver01"], - "cat" : "gaming" - }, - { - "name" : "HiHello", - "uri_check" : "https://www.hihello.me/author/{account}", - "e_code" : 200, - "e_string" : "HiHello Blog Author: ", - "m_string" : "Well, this is awkward", - "m_code" : 404, - "known" : ["pascal-theriault", "kortnee-paiha"], - "cat" : "business" - }, - { - "name" : "Historians.social (Mastodon Instance)", - "uri_check" : "https://historians.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://historians.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["lizcovart", "Ejoiner"], - "cat" : "social" - }, - { - "name" : "HomeDesign3D", - "uri_check" : "https://en.homedesign3d.net/user/{account}", - "e_code" : 200, - "e_string" : "userspace", - "m_string" : "An Error Occurred: Internal Server Error", - "m_code" : 500, - "known" : ["carlos01", "paul"], - "cat" : "hobby" - }, - { - "name" : "Holopin", - "uri_check" : "https://holopin.io/@{account}#", - "e_code" : 200, - "e_string" : " | Holopin", - "m_code" : 200, - "m_string" : "Not found
", - "known" : ["holo", "test"], - "cat" : "hobby" - }, - { - "name" : "Hometech.social (Mastodon Instance)", - "uri_check" : "https://hometech.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://hometech.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["one4ll", "seth"], - "cat" : "social" - }, - { - "name" : "hoo.be", - "uri_check" : "https://hoo.be/{account}", - "e_code" : 200, - "e_string" : "--profile-name-color", - "m_string" : "Page Not Found

", - "m_code" : 404, - "known" : ["chrishemsworth", "alextackie"], - "cat" : "business" - }, - { - "name" : "Hostux.social (Mastodon Instance)", - "uri_check" : "https://hostux.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://hostux.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["alarig", "rsmela"], - "cat" : "social" - }, - { - "name" : "Houzz", - "uri_check" : "https://www.houzz.com/user/{account}", - "e_code" : 200, - "e_string" : "Followers", - "m_string" : "Page Not Found", - "m_code" : 404, - "known" : ["liam", "alex"], - "cat" : "hobby" - }, - { - "name" : "HubPages", - "uri_check" : "https://hubpages.com/@{account}", - "e_code" : 200, - "e_string" : "name\">Followers", - "m_string" : "Sorry, that user does not exist", - "m_code" : 404, - "known" : ["greeneyes1607", "lmmartin"], - "cat" : "blog" - }, - { - "name" : "Hubski", - "uri_check" : "https://hubski.com/user/{account}", - "e_code" : 200, - "e_string" : "'s profile", - "m_string" : "No such user.", - "m_code" : 200, - "known" : ["john", "blue"], - "cat" : "social" - }, - { - "name" : "HudsonRock", - "uri_check" : "https://cavalier.hudsonrock.com/api/json/v2/osint-tools/search-by-username?username={account}", - "e_code" : 200, - "e_string" : "This username is associated with a computer that was infected by an info-stealer", - "m_string" : "This username is not associated with a computer infected by an info-stealer", - "m_code" : 200, - "known" : ["testadmin", "testadmin1"], - "cat" : "tech" - }, - { - "name" : "hugging_face", - "uri_check" : "https://huggingface.co/{account}", - "e_code" : 200, - "e_string" : "thumbnails.huggingface.co/social-thumbnails/", - "m_string" : "Sorry, we can't find the page you are looking for.", - "m_code" : 404, - "known" : ["hack", "dev"], - "cat" : "tech" - }, - { - "name" : "Iconfinder", - "uri_check" : "https://www.iconfinder.com/{account}", - "e_code" : 200, - "e_string" : "data-to-user-id=", - "m_string" : "We couldn't find the page you are looking for.", - "m_code" : 404, - "known" : ["roundicons", "iconfinder"], - "cat" : "images" - }, - { - "name" : "icq-chat", - "uri_check" : "https://icq.icqchat.co/members/{account}/", - "e_code" : 200, - "e_string" : "Last seen", - "m_string" : "Oops! We ran into some problems", - "m_code" : 404, - "known" : ["brookenora.54", "bigdaddy.77"], - "cat" : "social" - }, - { - "name" : "IFTTT", - "uri_check" : "https://ifttt.com/p/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "The requested page or file does not exist", - "m_code" : 404, - "known" : ["nr9992", "sss90"], - "cat" : "misc" - }, - { - "name" : "ifunny", - "uri_check" : "https://ifunny.co/user/{account}", - "e_code" : 200, - "e_string" :"subscribers", - "m_string" : "404 - page not found", - "m_code" : 404, - "known" : ["hacker", "john"], - "cat" : "misc" - }, - { - "name" : "igromania", - "uri_check" : "http://forum.igromania.ru/member.php?username={account}", - "e_code" : 200, - "e_string" : "Форум Игромании - Просмотр профиля:", - "m_string" : "Пользователь не зарегистрирован и не имеет профиля для просмотра.", - "m_code" : 200, - "known" : ["bob", "blue"], - "cat" : "social" - }, - { - "name" : "ilovegrowingmarijuana", - "uri_check" : "https://support.ilovegrowingmarijuana.com/u/{account}", - "e_code" : 200, - "e_string" : " Profile - ", - "m_string" : "Oops! That page doesn’t exist or is private", - "m_code" : 404, - "known" : ["ILGM.Stacy", "Mosaicmind9x"], - "cat" : "social" - }, - { - "name" : "imagefap", - "uri_check" : "https://www.imagefap.com/profile/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "Invalid uid", - "m_code" : 200, - "known" : ["lover03", "SecretSide15"], - "cat" : "xx NSFW xx" - }, - { - "name" : "ImageShack", - "uri_check" : "https://imageshack.com/user/{account}", - "e_code" : 200, - "e_string" : "s Images", - "m_string" : "", - "m_code" : 302, - "known" : ["test"], - "cat" : "images" - }, - { - "name" : "iMGSRC.RU", - "uri_check" : "https://imgsrc.ru/main/user.php?lang=ru&user={account}", - "e_code" : 200, - "e_string" : "Присоединился", - "m_string" : "", - "m_code" : 302, - "known" : ["natalisn","andydiamond","natalyck"], - "cat" : "images" - }, - { - "name" : "imgur", - "uri_check" : "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", - "uri_pretty" : "https://imgur.com/user/{account}/about", - "e_code" : 200, - "e_string" : "created_at", - "m_string" : "unable to find account", - "m_code" : 404, - "known" : ["OliverClothesoff70", "DadOnTheInternet"], - "cat" : "images" - }, - { - "name" : "inaturalist", - "uri_check" : "https://inaturalist.nz/people/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["greg", "tom"], - "cat" : "hobby" - }, - { - "name" : "Independent academia", - "uri_check" : "https://independent.academia.edu/{account}", - "e_code" : 200, - "e_string" : "- Academia.edu", - "m_string" : "Academia.edu", - "m_code" : 404, - "known" : ["peter", "LiamM"], - "cat" : "hobby" - }, - { - "name" : "InkBunny", - "uri_check" : "https://inkbunny.net/{account}", - "e_code" : 200, - "e_string" : "Profile | Inkbunny, the Furry Art Community", - "m_string" : "Members | Inkbunny, the Furry Art Community", - "m_code" : 302, - "known" : ["AdminBunny", "test"], - "cat" : "xx NSFW xx" - }, - { - "name" : "InsaneJournal", - "uri_check" : "https://{account}.insanejournal.com/profile", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "User:", - "m_string" : "The requested URL /profile was not found on this server", - "m_code" : 200, - "known" : ["test", "pint-sized", "acroamatica"], - "cat" : "social" - }, - { - "name" : "Instagram", - "uri_pretty" : "https://instagram.com/{account}", - "uri_check" : "https://www.picuki.com/profile/{account}", - "e_code" : 200, - "e_string" : "Instagram public profile with posts", - "m_string" : "Nothing found!", - "m_code" : 404, - "known" : ["katyperry", "kirbstr"], - "cat" : "social" - }, - { - "name" : "Instagram (Imginn)", - "uri_check" : "https://imginn.com/{account}/", - "e_code" : 200, - "e_string" : "userinfo", - "m_string" : "page-error notfound", - "m_code" : 404, - "known" : ["therock", "ramarim"], - "cat" : "social", - "protection" : ["cloudflare"] - }, - { - "name" : "Instagram2", - "uri_pretty" : "https://instagram.com/{account}", - "uri_check" : "https://dumpoir.com/v/{account}", - "e_code" : 200, - "e_string" : "Instagram Stories, Profile, Posts and Followers View Anonymous", - "m_string" : "We are sorry. Should we search anything else?", - "m_code" : 404, - "known" : [ - "katyperry", - "kirbstr" - ], - "cat" : "social" - }, - { - "name" : "Instagram_archives", - "uri_check" : "https://archive.org/wayback/available?url=https://instagram.com/{account}/", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}}", - "m_code" : 200, - "known" : ["zuck", "jack"], - "cat" : "social" - }, - { - "name" : "Instructables", - "uri_check" : "https://www.instructables.com/json-api/showAuthorExists?screenName={account}", - "uri_pretty" : "https://www.instructables.com/member/{account}/", - "e_code" : 200, - "e_string" : "\"exists\": true", - "m_string" : "\"error\": \"Sorry, we couldn't find that one!\"", - "m_code" : 404, - "known" : ["davidandora", "test"], - "cat" : "hobby" - }, - { - "name" : "Internet Archive User Search", - "uri_check" : "https://archive.org/advancedsearch.php?q={account}&output=json", - "uri_pretty" : "https://archive.org/search.php?query={account}", - "e_code" : 200, - "e_string" : "backup_location", - "m_string" : "numFound\":0", - "m_code" : 200, - "known" : ["test", "mubix"], - "cat" : "misc" - }, - { - "name" : "interpals", - "uri_check" : "https://www.interpals.net/{account}", - "e_code" : 200, - "e_string" : "Looking for", - "m_string" : "User not found", - "m_code" : 200, - "known" : ["test"], - "cat" : "dating" - }, - { - "name" : "Intigriti", - "uri_check" : "https://app.intigriti.com/api/user/public/profile/{account}", - "uri_pretty" : "https://app.intigriti.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"userName\":", - "m_string" : "class=\"error-page-container\"", - "m_code" : 404, - "known" : ["vampire01", "kenshiin"], - "cat" : "tech" - }, - { - "name" : "isMyGirl", - "uri_check" : "https://ismygirl.com/api/model/getModel?slug={account}", - "uri_pretty" : "https://ismygirl.com/models/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_code" : 404, - "m_string" : "detail\": \"Model not found.", - "known" : ["summer", "littlelanta"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Issuu", - "uri_check" : "https://issuu.com/call/signup/v2/check-username/{account}", - "uri_pretty" : "https://issuu.com/{account}", - "e_code" : 200, - "e_string" : "\"status\":\"unavailable\"", - "m_code" : 200, - "m_string" : "\"status\":\"available\"", - "known" : ["letsplayhockey", "the_anchor"], - "cat" : "social" - }, - { - "name" : "itch.io", - "uri_check" : "https://itch.io/profile/{account}", - "e_code" : 200, - "e_string" : "class=\"user_data\"", - "m_code" : 404, - "m_string" : "class=\"not_found_page page_widget base_widget\"", - "known" : ["obliviist", "finch"], - "cat" : "gaming" - }, - { - "name" : "Japandict", - "uri_check" : "https://forum.japandict.com/u/{account}", - "e_code" : 200, - "e_string" : "modern browser", - "m_code" : 404, - "m_string" : "The page you requested could not be found.", - "known" : ["Yan", "Happy"], - "cat" : "social" - }, - { - "name" : "jeja.pl", - "uri_check" : "https://www.jeja.pl/user,{account}", - "e_code" : 200, - "e_string" : "Profil użytkownika", - "m_string" : "Niepoprawny login", - "m_code" : 200, - "known" : ["kowal", "janek"], - "cat" : "misc" - }, - { - "name" : "JBZD", - "uri_check" : "https://jbzd.com.pl/uzytkownik/{account}", - "e_code" : 200, - "e_string" : "Dzidy użytkownika", - "m_string" : "Błąd 404", - "m_code" : 404, - "known" : ["test", "janek"], - "cat" : "images" - }, - { - "name" : "Jeuxvideo", - "uri_check" : "https://www.jeuxvideo.com/profil/{account}?mode=infos", - "e_code" : 200, - "e_string" : "- jeuxvideo.com", - "m_string" : "rence des gamers", - "m_code" : 404, - "known" : ["jane", "alex"], - "cat" : "gaming" - }, - { - "name" : "joinDOTA", - "uri_check" : "https://www.joindota.com/ajax/search", - "uri_pretty" : "https://www.joindota.com/search?m=edb_player&q={account}", - "post_body": "search={account}&module=edb_player&language=en", - "e_code" : 200, - "e_string" : "\"items\":[{", - "m_code" : 200, - "m_string" : "\"count\":0", - "known" : ["AngryTestie", "amddota2"], - "cat" : "gaming", - "headers" : { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - } - }, - { - "name" : "Joe Monster", - "uri_check" : "https://joemonster.org/bojownik/{account}", - "e_code" : 200, - "e_string" : "jest prywatny", - "m_string" : "Nie wiem jak ci to powiedzieć", - "m_code" : 200, - "known" : ["dandris", "lasior"], - "cat" : "misc" - }, - { - "name" : "JSFiddle", - "uri_check" : "https://jsfiddle.net/user/{account}/", - "e_code" : 200, - "e_string" : "Settings - JSFiddle - Code Playground", - "m_string" : "That page doesn't exist.", - "m_code" : 404, - "known" : ["john", "alex"], - "cat" : "coding" - }, - { - "name" : "Justforfans", - "uri_check" : "https://justfor.fans/{account}", - "e_code" : 200, - "e_string" : " @ JustFor.Fans", - "m_string" : "", - "m_code" : 302, - "known" : ["devinfrancoxxx", "RileyChaux"], - "cat" : "xx NSFW xx" - }, - { - "name" : "kashipara", - "uri_check" : "https://www.kashipara.com/ajax/checkNewUser.php", - "uri_pretty" : "https://www.kashipara.com/profile/user/{account}", - "post_body" : "id=UserName&value={account}", - "e_code" : 200, - "e_string" : "\"message\":\"UserName already Exist\"", - "m_string" : "\"message\":\"UserName avalible\"", - "m_code" : 200, - "known" : ["lopalopa", "westde123"], - "cat" : "tech", - "headers" : { - "Content-Type": "application/x-www-form-urlencoded" - } - }, - { - "name" : "kaggle", - "uri_check" : "https://www.kaggle.com/{account}", - "e_code" : 200, - "e_string" : "| Kaggle", - "m_string" : "Kaggle: Your Home for Data Science", - "m_code" : 404, - "known" : ["babyoda", "residentmario"], - "cat" : "coding" - }, - { - "name" : "Keybase", - "uri_check" : "https://keybase.io/_/api/1.0/user/lookup.json?usernames={account}", - "uri_pretty" : "https://keybase.io/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "\"them\":[null]", - "m_code" : 200, - "known" : ["test", "mubix"], - "cat" : "social" - }, - { - "name" : "Kick", - "uri_check" : "https://kick.com/api/v2/channels/{account}", - "uri_pretty" : "https://kick.com/{account}", - "e_code" : 200, - "e_string" : "\"id\"", - "m_code" : 404, - "m_string" : "Not Found", - "known" : ["deepak", "anthonyz"], - "cat" : "social", - "protection": ["cloudflare"] - }, - { - "name" : "Kickstarter", - "uri_check" : "https://www.kickstarter.com/profile/{account}", - "e_code" : 200, - "e_string" : "projects", - "m_string" : "Oops, Something went missing", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "shopping" - }, - { - "name" : "kik", - "uri_check" : "https://kik.me/{account}", - "e_code" : 200, - "e_string" : "/thumb.jpg\"/>", - "m_string" : "

", - "m_code" : 200, - "known" : ["adam", "smith", "jones"], - "cat" : "social" - }, - { - "name" : "kipin", - "uri_check" : "https://kipin.app/{account}", - "e_code" : 200, - "e_string" : "kipin.app/data/photos/resized2/", - "m_string" : "Page not found. Link expired, broken or wrong.", - "m_code" : 302, - "known" : ["monethica", "asd_fca"], - "cat" : "business" - }, - { - "name" : "KnowYourMeme", - "uri_check" : "https://knowyourmeme.com/users/{account}", - "e_code" : 200, - "e_string" : "Contributions", - "m_code" : 400, - "m_string" : "404, File Not Found!", - "known" : ["ayumukasuga", "butterin-yobread"], - "cat" : "social" - }, - { - "name" : "Ko-Fi", - "uri_check" : "https://ko-fi.com/{account}", - "e_code" : 200, - "e_string" : "id=\"profile-header\"", - "m_string" : "Object moved", - "m_code" : 302, - "known" : ["frank", "marcmakescomics"], - "cat" : "social", - "protection" : ["cloudflare"] - }, - { - "name" : "komi", - "uri_check" : "https://api.komi.io/api/talent/usernames/{account}", - "uri_pretty" : "https://{account}.komi.io", - "e_code" : 200, - "e_string" : "accountStatus\":\"active", - "m_string" : "The talent profile was not found", - "m_code" : 404, - "known" : ["abbysage", "iamdsprings"], - "cat" : "social" - }, - { - "name" : "Kongregate", - "uri_check" : "https://www.kongregate.com/accounts/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "Sorry, no account with that name was found", - "m_code" : 404, - "known" : ["test"], - "cat" : "gaming" - }, - { - "name" : "Kotburger", - "uri_check" : "https://kotburger.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza kotburgery od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["ania", "janek"], - "cat" : "images" - }, - { - "name" : "Kwai", - "uri_check" : "https://www.kwai.com/@{account}", - "e_code" : 200, - "e_string" : "name=\"title\"", - "m_string" : "Kwai", - "m_code" : 200, - "known" : ["carlito", "taylor"], - "cat" : "social" - }, - { - "name" : "kwejk.pl", - "uri_check" : "https://kwejk.pl/uzytkownik/{account}#/tablica/", - "e_code" : 200, - "e_string" : "Kwejki użytkownika", - "m_string" : "404 - strona nie została znaleziona - KWEJK.pl", - "m_code" : 404, - "known" : ["test", "janek"], - "cat" : "images" - }, - { - "name" : "Kwork", - "uri_check" : "https://kwork.ru/user_kworks/{account}", - "uri_pretty" : "https://kwork.ru/user/{account}", - "post_body" : "{\"username\":\"{account}\",\"offset\":0,\"limit\":10}", - "e_code" : 200, - "e_string" : "\"success\":true", - "m_string" : "\"success\":false", - "m_code" : 200, - "known" : ["ilkarkarakurt", "sergeymeshiy"], - "cat" : "social", - "headers" : { - "Content-Type": "application/json" - } - }, - { - "name" : "Last.fm", - "uri_check" : "https://www.last.fm/user/{account}", - "e_code" : 200, - "e_string" : "class=\"header-info\"", - "m_string" : "

404 - Page Not Found

", - "m_code" : 404, - "known" : ["anne", "alex"], - "cat" : "music" - }, - { - "name" : "LeakIX", - "uri_check" : "https://leakix.net/u/{account}", - "e_code" : 200, - "e_string" : ">Joined ", - "m_string" : "LeakIX - Server error", - "m_code" : 500, - "known" : ["Chocapikk", "Hug1337"], - "cat" : "tech", - "protection" : ["other"] - }, - { - "name" : "LevelBlue", - "uri_check" : "https://otx.alienvault.com/otxapi/auth/validate?username={account}", - "uri_pretty" : "https://otx.alienvault.com/user/{account}/pulses", - "e_code" : 400, - "e_string" : "\"username\": [\"This username is already taken\"]", - "m_string" : "{}", - "m_code" : 200, - "known" : ["BotnetExposer", "jamesbrine"], - "cat" : "social" - }, - { - "name" : "Lemon8", - "uri_check" : "https://www.lemon8-app.com/{account}?region=us", - "e_code" : 200, - "e_string" : "class=\"user-desc-main-info", - "m_string" : "unavailableReason\": \"not_found", - "m_code" : 404, - "known" : ["phinyamat", "andrianajohnson"], - "cat" : "social" - }, - { - "name" : "LeetCode", - "uri_check" : "https://leetcode.com/graphql/", - "uri_pretty" : "https://leetcode.com/u/{account}/", - "post_body" : "{\"query\":\"query userPublicProfile($username: String!) { matchedUser(username: $username) { username } }\",\"variables\":{\"username\":\"{account}\"},\"operationName\":\"userPublicProfile\"}", - "e_code" : 200, - "e_string" : "\"username\":", - "m_string" : "\"matchedUser\":null", - "m_code" : 200, - "known" : ["aku_2000", "wengh"], - "cat" : "coding", - "headers" : { - "Content-Type" : "application/json" - } - }, - { - "name" : "Letterboxd", - "uri_check" : "https://letterboxd.com/{account}/", - "e_code" : 200, - "e_string" : "’s profile on Letterboxd", - "m_string" : "Sorry, we can’t find the page you’ve requested.", - "m_code" : 404, - "known" : ["serdaraltin", "choi"], - "cat" : "social" - }, - { - "name" : "LibraryThing", - "uri_check" : "https://www.librarything.com/profile/{account}", - "e_code" : 200, - "e_string" : "
Joined
", - "m_string" : "Error: This user doesn't exist", - "m_code" : 200, - "known" : ["test", "john"], - "cat" : "hobby" - }, - { - "name" : "Libretooth.gr (Mastodon Instance)", - "uri_check" : "https://libretooth.gr/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://libretooth.gr/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["infolibre", "tzinalilik"], - "cat" : "social" - }, - { - "name" : "Liberapay", - "uri_check" : "https://liberapay.com/{account}", - "e_code" : 200, - "e_string" : "class=\"profile-header\"", - "m_string" : "Response code: 404", - "m_code" : 404, - "known" : ["db0", "bnjbvr"], - "cat" : "finance", - "protection": ["cloudflare"] - }, - { - "name" : "lichess.org", - "uri_check" : "https://lichess.org/api/player/autocomplete?term={account}&exists=1", - "uri_pretty" : "https://lichess.org/@/{account}", - "e_code" : 200, - "e_string" : "true", - "m_string" : "false", - "m_code" : 200, - "known" : ["mohammed01", "mohammed03"], - "cat" : "gaming" - }, - { - "name" : "LINE", - "uri_check" : "https://line.me/R/ti/p/@{account}?from=page", - "e_code" : 200, - "e_string" : "Add LINE Friends via QR Code", - "m_code" : 404, - "m_string" : "404 Not Found", - "known" : [ "roseareal", "yoasobi" ], - "cat" : "social" - }, - { - "name" : "Linktree", - "uri_check" : "https://linktr.ee/{account}", - "e_code" : 200, - "e_string" : "\"uuid\":", - "m_string" : "\"statusCode\":404", - "m_code" : 404, - "known" : ["anne", "alex"], - "cat" : "social" - }, - { - "name" : "linux.org.ru", - "uri_check" : "https://www.linux.org.ru/people/{account}/profile", - "e_code" : 200, - "e_string" : "Дата регистрации", - "m_string" : "Пользователя не существует", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "tech" - }, - { - "name" : "Livejournal", - "uri_check" : "https://{account}.livejournal.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "Unknown Journal", - "m_code" : 404, - "known" : ["jill", "john"], - "cat" : "blog" - }, - { - "name" : "livemaster.ru", - "uri_check" : "https://www.livemaster.ru/{account}", - "e_code" : 200, - "e_string" : "Магазин мастера", - "m_string" : "<title>Вы попали на несуществующую страницу", - "m_code" : 404, - "known" : ["redart", "ellentoy"], - "cat" : "shopping" - }, - { - "name" : "lobste.rs", - "uri_check" : "https://lobste.rs/u/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "The resource you requested was not found, or the story has been deleted.", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "tech" - }, - { - "name" : "LoLProfile", - "uri_check" : "https://lolprofile.net/search/world/{account}-world", - "e_code" : 200, - "e_string" : "class=\"content sw\">", - "m_string" : "We could not find any results, please try again later or check your input.", - "m_code" : 200, - "known" : ["bea", "wild"], - "cat" : "gaming" - }, - { - "name" : "Lor.sh (Mastodon Instance)", - "uri_check" : "https://lor.sh/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://lor.sh/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["dump_stack", "lamountain"], - "cat" : "social" - }, - { - "name" : "waytohey", - "uri_check" : "https://waytohey.com/{account}", - "e_code" : 200, - "e_string" : "Send message</span>", - "m_code" : 404, - "m_string" : "Unfortunately, this page doesn't exist.", - "known" : ["igor", "anna"], - "cat" : "social" - }, - { - "name" : "lowcygier.pl", - "uri_check" : "https://bazar.lowcygier.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zarejestrowany", - "m_string" : "Błąd 404 - Podana strona nie istnieje", - "m_code" : 404, - "known" : ["armin", "janek"], - "cat" : "gaming" - }, - { - "name" : "MyNickname", - "uri_check" : "https://mynickname.com/en/search?q={account}", - "e_code" : 200, - "e_string" : "nickname found:</h2>", - "m_string" : "<h2>Nickname not found. Try searching for similar nicknames.</h2>", - "m_code" : 200, - "known" : ["tw1st", "0xDEFACED"], - "cat" : "misc" - }, - { - "name" : "MAGABOOK", - "uri_check" : "https://magabook.com/{account}", - "e_code" : 200, - "e_string" : "Timeline", - "m_string" : "", - "m_code" : 302, - "known" : ["KristenSuzanne", "mikeflbmer"], - "cat" : "social" - }, - { - "name" : "Malpedia Actors", - "uri_check" : "https://malpedia.caad.fkie.fraunhofer.de/actor/{account}", - "e_code" : 200, - "e_string" : "href=\"/actors\"", - "m_string" : "Page not Found.", - "m_code" : 404, - "known" : ["USDoD", "AeroBlade"], - "cat" : "tech" - }, - { - "name" : "Magix", - "uri_check" : "https://www.magix.info/us/users/profile/{account}/", - "e_code" : 200, - "e_string" : "About me", - "m_string" : "Page not found", - "m_code" : 200, - "known" : ["baywolfmusic", "johnebaker"], - "cat" : "music" - }, - { - "name" : "MapMyTracks", - "uri_check" : "https://www.mapmytracks.com/{account}", - "e_code" : 200, - "e_string" : "Daily distance this week", - "m_string" : "Outside together", - "m_code" : 302, - "known" : ["ulirad", "CBSloan"], - "cat" : "health" - }, - { - "name" : "Mapstodon.space (Mastodon Instance)", - "uri_check" : "https://mapstodon.space/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://mapstodon.space/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["Autumnhussar", "jeremy"], - "cat" : "social" - }, - { - "name" : "Maroc_nl", - "uri_check" : "https://www.maroc.nl/forums/members/{account}.html", - "e_code" : 200, - "e_string" :"Bekijk Profiel:", - "m_string" : "Deze gebruiker is niet geregistreerd", - "m_code" : 200, - "known" : ["brahim", "brahim01"], - "cat" : "social" - }, - { - "name" : "Marshmallow", - "uri_check" : "https://marshmallow-qa.com/{account}", - "e_code" : 200, - "e_string" : "さんにメッセージをおくる", - "m_string" : "For compensation, here are cats for you.", - "m_code" : 404, - "known" : ["yuino_fox", "momo"], - "cat" : "social" - }, - { - "name" : "Martech", - "uri_check" : "https://martech.org/author/{account}/", - "e_code" : 200, - "e_string" : "twitter:site", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["mani-karthik", "james-green"], - "cat" : "business" - }, - { - "name" : "Massage Anywhere", - "uri_check" : "https://www.massageanywhere.com/profile/{account}", - "e_code" : 200, - "e_string" : "<title>MassageAnywhere.com Profile for ", - "m_string" : "<title>MassageAnywhere.com: Search Results", - "m_code" : 200, - "known" : ["lorilmccluskey", "LomiNYC"], - "cat" : "health" - }, - { - "name" : "masto.ai", - "uri_check" : "https://masto.ai/@{account}", - "e_code" : 200, - "e_string" : "@masto.ai) - Mastodon", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["rbreich", "stux"], - "cat" : "social" - }, - { - "name" : "Masto.nyc (Mastodon Instance)", - "uri_check" : "https://masto.nyc/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://masto.nyc/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["seano", "jayjay718"], - "cat" : "social" - }, - { - "name" : "Mastodonbooks.net (Mastodon Instance)", - "uri_check" : "https://mastodonbooks.net/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://mastodonbooks.net/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["RogerRemacle", "eugnick"], - "cat" : "social" - }, - { - "name" : "Mastodon-mastodon", - "uri_check" : "https://mastodon.social/@{account}", - "e_code" : 200, - "e_string" : "profile:username", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["john", "alex"], - "cat" : "social" - }, - { - "name" : "Mastodon API", - "uri_check" : "https://mastodon.social/api/v2/search?q={account}&limit=1&type=accounts", - "uri_pretty" : "https://mastodon.social/api/v2/search?q={account}&type=accounts", - "e_code" : 200, - "e_string" : "display_name", - "m_string" : "\"accounts\":[]", - "m_code" : 404, - "known" : ["Richard_Littler", "webbreacher"], - "cat" : "social" - }, - { - "name" : "Mastodon.online", - "uri_check" : "https://mastodon.online/@{account}", - "e_code" : 200, - "e_string" : "@mastodon.online) - Mastodon", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["Gargron", "RDHale"], - "cat" : "social" - }, - { - "name" : "Mastodon-Toot.Community", - "uri_check" : "https://toot.community/@{account}", - "e_code" : 200, - "e_string" : "@toot.community) - toot.community", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["Johnny", "jorijn"], - "cat" : "social" - }, - { - "name" : "Mastodon-climatejustice.rocks", - "uri_check" : "https://climatejustice.rocks/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://climatejustice.rocks/@{account}", - "e_code" : 200, - "e_string" : "username\":", - "m_string" : "Record not found", - "m_code" : 404, - "known" : ["paula", "PaulaToThePeople"], - "cat" : "social" - }, - { - "name" : "Mastodon-C.IM", - "uri_check" : "https://c.im/@{account}", - "e_code" : 200, - "e_string" : "@c.im) - C.IM", - "m_string" : "The page you are looking for isn't here", - "m_code" : 404, - "known" : ["admin", "paidugroup"], - "cat" : "social" - }, - { - "name" : "MCName (Minecraft)", - "uri_check" : "https://mcname.info/en/search?q={account}", - "e_code" : 200, - "e_string" : "card mb-3 text-monospace", - "m_string" : "alert alert-success px-0 py-1", - "m_code" : 200, - "known" : ["unrevive", "nxtuny"], - "cat" : "gaming" - }, - { - "name" : "MCUUID (Minecraft)", - "uri_check" : "https://playerdb.co/api/player/minecraft/{account}", - "uri_pretty" : "https://mcuuid.net/?q={account}", - "e_code" : 200, - "e_string" : "Successfully found player by given ID.", - "m_string" : "minecraft.api_failure", - "m_code" : 200, - "known" : ["smithy", "bob"], - "cat" : "gaming" - }, - { - "name" : "Medium", - "uri_check" : "https://{account}.medium.com/about", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "Medium member since", - "m_string" : "Out of nothing, something", - "m_code" : 404, - "known" : ["zulie", "jessicalexicus"], - "cat" : "news" - }, - { - "name" : "medyczka.pl", - "uri_check" : "http://medyczka.pl/user/{account}", - "e_code" : 200, - "e_string" : "Lista uzytkownikow", - "m_string" : "This user has not registered and therefore does not have a profile to view.", - "m_code" : 200, - "known" : ["test", "janek"], - "cat" : "health" - }, - { - "name" : "meet me", - "uri_check" : "https://www.meetme.com/{account}", - "e_code" : 200, - "e_string" : "<title>Meet people like ", - "m_string" : "<title>MeetMe - Chat and Meet New People</title", - "m_code" : 302, - "known" : ["john", "marsha"], - "cat" : "dating" - }, - { - "name" : "Mastodon-meow.social", - "uri_check" : "https://meow.social/@{account}", - "e_code" : 200, - "e_string" : "- the mastodon instance for creatures fluffy, scaly and otherwise", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["meow", "novra"], - "cat" : "social" - }, - { - "name" : "message_me", - "uri_check" : "https://mssg.me/{account}", - "e_code" : 200, - "e_string" : "_id", - "m_string" : "404", - "m_code" : 404, - "known" : ["sue", "david"], - "cat" : "social" - }, - { - "name" : "metacritic", - "uri_check" : "https://www.metacritic.com/user/{account}", - "e_code" : 200, - "e_string" : "'s Profile - Metacritic", - "m_string" : "Sign up to get your own profile - Metacritic</", - "m_code" : 200, - "known" : ["dev", "matt"], - "cat" : "hobby" - }, - { - "name" : "Minds", - "uri_check" : "https://www.minds.com/api/v3/register/validate?username={account}", - "uri_pretty" : "https://www.minds.com/{account}/", - "e_code" : 200, - "e_string" : "\"valid\":false", - "m_string" : "\"valid\":true", - "m_code" : 200, - "known" : ["gigan996", "mindsgaming"], - "cat" : "social" - }, - { - "name" : "Minecraft List", - "uri_check" : "https://minecraftlist.com/players/{account}", - "e_code" : 200, - "e_string" : "-->was seen on<!--", - "m_string" : "0 Minecraft servers recently", - "m_code" : 200, - "known" : ["fear837", "dream"], - "cat" : "gaming" - }, - { - "name" : "mintme", - "uri_check" : "https://www.mintme.com/token/{account}", - "e_code" : 200, - "e_string" : "token | mintMe", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["john", "crypto"], - "cat" : "finance" - }, - { - "name" : "Mistrzowie", - "uri_check" : "https://mistrzowie.org/user/{account}", - "e_code" : 200, - "e_string" : "Profil użytkownika", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["test", "janek"], - "cat" : "images" - }, - { - "name" : "Mix", - "uri_check" : "https://mix.com/{account}/", - "e_code" : 200, - "e_string" : "<title>@", - "m_string" : "The best content from the open web, personalized.", - "m_code" : 302, - "known" : ["test", "mixpicks"], - "cat" : "social" - }, - { - "name" : "Mixcloud", - "uri_check" : "https://api.mixcloud.com/{account}/", - "uri_pretty" : "https://www.mixcloud.com/{account}/", - "e_code" : 200, - "e_string" : "\"username\":", - "m_string" : "\"error\":", - "m_code" : 404, - "known" : ["DjHunnyBee", "vegarecords"], - "cat" : "music" - }, - { - "name" : "Mixi", - "uri_check" : "https://mixi.jp/view_community.pl?id={account}", - "e_code" : 200, - "e_string" : "| mixiコミュニティ", - "m_string" : "データがありません", - "m_code" : 200, - "known" : ["2854333", "19123"], - "cat" : "social" - }, - { - "name" : "Mixlr", - "uri_check" : "https://api.mixlr.com/users/{account}", - "uri_pretty" : "https://mixlr.com/{account}/", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "\"error\":\"Resource not found\"", - "m_code" : 404, - "known" : ["test", "john"], - "cat" : "music" - }, - { - "name" : "Mmorpg", - "uri_check" : "https://forums.mmorpg.com/profile/{account}", - "e_code" : 200, - "e_string" : "MMORPG.com Forums", - "m_string" : "404 Not Not_Found", - "m_code" : 404, - "known" : ["TheDalaiBomba", "MadLovin"], - "cat" : "gaming" - }, - { - "name" : "MobileGTA.net", - "uri_check" : "https://www.mobilegta.net/en/user/{account}", - "e_code" : 200, - "e_string" : "userpage_user", - "m_string" : "

404 Not Found", - "m_code" : 200, - "known" : ["daniel", "franco"], - "cat" : "gaming" - }, - { - "name" : "Monkeytype", - "uri_check" : "https://api.monkeytype.com/users/{account}/profile", - "uri_pretty" : "https://monkeytype.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"message\":\"Profile retrieved\"", - "m_string" : "\"message\":\"User not found\"", - "m_code" : 404, - "known" : ["rocket", "risenrelic"], - "cat" : "coding" - }, - { - "name" : "MODX.im", - "uri_check" : "https://modx.evo.im/profile/{account}/", - "e_code" : 200, - "e_string" : "class=\"profile\"", - "m_string" : "class=\"content-error\"", - "m_code" : 404, - "known" : ["Grinyaha", "kymage"], - "cat" : "tech" - }, - { - "name" : "Mod DB", - "uri_check" : "https://www.moddb.com/members/{account}", - "e_code" : 200, - "e_string" : "joined Profil de ", - "m_string" : "

Page introuvable

", - "m_code" : 404, - "known" : ["aesthetics", "pif"], - "cat" : "hobby" - }, - { - "name" : "moxfield", - "uri_check" : "https://www.moxfield.com/users/{account}", - "e_code" : 200, - "e_string" : "Moxfield Profile", - "m_string" : "No user found ", - "m_code" : 200, - "known" : ["gamer", "Carlos01"], - "cat" : "misc" - }, - { - "name" : "Mastodon-mstdn.io", - "uri_check" : "https://mstdn.io/@{account}", - "e_code" : 200, - "e_string" : "@mstdn.io) - Mastodon", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["mike", "greg"], - "cat" : "social" - }, - { - "name" : "Muck Rack", - "uri_check" : "https://muckrack.com/{account}", - "e_code" : 200, - "e_string" : "on Muck Rack", - "m_string" : "Oh no! Page not found.", - "m_code" : 404, - "known" : ["john"], - "cat" : "news" - }, - { - "name" : "Musician.social (Mastodon Instance)", - "uri_check" : "https://musician.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://musician.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["Alizar", "weisjohan"], - "cat" : "social" - }, - { - "name" : "musictraveler", - "uri_check" : "https://www.musictraveler.com/en/users/{account}/", - "e_code" : 200, - "e_string" : "on Music Traveler", - "m_string" : "Page Not found", - "m_code" : 404, - "known" : ["dave", "sarah"], - "cat" : "music" - }, - { - "name" : "MUYZORRAS", - "uri_check" : "https://www.muyzorras.com/usuarios/{account}", - "e_code" : 200, - "e_string" : "og:title", - "m_string" : "Error 404", - "m_code" : 404, - "known" : ["anuel", "esteban"], - "cat" : "xx NSFW xx" - }, - { - "name" : "myWishBoard", - "uri_check" : "https://mywishboard.com/@{account}", - "e_code" : 200, - "e_string" : "class=\"MwbUserHeader\"", - "m_string" : "class=\"MwbError\"", - "m_code" : 404, - "known" : ["ke7_2024", "alekseevvasil"], - "cat" : "shopping" - }, - { - "name" : "MyAnimeList", - "uri_check" : "https://myanimelist.net/profile/{account}", - "e_code" : 200, - "e_string" : "Profile - MyAnimeList.net", - "m_string" : "<title>404 Not Found", - "m_code" : 404, - "known" : ["test", "admin"], - "cat" : "social" - }, - { - "name" : "MyBuilder.com", - "uri_check" : "https://www.mybuilder.com/profile/view/{account}", - "e_code" : 200, - "e_string" : "feedback", - "m_string" : "Whoops! You broke our site!", - "m_code" : 404, - "known" : ["blue", "john"], - "cat" : "social" - }, - { - "name" : "MyFitnessPal Author", - "uri_check" : "https://blog.myfitnesspal.com/author/{account}/", - "e_code" : 200, - "e_string" : "About the Author", - "m_string" : "<title>Page not found ", - "m_code" : 404, - "known" : ["lauren-krouse", "julia-malacoff"], - "cat" : "health" - }, - { - "name" : "MyFitnessPal Community", - "uri_check" : "https://community.myfitnesspal.com/en/profile/{account}", - "e_code" : 200, - "e_string" : ">Last Active<", - "m_string" : "User Not Found", - "m_code" : 404, - "known" : ["malibu927", "L1zardQueen"], - "cat" : "health" - }, - { - "name" : "MYM", - "uri_check" : "https://mym.fans/{account}", - "e_code" : 200, - "e_string" : "class=\"page profile\"", - "m_string" : "class=\"page page-404\"", - "m_code" : 404, - "known" : ["Unmissabl", "Nicolasmauranmedium"], - "cat" : "social" - }, - { - "name" : "my_instants", - "uri_check" : "https://www.myinstants.com/en/profile/{account}/", - "e_code" : 200, - "e_string" : " | Myinstants", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["daniel01", "dave"], - "cat" : "music" - }, - { - "name" : "MyLot", - "uri_check" : "https://www.mylot.com/{account}", - "e_code" : 200, - "e_string" : "on myLot", - "m_string" : " / Whoops!", - "m_code" : 404, - "known" : ["Tampa_girl7"], - "cat" : "social" - }, - { - "name" : "myportfolio", - "uri_check" : "https://{account}.myportfolio.com/work", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "class=\"page-title", - "m_string" : "Adobe Portfolio | Build your own personalized website", - "m_code" : 302, - "known" : ["artkonina", "fox"], - "cat" : "misc" - }, - { - "name" : "MySpace", - "uri_check" : "https://myspace.com/{account}", - "e_code" : 200, - "e_string" : "", - "m_string" : "", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "social" - }, - { - "name" : "Myspreadshop", - "uri_check" : "https://myspreadshop.de/{account}/shopData/list", - "uri_pretty" : "https://{account}.myspreadshop.com", - "e_code" : 200, - "e_string" : "siteName", - "m_code" : 404, - "m_string" : "not found", - "known" : ["arukori", "honey"], - "cat" : "business" - }, - { - "name" : "naija_planet", - "uri_check" : "https://naijaplanet.com/{account}", - "e_code" : 200, - "e_string" : "dating Profile, ", - "m_string" : "- NaijaPlanet!", - "m_code" : 200, - "known" : ["daniel01", "wales73"], - "cat" : "dating" - }, - { - "name" : "nairaland", - "uri_check" : "https://www.nairaland.com/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "404: Page Not Found", - "m_code" : 301, - "known" : ["amakaone", "seun"], - "cat" : "news" - - }, - { - "name" : "NaturalNews", - "uri_check" : "https://naturalnews.com/author/{account}/", - "e_code" : 200, - "e_string" : "All posts by", - "m_string" : "The page you are looking for cannot be found or is no longer available.", - "m_code" : 200, - "known" : ["jdheyes", "healthranger"], - "cat" : "political" - }, - { - "name" : "Naver", - "uri_check" : "https://blog.naver.com/{account}", - "e_code" : 200, - "e_string" : " : 네이버 블로그", - "m_string" : "페이지를 찾을 수 없습니다", - "m_code" : 500, - "known" : ["bob", "blue"], - "cat" : "social" - }, - { - "name" : "Neocities", - "uri_check" : "https://neocities.org/site/{account}", - "e_code" : 200, - "e_string" : "noindex, follow", - "m_string" : "- Not Found", - "m_code" : 404, - "known" : ["fauux", "sadgrl"], - "cat" : "social" - }, - { - "name" : "netvibes", - "uri_check" : "https://www.netvibes.com/{account}", - "e_code" : 200, - "e_string" : "userId", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["nebkacrea", "cdiljda"], - "cat" : "social" - }, - { - "name" : "Newgrounds", - "uri_check" : "https://{account}.newgrounds.com/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "user-header-name", - "m_string" : "Whoops, that's a swing and a miss!", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "gaming" - }, - { - "name" : "newmeet", - "uri_check" : "https://www.newmeet.com/en/profile/{account}/", - "e_code" : 200, - "e_string" : "

The profile of", - "m_string" : "Chat with , , , - ", - "m_code" : 200, - "known" : ["Harmonie06", "Bach007"], - "cat" : "dating" - }, - { - "name" : "nihbuatjajan", - "uri_check" : "https://www.nihbuatjajan.com/{account}", - "e_code" : 200, - "e_string" : ") | Nih buat jajan", - "m_string" : "Nih Buat Jajan", - "m_code" : 302, - "known" : ["banyusadewa", "danirachmat"], - "cat" : "social" - }, - { - "name" : "Nightbot", - "uri_check" : "https://api.nightbot.tv/1/channels/t/{account}", - "uri_pretty" : "https://nightbot.tv/t/{account}/commands", - "e_code" : 200, - "e_string" : "\"status\":200", - "m_string" : "\"status\":404", - "m_code" : 404, - "known" : ["saevid", "proxyfox"], - "cat" : "social" - }, - { - "name" : "npm", - "uri_check" : "https://www.npmjs.com/~{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "

not found

", - "m_code" : 404, - "known" : ["npm", "rich_harris"], - "cat" : "coding" - }, - { - "name" : "Nitecrew (Mastodon Instance)", - "uri_check" : "https://nitecrew.rip/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://nitecrew.rip/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["Myxx", "honey"], - "cat" : "social" - }, - { - "name" : "nnru", - "uri_check" : "https://{account}.www.nn.ru", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : " ", - "m_string" : "<title>Ошибка 404 -", - "m_code" : 404, - "known" : ["lena", "slava"], - "cat" : "social" - }, - { - "name" : "NotABug", - "uri_check" : "https://notabug.org/{account}", - "e_code" : 200, - "e_string" : "class=\"user profile\"", - "m_string" : "alt=\"404\"", - "m_code" : 404, - "known" : ["notabug", "hp", "zPlus"], - "cat" : "coding" - }, - { - "name" : "Note", - "uri_check" : "https://note.com/{account}", - "e_code" : 200, - "e_string" : "フォロワー", - "m_code" : 404, - "m_string" : "お探しのページが見つかりません。", - "known" : ["honey", "yui"], - "cat" : "social" - }, - { - "name" : "omg.lol", - "uri_check" : "https://api.omg.lol/address/{account}/info", - "uri_pretty" : "https://{account}.omg.lol", - "strip_bad_char" : "@.", - "e_code" : 200, - "e_string" : "\"success\": true", - "m_string" : "\"success\": false", - "m_code" : 200, - "known" : ["cwa", "adam"], - "cat" : "social" - }, - { - "name" : "OnlySearch (OnlyFans)", - "uri_check" : "https://onlysearch.co/api/search?keyword={account}", - "uri_pretty" : "https://onlysearch.co/profiles?keyword={account}", - "e_code" : 200, - "e_string" : "\"hits\":[{", - "m_string" : "\"hits\":[]", - "m_code" : 200, - "known" : ["miaimani", "milaamour"], - "cat" : "xx NSFW xx" - }, - { - "name" : "oglaszamy24h.pl", - "uri_check" : "https://oglaszamy24h.pl/profil,{account}", - "e_code" : 200, - "e_string" : "Profil użytkownika:", - "m_string" : "Nieprawidłowy link, w bazie danych nie istnieje użytkownik o podanym loginie", - "m_code" : 404, - "known" : ["kowal", "janek"], - "cat" : "shopping" - }, - { - "name" : "ok.ru", - "uri_check" : "https://ok.ru/{account}", - "e_code" : 200, - "e_string" : "| OK", - "m_string" : "class=\"p404_t", - "m_code" : 404, - "known" : ["john", "aleksandrvasillev"], - "cat" : "social" - }, - { - "name" : "okidoki", - "uri_check" : "https://m.okidoki.ee/ru/users/{account}/", - "e_code" : 200, - "e_string" : "Пользователь", - "m_string" : "Страница не найдена", - "m_code" : 404, - "known" : ["nastya3", "nastya"], - "cat" : "misc" - }, - { - "name" : "Opencollective", - "uri_check" : "https://opencollective.com/{account}", - "e_code" : 200, - "e_string" : "- Open Collective", - "m_string" : "Not Found", - "m_code" : 200, - "known" : ["john", "bob"], - "cat" : "finance" - }, - { - "name" : "opensource", - "uri_check" : "https://opensource.com/users/{account}", - "e_code" : 200, - "e_string" : "| Opensource.com", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["dave", "mike"], - "cat" : "tech" - }, - { - "name" : "OpenStreetMap", - "uri_check" : "https://www.openstreetmap.org/user/{account}", - "e_code" : 200, - "e_string" : "Mapper since:", - "m_string" : "does not exist", - "m_code" : 404, - "known" : ["kemkim"], - "cat" : "social" - }, - { - "name" : "OPGG", - "uri_check" : "https://eune.op.gg/summoners/eune/{account}", - "e_code" : 200, - "e_string" : "- Summoner Stats - League of Legends", - "m_string" : "Guide - OP.GG", - "m_code" : 200, - "known" : ["xin", "carlos01"], - "cat" : "gaming" - }, - { - "name" : "Orbys", - "uri_check" : "https://orbys.net/{account}", - "e_code" : 200, - "e_string" : "profile_user_image", - "m_string" : "The page you are looking for cannot be found.", - "m_code" : 404, - "known" : ["txmustang302"], - "cat" : "social" - }, - { - "name" : "Origins.Habbo.com", - "uri_check" : "https://origins.habbo.com/api/public/users?name={account}", - "e_code" : 200, - "e_string" : "uniqueId", - "m_string" : "not-found", - "m_code" : 404, - "known" : ["john", "jane"], - "cat" : "gaming" - }, - { - "name" : "Origins.Habbo.com.br", - "uri_check" : "https://origins.habbo.com.br/api/public/users?name={account}", - "e_code" : 200, - "e_string" : "uniqueId", - "m_string" : "not-found", - "m_code" : 404, - "known" : ["carlos", "pedro"], - "cat" : "gaming" - }, - { - "name" : "Origins.Habbo.es", - "uri_check" : "https://origins.habbo.es/api/public/users?name={account}", - "e_code" : 200, - "e_string" : "uniqueId", - "m_string" : "not-found", - "m_code" : 404, - "known" : ["carlos", "mary"], - "cat" : "gaming" - }, - { - "name" : "osu!", - "uri_check" : "https://osu.ppy.sh/users/{account}", - "e_code" : 302, - "e_string" : "", - "m_string" : "User not found! ;_;", - "m_code" : 404, - "known" : ["stretches", "spiken8"], - "cat" : "gaming" - }, - { - "name" : "Our Freedom Book", - "uri_check" : "https://www.ourfreedombook.com/{account}", - "e_code" : 200, - "e_string" : "meta property=\"og:", - "m_string" : "Sorry, page not found", - "m_code" : 302, - "known" : ["DaveLipsky", "StarlaJene"], - "cat" : "social" - }, - { - "name" : "ow.ly", - "uri_check" : "http://ow.ly/user/{account}", - "e_code" : 200, - "e_string" : "Images", - "m_string" : "404 error", - "m_code" : 404, - "known" : ["StopAdMedia", "jokervendetti"], - "cat" : "social" - }, - { - "name" : "palnet", - "uri_check" : "https://www.palnet.io/@{account}/", - "e_code" : 200, - "e_string" : "class=\"profile-cover\"", - "m_string" : "Unknown user account!", - "m_code" : 404, - "known" : ["trincowski-pt", "anggreklestari"], - "cat" : "social" - }, - { - "name" : "Parler", - "uri_check" : "https://parler.com/user/{account}", - "e_code" : 200, - "e_string" : "People to Follow", - "m_string" : "join Parler today", - "m_code" : 302, - "known" : ["DineshDsouza", "SeanHannity"], - "cat" : "social" - }, - { - "name" : "Parler archived profile", - "uri_check" : "http://archive.org/wayback/available?url=https://parler.com/profile/{account}", - "uri_pretty" : "https://web.archive.org/web/2/https://parler.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["JoePags", "dineshdsouza"], - "cat" : "archived" - }, - { - "name" : "Parler archived posts", - "uri_check" : "http://archive.org/wayback/available?url=https://parler.com/profile/{account}/posts", - "uri_pretty" : "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["JoePags", "dineshdsouza"], - "cat" : "archived" - }, - { - "name" : "Pastebin", - "uri_check" : "https://pastebin.com/u/{account}", - "e_code" : 200, - "e_string" : "'s Pastebin", - "m_string" : "", - "m_code" : 404, - "known" : ["test", "john"], - "cat" : "tech" - }, - { - "name" : "patch", - "uri_check" : "https://patch.com/users/{account}", - "e_code" : 200, - "e_string" : "<title>Patch User Profile", - "m_string" : "<title>Page not found", - "m_code" : 404, - "known" : ["dave", "bob"], - "cat" : "news" - }, - { - "name" : "PatientsLikeMe", - "uri_check" : "https://www.patientslikeme.com/members/{account}", - "e_code" : 200, - "e_string" : "s profile | PatientsLikeMe", - "m_string" : "", - "m_code" : 302, - "known" : ["thjuland", "Pedro0703", "Hydropioneer"], - "cat" : "health" - }, - { - "name" : "Patreon", - "uri_check" : "https://www.patreon.com/{account}", - "e_code" : 200, - "e_string" : "full_name\":", - "m_string" : "errorCode\": 404,", - "m_code" : 404, - "known" : ["mubix", "doughboys"], - "cat" : "finance" - }, - { - "name" : "Patriots Win", - "uri_check" : "https://patriots.win/u/{account}/", - "e_code" : 200, - "e_string" : "nav-user active register", - "m_string" : "An error occurred", - "m_code" : 500, - "known" : ["r3deleven", "MemeFactory"], - "cat" : "political" - }, - { - "name" : "Patronite", - "uri_check" : "https://patronite.pl/{account}", - "e_code" : 200, - "e_string" : "Zostań Patronem", - "m_string" : "Nie znaleźliśmy strony której szukasz.", - "m_code" : 404, - "known" : ["radio357", "radionowyswiat"], - "cat" : "finance" - }, - { - "name" : "Paypal", - "uri_check" : "https://www.paypal.com/paypalme/{account}", - "e_code" : 200, - "e_string" : "userInfo", - "m_string" : "PayPal.MeFollowers", - "m_string" : "Sorry, this page doesn’t exist", - "m_code" : 404, - "known" : ["john", "test"], - "cat" : "video" - }, - { - "name" : "Pewex", - "uri_check" : "https://retro.pewex.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza eksponaty od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["test", "ania"], - "cat" : "misc" - }, - { - "name" : "Picsart", - "uri_check" : "https://picsart.com/u/{account}", - "e_code" : 200, - "e_string" : "Profiles on Picsart", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["john", "john404"], - "cat" : "art" - }, - { - "name" : "Piekielni", - "uri_check" : "https://piekielni.pl/user/{account}", - "e_code" : 200, - "e_string" : "Zamieszcza historie od:", - "m_string" : "Nie znaleziono użytkownika o podanym loginie.", - "m_code" : 200, - "known" : ["test", "janek"], - "cat" : "misc" - }, - { - "name" : "pikabu", - "uri_check" : "https://pikabu.ru/@{account}", - "e_code" : 200, - "e_string" : "— все посты пользователя", - "m_string" : "404. Страница не найдена", - "m_code" : 404, - "known" : ["igor01", "serguei"], - "cat" : "social" - }, - { - "name" : "Pillowfort", - "uri_check" : "https://www.pillowfort.social/{account}", - "e_code" : 200, - "e_string" : "", - "m_code" : 404, - "m_string" : "That page does not exist, or you do not have the proper permissions to view it.", - "known" : ["MissMoonified", "honey"], - "cat" : "social" - }, - { - "name" : "PinkBike", - "uri_check" : "https://www.pinkbike.com/u/{account}/", - "e_code" : 200, - "e_string" : "on Pinkbike", - "m_string" : "I couldn't find the page you were looking for", - "m_code" : 404, - "known" : ["whistlermountainbikepark", "paulhanson"], - "cat" : "hobby" - }, - { - "name" : "Pinterest", - "uri_check" : "https://www.pinterest.com/{account}/", - "e_code" : 200, - "e_string" : " - Profile | Pinterest", - "m_string" : "id=\"home-main-title", - "m_code" : 301, - "known" : ["test123", "frickcollection"], - "cat" : "social" - }, - { - "name" : "pixelfed.social", - "uri_check" : "https://pixelfed.social/{account}", - "e_code" : 200, - "e_string" : "on pixelfed", - "m_string" : "pixelfed", - "m_code" : 404, - "known" : ["sarah", "john"], - "cat" : "social" - }, - { - "name" : "Playstation Network", - "uri_check" : "https://psnprofiles.com/xhr/search/users?q={account}", - "uri_pretty" : "https://psnprofiles.com/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "We couldn't find anything ", - "m_code" : 200, - "known" : ["SlimShaggy18", "ikemenzi"], - "cat" : "gaming" - }, - { - "name" : "Plink", - "uri_check" : "https://plink.gg/user/{account}", - "e_code" : 200, - "e_string" : "class=\"user-page\"", - "m_string" : "PLINK - 404 Page not found", - "m_code" : 404, - "known" : ["CryptonianTV", "xacstonyjx"], - "cat" : "gaming" - }, - { - "name" : "Plurk", - "uri_check" : "https://www.plurk.com/{account}", - "e_code" : 200, - "e_string" : "Profile views", - "m_string" : "Register your plurk account", - "m_code" : 200, - "known" : ["test"], - "cat" : "social" - }, - { - "name" : "Pokec", - "uri_check" : "https://pokec.azet.sk/{account}", - "e_code" : 200, - "e_string" :"idReportedUser", - "m_string" : "Neexistujúci používateľ", - "m_code" : 404, - "known" : ["tobias", "brahim1"], - "cat" : "social" - }, - { - "name" : "pokemonshowdown", - "uri_check" : "https://pokemonshowdown.com/users/{account}", - "e_code" : 200, - "e_string" : "Official ladder", - "m_string" : " (Unregistered)", - "m_code" : 404, - "known" : ["red", "blue"], - "cat" : "gaming" - }, - { - "name" : "Pokerstrategy", - "uri_check" : "http://www.pokerstrategy.net/user/{account}/profile/", - "e_code" : 200, - "e_string" : "User profile for", - "m_string" : "Sorry, the requested page couldn't be found!", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "gaming" - }, - { - "name" : "Polchat.pl", - "uri_check" : "https://polczat.pl/forum/profile/{account}/", - "e_code" : 200, - "e_string" : "Historia wpisów", - "m_string" : "Wybrany użytkownik nie istnieje.", - "m_code" : 200, - "known" : ["admin", "Lesik"], - "cat" : "social" - }, - { - "name" : "Polarsteps", - "uri_check" : "https://api.polarsteps.com/users/byusername/{account}", - "uri_pretty" : "https://www.polarsteps.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["EngelBos", "GunnarEndlich"], - "cat" : "hobby" - }, - { - "name" : "policja2009", - "uri_check" : "http://www.policja2009.fora.pl/search.php?search_author={account}", - "e_code" : 200, - "e_string" : "Autor", - "m_string" : "Nie znaleziono tematów ani postów pasujących do Twoich kryteriów", - "m_code" : 200, - "known" : ["Pvwel", "janek"], - "cat" : "misc" - }, - { - "name" : "Poll Everywhere", - "uri_check" : "https://pollev.com/proxy/api/users/{account}", - "uri_pretty" : "https://pollev.com/{account}", - "e_code" : 200, - "e_string" : "name", - "m_string" : "ResourceNotFound", - "m_code" : 404, - "known" : ["josh", "jsmith"], - "cat" : "tech" - }, - { - "name" : "Mastodon-pol.social", - "uri_check" : "https://pol.social/@{account}", - "e_code" : 200, - "e_string" : "@pol.social", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["ftdl", "ducensor"], - "cat" : "social" - }, - { - "name" : "Poe.com", - "uri_check" : "https://poe.com/profile/{account}", - "e_code" : 200, - "e_string" : "\"__isNode\":\"PoeUser\"", - "m_code" : 200, - "m_string" : "\"user\":null", - "known" : ["spdustin", "PromptCase"], - "cat" : "tech" - }, - { - "name" : "polygon", - "uri_check" : "https://www.polygon.com/users/{account}", - "e_code" : 200, - "e_string" : "- Polygon", - "m_string" : "404 Not found", - "m_code" : 404, - "known" : ["nicodeyo", "Nicole_Clark"], - "cat" : "gaming" - }, - { - "name" : "popl", - "uri_check" : "https://poplme.co/{account}", - "e_code" : 200, - "e_string" : "MuiTypography-root MuiTypography-body1 css-kj7pvm", - "m_string" : "Profile not found", - "m_code" : 200, - "known" : ["rpelite","Ee0af3d822","ashleymetzger"], - "cat" : "business" - }, - { - "name" : "Pornhub Porn Stars", - "uri_check" : "https://www.pornhub.com/pornstar/{account}", - "e_code" : 200, - "e_string" : "Pornstar Rank", - "m_string" : "", - "m_code" : 301, - "known" : ["riley-reid", "alex-adams"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Pornhub Users", - "uri_check" : "https://www.pornhub.com/users/{account}", - "e_code" : 200, - "e_string" : "s Profile - Pornhub.com", - "m_string" : "Error Page Not Found", - "m_code" : 404, - "known" : ["test123"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Poshmark", - "uri_check" : "https://poshmark.com/closet/{account}", - "e_code" : 200, - "e_string" : " is using Poshmark to sell items from their closet.", - "m_string" : "Page not found - Poshmark", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "shopping" - }, - { - "name" : "postcrossing", - "uri_check" : "https://www.postcrossing.com/user/{account}", - "e_code" : 200, - "e_string" : ", from", - "m_string" : "- Postcrossing", - "m_code" : 404, - "known" : ["Vladimir", "olga3"], - "cat" : "social" - }, - { - "name" : "Poweredbygay.social (Mastodon Instance)", - "uri_check" : "https://poweredbygay.social/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://poweredbygay.social/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["aggiepm", "eplumley1976"], - "cat" : "social" - }, - { - "name" : "Pr0gramm", - "uri_check" : "https://pr0gramm.com/api/profile/info?name={account}", - "uri_pretty" : "https://pr0gramm.com/user/{account}", - "e_code" : 200, - "e_string" : "\"user\":", - "m_string" : "\"code\":404", - "m_code" : 404, - "known" : ["kaizernero", "Giga1337"], - "cat" : "social", - "protection" : ["cloudflare"] - }, - { - "name" : "Pravda.me", - "uri_check" : "https://pravda.me/@{account}", - "e_code" : 200, - "e_string" : "Российская социальная сеть (by mastodon)", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["tass", "rt_russian"], - "cat" : "social" - }, - { - "name" : "Privacy Guides", - "uri_check" : "https://discuss.privacyguides.net/u/{account}.json", - "uri_pretty" : "https://discuss.privacyguides.net/u/{account}/summary", - "e_code" : 200, - "e_string" : "assign_path", - "m_string" : "The requested URL or resource could not be found.", - "m_code" : 404, - "known" : ["jonah", "dngray"], - "cat" : "tech" - }, - { - "name" : "Producthunt", - "uri_check" : "https://www.producthunt.com/@{account}", - "e_code" : 200, - "e_string" : "s profile on Product Hunt", - "m_string" : "Product Hunt - All newest Products", - "m_code" : 404, - "known" : ["alex", "jack"], - "cat" : "business" - }, - { - "name" : "PromoDJ", - "uri_check" : "https://promodj.com/ajax/register.html?lang=en", - "uri_pretty" : "https://promodj.com/{account}", - "post_body" : "kind=nick&value={account}", - "e_code" : 200, - "e_string" : "Address you entered is already taken", - "m_string" : "The address is free, it's great;)", - "m_code" : 200, - "known" : ["sekoy", "vovasmallny"], - "cat" : "music", - "headers" : { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - } - }, - { - "name" : "Pronouns.Page", - "uri_check" : "https://pronouns.page/api/profile/get/{account}?version=2", - "uri_pretty" : "https://pronouns.page/@{account}", - "e_code" : 200, - "e_string" : "username", - "m_string" : "\"profiles\": {}", - "m_code" : 304, - "known" : ["cannabis_cervi", "user"], - "cat" : "social" - }, - { - "name" : "Pronouny", - "uri_check" : "https://pronouny.xyz/api/users/profile/username/{account}", - "uri_pretty" : "https://pronouny.xyz/users/{account}", - "e_code" : 200, - "e_string" : "\"username\":", - "m_code" : 400, - "m_string" : "That user doesn't exist", - "known" : ["donna", "honey"], - "cat" : "social" - }, - { - "name" : "Prose", - "uri_check" : "https://prose.astral.camp/{account}/", - "e_code" : 200, - "e_string" : "blog-title", - "m_code" : 404, - "m_string" : "Are you sure it was ever here?", - "known" : ["endeavorance", "overthinkification"], - "cat" : "blog" - }, - { - "name" : "prv.pl", - "uri_check" : "https://www.prv.pl/osoba/{account}", - "e_code" : 200, - "e_string" : "LOGIN", - "m_string" : "Użytkownik nie istnieje.", - "m_code" : 200, - "known" : ["test", "test2"], - "cat" : "tech" - }, - { - "name" : "Public.com", - "uri_check" : "https://public.com/@{account}", - "e_code" : 200, - "e_string" : "\"publicId\":", - "m_string" : "<title>404 - Page Not Found", - "m_code" : 404, - "known" : ["igor1", "david2"], - "cat" : "finance" - }, - { - "name" : "pypi", - "uri_check" : "https://pypi.org/user/{account}/", - "e_code" : 200, - "e_string" : "Profile of", - "m_string" : "Page Not Found (404) · PyPI", - "m_code" : 404, - "known" : ["dev", "pydude"], - "cat" : "coding" - }, - { - "name" : "QUEER PL", - "uri_check" : "https://queer.pl/user/{account}", - "e_code" : 200, - "e_string" : "Ostatnio on-line", - "m_string" : "Strona nie została znaleziona", - "m_code" : 404, - "known" : ["claudii", "kowalski"], - "cat" : "social" - }, - { - "name" : "Quizlet", - "uri_check" : "https://quizlet.com/webapi/3.2/users/check-username?username={account}", - "uri_pretty": "https://quizlet.com/user/{account}/sets", - "e_code" : 200, - "e_string" : "\"identifier\":\"username_is_taken\"", - "m_string" : "\"success\":true", - "m_code" : 200, - "known" : ["Rita426", "Muyao_531"], - "cat" : "hobby", - "protection" : ["cloudflare"] - }, - { - "name" : "quitter.pl", - "uri_check" : "https://quitter.pl/api/v1/accounts/{account}", - "uri_pretty" : "https://quitter.pl/users/{account}", - "e_code" : 200, - "e_string" : "avatar_static", - "m_string" : "\"error\":", - "m_code" : 404, - "known" : ["smok", "mik"], - "cat" : "social" - }, - { - "name" : "Quora", - "uri_check" : "https://www.quora.com/profile/{account}", - "e_code" : 200, - "e_string" : "Credentials", - "m_string" : "Page Not Found", - "m_code" : 301, - "known" : ["John-Galan-5", "Alex-Clay"], - "cat" : "social" - }, - { - "name" : "Raddle.me", - "uri_check" : "https://raddle.me/user/{account}", - "e_code" : 200, - "e_string" : "sidebar__title", - "m_code" : 404, - "m_string" : "404 Not Found", - "known" : ["zephyr", "Archaplain"], - "cat" : "social" - }, - { - "name" : "RaidForums - Archive", - "uri_check" : "https://rf-archive.com/users.php?s_tag={account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "[]", - "m_code" : 200, - "known" : ["pompompurin", "DexterM1"], - "cat" : "archived" - }, - { - "name" : "Rarible", - "uri_check" : "https://rarible.com/marketplace/api/v4/urls/{account}", - "uri_pretty" : "https://rarible.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_string" : "\"success\":false", - "m_code" : 404, - "known" : ["lokikot", "vintagemozart"], - "cat" : "tech" - }, - { - "name" : "Rant.li", - "uri_check" : "https://rant.li/{account}/", - "e_code" : 200, - "e_string" : "blog-title", - "m_code" : 404, - "m_string" : "Are you sure it was ever here?", - "known" : ["baretri", "arinbasu"], - "cat" : "blog" - }, - { - "name" : "Refsheet", - "uri_check" : "https://refsheet.net/{account}", - "e_code" : 200, - "e_string" : "og:title", - "m_code" : 404, - "m_string" : "That's unfortunate. Where did it go?", - "known" : ["razzyaurealis", "saki"], - "cat" : "hobby" - }, - { - "name" : "redbubble", - "uri_check" : "https://www.redbubble.com/people/{account}/shop", - "e_code" : 200, - "e_string" : "Shop | Redbubble", - "m_string" : "This is a lost cause.", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "shopping" - }, - { - "name" : "Reddit", - "uri_check" : "https://www.reddit.com/user/{account}/about/.json", - "uri_pretty" : "https://www.reddit.com/user/{account}", - "e_code" : 200, - "e_string" : "total_karma", - "m_string" : "Not Found", - "m_code" : 404, - "known" : ["koavf", "alabasterheart"], - "cat" : "social" - }, - { - "name" : "REDGIFS", - "uri_check" : "https://api.redgifs.com/v1/users/{account}", - "uri_pretty" : "https://www.redgifs.com/users/{account}", - "e_code" : 200, - "e_string" : "followers", - "m_string" : "user account not found for ", - "m_code" : 404, - "known" : ["alexbreecooper", "Jose-Roberto-Rasi"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Replit", - "uri_check" : "https://replit.com/@{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_code" : 404, - "m_string" : "\"statusCode\":404", - "known" : ["david", "torcado"], - "cat" : "coding" - }, - { - "name" : "Researchgate", - "uri_check" : "https://www.researchgate.net/profile/{account}", - "e_code" : 200, - "e_string" : " | ", - "m_string" : "20+ million researchers on ResearchGate", - "m_code" : 301, - "known" : ["Tafara-Mwareya", "Jose-Roberto-Rasi"], - "cat" : "hobby" - }, - { - "name" : "resumes_actorsaccess", - "uri_check" : "https://resumes.actorsaccess.com/{account}", - "e_code" : 200, - "e_string" : "- Resume | Actors Access", - "m_string" : "File was not found on this SERVER", - "m_code" : 200, - "known" : ["veronicashelby", "sarahstipe"], - "cat" : "social" - }, - { - "name" : "Revolut", - "uri_check" : "https://revolut.me/api/web-profile/{account}", - "uri_pretty" : "https://revolut.me/{account}", - "e_code" : 200, - "e_string" : "\"firstName\"", - "m_code" : 404, - "m_string" : "\"User not found\"", - "known" : ["theaswdc", "honey"], - "cat" : "finance" - }, - { - "name" : "Mastodon-rigcz.club", - "uri_check" : "https://rigcz.club/@{account}", - "e_code" : 200, - "e_string" : "@rigcz.club", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["blazej", "adam"], - "cat" : "social" - }, - { - "name" : "RblxTrade", - "uri_check" : "https://rblx.trade/api/v1/user/get-by-username?username={account}", - "uri_pretty" : "https://rblx.trade/p/{account}", - "e_code" : 200, - "e_string" : "\"userId\":", - "m_string" : "\"success\":false", - "m_code" : 400, - "known" : ["webbreacher", "SonOfSevenless"], - "cat" : "gaming" - }, - { - "name" : "risk.ru", - "uri_check" : "https://risk.ru/people/{account}", - "e_code" : 200, - "e_string" : "— Люди — Risk.ru", - "m_string" : "404 — Risk.ru", - "m_code" : 404, - "known" : ["igor1", "olga"], - "cat" : "hobby" - }, - { - "name" : "Roblox", - "uri_check" : "https://auth.roblox.com/v1/usernames/validate?username={account}&birthday=2019-12-31T23:00:00.000Z", - "uri_pretty" : "https://www.roblox.com/search/users?keyword={account}", - "e_code" : 200, - "e_string" : "Username is already in use", - "m_string" : "Username is valid", - "m_code" : 200, - "known" : ["LeetPawn", "elephant459"], - "cat" : "gaming" - }, - { - "name" : "RoutineHub", - "uri_check" : "https://routinehub.co/user/{account}", - "e_code" : 200, - "e_string" : "Downloads: ", - "m_string" : "A community for Apple Shortcuts", - "m_code" : 200, - "known" : ["zachary7829", "JonathanSetzer"], - "cat" : "social" - }, - { - "name" : "rsi", - "uri_check" : "https://robertsspaceindustries.com/citizens/{account}", - "e_code" : 200, - "e_string" : "CITIZEN DOSSIER", - "m_string" : "404 NAVIGATING UNCHARTED TERRITORY", - "m_code" : 404, - "known" : ["alpHackeronee", "Quantum_Physicist"], - "cat" : "gaming" - }, - { - "name" : "RuneScape", - "uri_check" : "https://apps.runescape.com/runemetrics/profile/profile?user={account}", - "uri_pretty" : "https://apps.runescape.com/runemetrics/app/overview/player/{account}", - "e_code" : 200, - "e_string" : "\"name\":", - "m_code" : 200, - "m_string" : "\"error\":\"NO_PROFILE\"", - "known" : ["Thomas", "Wahisietel"], - "cat" : "hobby" - }, - { - "name" : "RuTracker.org", - "uri_check" : "https://rutracker.org/forum/profile.php?mode=viewprofile&u={account}", - "e_code" : 200, - "e_string" : "Профиль пользователя", - "m_string" : "Пользователь не найден", - "m_code" : 200, - "known" : ["Rutracker", "Feo156"], - "cat" : "misc" - }, - { - "name" : "ru_123rf", - "uri_check" : "https://ru.123rf.com/profile_{account}", - "e_code" : 200, - "e_string" : "userID", - "m_string" : "Фотобанк 123RF - Стоковые Фото, Векторы, Видеоролики. Подписка на Фото. Royalty Free контент<", - "m_code" : 302, - "known" : ["ruslan", "olga"], - "cat" : "hobby" - }, - { - "name" : "RumbleChannel", - "uri_check" : "https://rumble.com/c/{account}", - "e_code" : 200, - "e_string" : "href=https://rumble.com/c/", - "m_string" : "404 error, this page does not exist", - "m_code" : 404, - "known" : ["SaltyCracker", "GGreenwald"], - "cat" : "political" - }, - { - "name" : "RumbleUser", - "uri_check" : "https://rumble.com/user/{account}", - "e_code" : 200, - "e_string" : "href=https://rumble.com/user/", - "m_string" : "404 error, this page does not exist", - "m_code" : 404, - "known" : ["SimonParkes", "djmrmusic"], - "cat" : "political" - }, - { - "name" : "Salon24", - "uri_check" : "https://www.salon24.pl/u/{account}/", - "e_code" : 200, - "e_string" : "<span>Obserwujących</span>", - "m_string" : "<title>Salon24 - Blogi, wiadomości, opinie i komentarze", - "m_code" : 301, - "known" : ["matuzalem", "niewiarygodne"], - "cat" : "blog" - }, - { - "name" : "Scammer.info", - "uri_check" : "https://scammer.info/u/{account}.json", - "uri_pretty" : "https://scammer.info/u/{account}", - "e_code" : 200, - "e_string" : "avatar_template", - "m_string" : "The requested URL or resource could not be found", - "m_code" : 404, - "known" : ["AngelFat", "lecter"], - "cat" : "misc" - }, - { - "name" : "ScoutWiki", - "uri_check" : "https://en.scoutwiki.org/User:{account}", - "e_code" : 200, - "e_string" : "NewPP limit report", - "m_string" : "is not registered", - "m_code" : 301, - "known" : ["Mlh_nl", "Benjism89"], - "cat" : "social" - }, - { - "name" : "scratch", - "uri_check" : "https://scratch.mit.edu/users/{account}/", - "e_code" : 200, - "e_string" : "on Scratch", - "m_string" : "We couldn't find the page you're looking for.", - "m_code" : 404, - "known" : ["griffpatch"], - "cat" : "coding" - }, - { - "name" : "secure_donation", - "uri_check" : "https://secure.donationpay.org/{account}/", - "e_code" : 200, - "e_string" : "| DonationPay", - "m_string" : "secure.donationpay.org", - "m_code" : 404, - "known" : ["rareimpact", "safc"], - "cat" : "finance" - }, - { - "name" : "sedisp@ce", - "uri_check" : "https://sedispace.com/@{account}", - "e_code" : 200, - "e_string" : "Membre depuis -", - "m_string" : "- Page non trouvée!", - "m_code" : 302, - "known" : ["mamadou", "konate"], - "cat" : "social" - }, - { - "name" : "Seneporno", - "uri_check" : "https://seneporno.com/user/{account}", - "e_code" : 200, - "e_string" : "Dernier Login", - "m_string" : "Unexpected error! Please contact us and tell us more how you got to this page!", - "m_code" : 301, - "known" : ["Kalsobbc", "Boymariste"], - "cat" : "xx NSFW xx" - }, - { - "name" : "sentimente", - "uri_check" : "https://www.sentimente.com/amp/{account}.html", - "e_code" : 200, - "e_string" :"Chat online with", - "m_string" : "HTTP Error code: 404. Resource not found", - "m_code" : 404, - "known" : ["david01", "brahim01"], - "cat" : "dating" - }, - { - "name" : "SEOClerks", - "uri_check" : "https://www.seoclerks.com/user/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "SEO Marketplace", - "m_code" : 302, - "known" : ["Vfmseo", "gokudadon"], - "cat" : "social" - }, - { - "name" : "setlist.fm", - "uri_check" : "https://www.setlist.fm/user/{account}", - "e_code" : 200, - "e_string" : "s setlist.fm | setlist.fm", - "m_string" : "Sorry, the page you requested doesn't exist", - "m_code" : 404, - "known" : ["bendobrin", "michi"], - "cat" : "music" - }, - { - "name" : "Sexworker", - "uri_check" : "https://sexworker.com/api/profile/{account}", - "uri_pretty" : "https://sexworker.com/{account}", - "e_code" : 200, - "e_string" : "profilePictureUrl", - "m_code" : 404, - "m_string" : "This user does not exist.", - "known" : ["sakii_nightshade", "annajean2319"], - "cat" : "xx NSFW xx" - }, - { - "name" : "SFD", - "uri_check" : "https://www.sfd.pl/profile/{account}", - "e_code" : 200, - "e_string" : "Tematy użytkownika", - "m_string" : "Brak aktywnego profilu na forum", - "m_code" : 404, - "known" : ["janek", "admin"], - "cat" : "health" - }, - { - "name" : "Shesfreaky", - "uri_check" : "https://www.shesfreaky.com/profile/{account}/", - "e_code" : 200, - "e_string" : "s Profile - ShesFreaky", - "m_code" : 302, - "m_string" : "", - "known" : ["tata23", "fitzsta"], - "cat" : "xx NSFW xx" - }, - { - "name" : "shopify", - "uri_check" : "https://{account}.myshopify.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "home", - "m_string" : "Sorry, this shop is currently unavailable.", - "m_code" : 404, - "known" : ["john", "daniel"], - "cat" : "shopping" - }, - { - "name" : "Showup.tv", - "uri_check" : "https://showup.tv/profile/{account}", - "e_code" : 200, - "e_string" : "O mnie", - "m_string" : "Darmowe", - "m_code" : 404, - "known" : ["LunaVee", "Jane_Frou"], - "cat" : "xx NSFW xx", - "headers" : { - "Cookie" : "accept_rules=true;" - } - }, - { - "name" : "shutterstock", - "uri_check" : "https://www.shutterstock.com/g/{account}", - "e_code" : 200, - "e_string" : "| Shutterstock", - "m_string" : "Well, this is unexpected...", - "m_code" : 404, - "known" : ["john", "bob"], - "cat" : "images" - }, - { - "name" : "SimplePlanes", - "uri_check" : "https://www.simpleplanes.com/u/{account}", - "e_code" : 200, - "e_string" : "<h5>joined", - "m_code" : 302, - "m_string" : "<title>SimplePlanes Airplanes", - "known" : ["realSavageMan", "Jundroo", "john"], - "cat" : "gaming" - }, - { - "name" : "skeb", - "uri_check" : "https://skeb.jp/@{account}", - "e_code" : 200, - "e_string" : ") | Skeb", - "m_code" : 503, - "m_string" : "Skeb - Request Box", - "known" : ["eipuru_", "sime064"], - "cat" : "art" - }, - { - "name" : "SlackHoles", - "uri_check" : "https://slackholes.com/actor/{account}/", - "e_code" : 200, - "e_string" : "Pussy and Ass Sizes", - "m_string" : "It looks like nothing was found at this location", - "m_code" : 404, - "known" : ["alexbreecooper", "roxy-raye"], - "cat" : "xx NSFW xx" - }, - { - "name" : "slant", - "uri_check" : "https://www.slant.co/users/{account}", - "e_code" : 200, - "e_string" : "s Profile - Slant", - "m_string" : "404 - Page Not Found - Slant", - "m_code" : 404, - "known" : ["bob", "john"], - "cat" : "shopping" - }, - { - "name" : "Slideshare", - "uri_check" : "https://www.slideshare.net/{account}", - "e_code" : 200, - "e_string" : "data-testid=\"report-button\"", - "m_string" : "id=\"username-available\"", - "m_code" : 200, - "known" : ["rebeccaskeeles", "john"], - "cat" : "social" - }, - { - "name" : "slides", - "uri_check" : "https://slides.com/{account}", - "e_code" : 200, - "e_string" : "Presentations by", - "m_string" : "You may have mistyped the address", - "m_code" : 404, - "known" : ["arunthomas"], - "cat" : "social" - }, - { - "name" : "SmashRun", - "uri_check" : "https://smashrun.com/{account}/", - "e_code" : 200, - "e_string" : "Miles run overall", - "m_string" : "no Smashrunner with the username", - "m_code" : 404, - "known" : ["john.young"], - "cat" : "health" - }, - { - "name" : "smelsy", - "uri_check" : "https://www.smelsy.com/profile/{account}", - "e_code" : 200, - "e_string" : "Smelsy -", - "m_string" : "Server Error", - "m_code" : 500, - "known" : ["mohamed01", "ahmed"], - "cat" : "misc" - }, - { - "name" : "SmugMug", - "uri_check" : "https://{account}.smugmug.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "schema.org/Person", - "m_string" : "schema.org/Thing", - "m_code" : 404, - "known" : ["wow", "jill"], - "cat" : "images" - }, - { - "name" : "smule", - "uri_check" : "https://www.smule.com/api/profile/?handle={account}", - "uri_pretty" : "https://www.smule.com/{account}", - "e_code" : 200, - "e_string" : "account_id", - "m_string" : "code\": 65", - "m_code" : 400, - "known" : ["cgrrose", "John___Anish"], - "cat" : "music" - }, - { - "name" : "Snapchat", - "uri_check" : "https://www.snapchat.com/add/{account}", - "e_code" : 200, - "e_string" : "is on Snapchat!", - "m_string" : "NOT_FOUND", - "m_code" : 200, - "known" : ["djkhaled305", "mileycyrus"], - "cat" : "social" - }, - { - "name" : "Snipfeed", - "uri_check" : "https://snipfeed.co/{account}", - "e_code" : 200, - "e_string" : "creatorLink", - "m_code" : 404, - "m_string" : "Oops, you hit a dead end!", - "known" : ["mycherrycrush", "honey"], - "cat" : "misc" - }, - { - "name" : "social.bund.de", - "uri_check" : "https://social.bund.de/@{account}", - "e_code" : 200, - "e_string" : "@social.bund.de) - social.bund.de", - "m_string" : "The page you are looking for isn't here.", - "m_code" : 404, - "known" : ["bfdi", "bmdv"], - "cat" : "social" - }, - { - "name" : "soc.citizen4.eu", - "uri_check" : "https://soc.citizen4.eu/profile/{account}/profile", - "e_code" : 200, - "e_string" : "@soc.citizen4.eu", - "m_string" : "Nie znaleziono", - "m_code" : 404, - "known" : ["admin", "miklo"], - "cat" : "social" - }, - { - "name" : "social_msdn", - "uri_check" : "https://social.msdn.microsoft.com/profile/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.", - "m_code" : 404, - "known" : ["edoardo", "microsoftfan"], - "cat" : "social" - }, - { - "name" : "Mastodon-social_tchncs", - "uri_check" : "https://social.tchncs.de/@{account}", - "e_code" : 200, - "e_string" : "profile:username", - "m_string" : "The page you are looking for isn't here", - "m_code" : 301, - "known" : ["michael", "frank"], - "cat" : "social" - }, - { - "name" : "sofurry", - "uri_check" : "https://{account}.sofurry.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "'s Profile | SoFurry", - "m_string" : "SoFurry - Error | SoFurry", - "m_code" : 404, - "known" : ["reeden-landshey", "tigerzero"], - "cat" : "art" - }, - { - "name" : "solo.to", - "uri_check" : "https://solo.to/{account}", - "e_code" : 200, - "e_string" : "create your own page", - "m_code" : 404, - "m_string" : "The page you're looking for isn't here.", - "known" : ["saruei", "yui"], - "cat" : "social" - }, - { - "name" : "SoundCloud", - "uri_check" : "https://soundcloud.com/{account}", - "e_code" : 200, - "e_string" : "SoundCloud", - "m_string" : "sounds", - "m_code" : 404, - "known" : ["test123"], - "cat" : "music" - }, - { - "name" : "Soup", - "uri_check" : "https://www.soup.io/author/{account}", - "e_code" : 200, - "e_string" : "Author at Soup.io", - "m_string" : "Soup.io - News, Sports, Entertainment, TV, Tech, Gaming", - "m_code" : 301, - "known" : ["john", "cristina"], - "cat" : "blog" - }, - { - "name" : "Sourceforge", - "uri_check" : "https://sourceforge.net/user/username/{account}", - "uri_pretty" : "https://sourceforge.net/u/{account}/profile", - "e_code" : 400, - "e_string" : "\"error\": \"invalid\"", - "m_string" : "\"success\": 1", - "m_code" : 200, - "known" : ["alice", "bob"], - "cat" : "coding", - "protection": ["cloudflare"] - }, - { - "name" : "Speaker Deck", - "uri_check" : "https://speakerdeck.com/{account}/", - "e_code" : 200, - "e_string" : ") on Speaker Deck", - "m_string" : "User Not Found - Speaker Deck", - "m_code" : 404, - "known" : ["petecheslock", "turbosmart45"], - "cat" : "social" - }, - { - "name" : "speedrun", - "uri_check" : "https://www.speedrun.com/user/{account}/", - "e_code" : 200, - "e_string" : "Runs - ", - "m_string" : "speedrun.com", - "m_code" : 404, - "known" : ["mike", "chris"], - "cat" : "gaming" - }, - { - "name" : "SpiceWorks", - "uri_check" : "https://community.spiceworks.com/people/{account}", - "e_code" : 200, - "e_string" : "Portfolio of IT Projects - Spiceworks", - "m_string" : "Page Not Found", - "m_code" : 404, - "known" : ["spicerex", "rod-it"], - "cat" : "tech" - }, - { - "name" : "SPOJ", - "uri_check" : "https://www.spoj.com/users/{account}/", - "e_code" : 200, - "e_string" : "<h3>Activity over the last year</h3>", - "m_string" : "<strong>Innopolis Open 2018</strong>", - "m_code" : 200, - "known" : ["defrager", "xilinx"], - "cat" : "coding" - }, - { - "name" : "sporcle", - "uri_check" : "https://www.sporcle.com/user/{account}/people/", - "e_code" : 200, - "e_string" : "'s Sporcle Friends", - "m_string" : "This Sporcle user cannot be found.", - "m_code" : 301, - "known" : ["Test", "lolshortee"], - "cat" : "gaming" - }, - { - "name" : "Sports Tracker", - "uri_check" : "https://api.sports-tracker.com/apiserver/v1/user/name/{account}", - "uri_pretty" : "https://sports-tracker.com/view_profile/{account}", - "e_code" : 200, - "e_string" : "\"uuid\":", - "m_string" : "\"code\":\"404\"", - "m_code" : 200, - "known" : ["petriola", "adisonthadat"], - "cat" : "health" - }, - { - "name" : "Spotify", - "uri_check" : "https://open.spotify.com/user/{account}", - "e_code" : 200, - "e_string" : "content=\"profile\"", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["kexp_official", "mkbhd"], - "cat" : "music", - "protection" : ["other"] - }, - { - "name" : "StackOverflow", - "uri_check" : "https://stackoverflow.com/users/filter?search={account}", - "e_code" : 200, - "e_string" : "grid--item user-info", - "m_string" : "No users matched your search.", - "m_code" : 200, - "known" : ["vonc", "bergi"], - "cat" : "coding", - "protection" : ["cloudflare"] - }, - { - "name" : "Steam", - "uri_check" : "https://steamcommunity.com/id/{account}", - "e_code" : 200, - "e_string" : "g_rgProfileData =", - "m_string" : "Steam Community :: Error", - "m_code" : 200, - "known" : ["test"], - "cat" : "gaming" - }, - { - "name" : "SteamGifts", - "uri_check" : "https://www.steamgifts.com/user/{account}", - "e_code" : 200, - "e_string" : "\"identifier\":", - "m_string" : "", - "m_code" : 301, - "known" : ["AbsurdPoncho", "Wolod1402"], - "cat" : "gaming" - }, - { - "name" : "Steemit", - "uri_check" : "https://signup.steemit.com/api/check_username", - "uri_pretty" : "https://steemit.com/@{account}", - "post_body" : "{\"username\":\"{account}\"}", - "e_code" : 200, - "e_string" : "\"type\":\"error_api_username_used\"", - "m_string" : "\"success\":true", - "m_code" : 200, - "known" : ["petlover", "zalat"], - "cat" : "social", - "headers" : { - "Content-Type" : "application/json" - } - }, - { - "name" : "steller", - "uri_check" : "https://steller.co/{account}", - "e_code" : 200, - "e_string" : " on Steller", - "m_string" : "", - "m_code" : 404, - "known" : ["jeannnn", "havwoods"], - "cat" : "shopping" - }, - { - "name" : "Statuspage", - "uri_check" : "https://{account}.statuspage.io/api/v2/status.json", - "uri_pretty" : "https://{account}.statuspage.io/", - "e_code" : 200, - "e_string" : "updated_at", - "m_string" : "You are being redirected.", - "m_code" : 302, - "known" : ["8713981tpdlg", "gaming", "coinbase"], - "cat" : "tech" - }, - { - "name" : "StoryCorps", - "uri_check" : "https://archive.storycorps.org/user/{account}/", - "e_code" : 200, - "e_string" : "archive author", - "m_string" : "We're sorry, but the page", - "m_code" : 404, - "known" : ["jthorstad", "paul-swider"], - "cat" : "blog" - }, - { - "name" : "StreamElements", - "uri_check" : "https://api.streamelements.com/kappa/v2/channels/{account}", - "uri_pretty" : "https://streamelements.com/{account}", - "e_code" : 200, - "e_string" : "\"providerId\"", - "m_code" : 404, - "m_string" : "error", - "known" : ["honey", "dude"], - "cat" : "finance" - }, - { - "name" : "StreamLabs", - "uri_check" : "https://streamlabs.com/api/v6/user/{account}", - "uri_pretty" : "https://streamlabs.com/{account}/tip", - "e_code" : 200, - "e_string" : "\"id\":", - "m_code" : 401, - "m_string" : "Unauthorized", - "known" : ["veibae", "cutie_cori"], - "cat" : "finance" - }, - { - "name" : "Stripchat", - "uri_check" : "https://stripchat.com/api/front/users/checkUsername?username={account}", - "uri_pretty" : "https://stripchat.com/{account}", - "e_code" : 400, - "e_string" : "\"error\":\"This username already exists\"", - "m_string" : "[]", - "m_code" : 200, - "known" : ["DulcieRichard", "Katie-Mili"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Subscribestar", - "uri_check" : "https://subscribestar.adult/{account}", - "e_code" : 200, - "e_string" : "CREATOR STATS", - "m_code" : 404, - "m_string" : "WE ARE SORRY, THE PAGE YOU REQUESTED CANNOT BE FOUND", - "known" : ["missmoonified", "honey"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Substack", - "uri_check" : "https://substack.com/@{account}", - "e_code" : 200, - "e_string" : "| Substack", - "m_code" : 200, - "m_string" : "" on Substack", - "known" : ["janellehardacre", "janeclairebradley"], - "cat" : "social" - }, - { - "name" : "sukebei.nyaa.si", - "uri_check" : "https://sukebei.nyaa.si/user/{account}", - "e_code" : 200, - "e_string" : "'s torrents", - "m_code" : 404, - "m_string" : "404 Not Found", - "known" : ["kouhy76", "Rektr0"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Suzuri", - "uri_check" : "https://suzuri.jp/{account}", - "e_code" : 200, - "e_string" : "Items", - "m_string" : "Push Space-key", - "m_code" : 404, - "known" : ["itochanxxx", "alex"], - "cat" : "business" - }, - { - "name" : "szmer.info", - "uri_check" : "https://szmer.info/u/{account}", - "e_code" : 200, - "e_string" : "Joined", - "m_string" : "Code: Couldn't find that username or email.", - "m_code" : 200, - "known" : ["przeczzpreczem", "Xavier"], - "cat" : "social" - }, - { - "name" : "tabletoptournament", - "uri_check" : "https://www.tabletoptournaments.net/eu/player/{account}", - "e_code" : 200, - "e_string" : "- Player Profile | T³ - TableTop Tournaments", - "m_string" : "No player with the nickname", - "m_code" : 200, - "known" : ["Lars01", "john"], - "cat" : "misc" - }, - { - "name" : "Tagged", - "uri_check" : "https://secure.tagged.com/{account}", - "e_code" : 200, - "e_string" : "s Profile", - "m_string" : "Tagged - The social network for meeting new people", - "m_code" : 302, - "known" : ["Samantha", "Robert"], - "cat" : "social" - }, - { - "name" : "TamTam", - "uri_check" : "https://tamtam.chat/{account}", - "e_code" : 200, - "e_string" : "deeplink=tamtam://chat/", - "m_string" : "ТамТам", - "m_code" : 302, - "known" : ["blue", "John"], - "cat" : "social" - }, - { - "name" : "Tanuki.pl", - "uri_check" : "https://tanuki.pl/profil/{account}", - "e_code" : 200, - "e_string" : "Dołączył", - "m_string" : "Nie ma takiego użytkownika", - "m_code" : 404, - "known" : ["ania", "avellana"], - "cat" : "hobby" - }, - { - "name" : "TAPiTAG", - "uri_check" : "https://account.tapitag.co/tapitag/api/v1/{account}", - "uri_pretty" : "https://account.tapitag.co/{account}", - "e_code" : 200, - "e_string" : "User details are Showing", - "m_string" : "The rf number is not valid", - "m_code" : 200, - "known" : ["JonathanWallace", "gearoidconsidine"], - "cat" : "business" - }, - { - "name" : "Tappy", - "uri_check" : "https://api.tappy.tech/api/profile/username/{account}", - "uri_pretty" : "https://www.tappy.tech/{account}", - "e_code" : 200, - "e_string" : "user_id", - "m_string" : "Profile of username Not Found", - "m_code" : 200, - "known" : ["alexborrelli", "domocann"], - "cat" : "business" - }, - { - "name" : "Taringa", - "uri_check" : "https://www.taringa.net/{account}", - "e_code" : 200, - "e_string" : " en Taringa!", - "m_string" : "Colectiva en Taringa!", - "m_code" : 301, - "known" : ["jocaxav", "engendrometal"], - "cat" : "social" - }, - { - "name" : "Taringa Archived Profile", - "uri_check" : "https://archive.org/wayback/available?url=https://www.taringa.net/{account}", - "uri_pretty" : "https://web.archive.org/web/2/taringa.net/{account}", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["farantic", "elrubius"], - "cat" : "archived" - }, - { - "name" : "taskrabbit", - "uri_check" : "https://www.taskrabbit.com/profile/{account}/about", - "e_code" : 200, - "e_string" : "’s Profile", - "m_string" : "", - "m_code" : 302, - "known" : ["john", "sam"], - "cat" : "business" - }, - { - "name" : "TETR.IO", - "uri_check" : "https://ch.tetr.io/api/users/{account}", - "uri_pretty" : "https://ch.tetr.io/u/{account}", - "e_code" : 200, - "e_string" : "\"success\":true", - "m_string" : "\"success\":false", - "m_code" : 404, - "known" : ["icly", "5han"], - "cat" : "gaming" - }, - { - "name" : "Teamtreehouse", - "uri_check" : "https://teamtreehouse.com/{account}", - "e_code" : 200, - "e_string" : "Member Since", - "m_string" : "Oops, Something went missing", - "m_code" : 404, - "known" : ["john"], - "cat" : "coding" - }, - { - "name" : "Teddygirls", - "uri_check" : "https://teddysgirls.net/models/{account}", - "e_code" : 200, - "e_string" : ";s exclusive page to subscribe to her", - "m_string" : "The page you were looking for doesn't exist", - "m_code" : 404, - "known" : ["jaycee-starr", "chubbychick94"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Teespring", - "uri_check" : "https://commerce.teespring.com/v1/stores?slug={account}", - "uri_pretty" : "https://{account}.creator-spring.com", - "e_code" : 200, - "e_string" : "sellerToken", - "m_code" : 404, - "m_string" : "{\"errors\":{\"store\":[\"not found\"]}}", - "known" : ["missmoonified", "honey"], - "cat" : "business" - }, - { - "name" : "Teknik", - "uri_check" : "https://user.teknik.io/{account}", - "e_code" : 200, - "e_string" : "Public Key", - "m_string" : "The user does not exist", - "m_code" : 200, - "known" : ["red", "bob"], - "cat" : "tech" - }, - { - "name" : "Telegram", - "uri_check" : "https://t.me/{account}", - "e_code" : 200, - "e_string" : "tgme_page_title", - "m_string" : "noindex, nofollow", - "m_code" : 200, - "known" : ["alice", "giovanni"], - "cat" : "social" - }, - { - "name" : "Teletype", - "uri_check" : "https://teletype.in/@{account}", - "e_code" : 200, - "e_string" : "class=\"layout__content m_main blog\"", - "m_string" : "class=\"error\"", - "m_code" : 404, - "known" : ["mart11", "anotherj"], - "cat" : "blog" - }, - { - "name" : "Tellonym", - "uri_check" : "https://tellonym.me/{account}", - "e_code" : 200, - "e_string" : "on Tellonym", - "m_string" : "- Honest & Anonymous Feedback", - "m_code" : 404, - "known" : ["jane", "jimmy"], - "cat" : "social" - }, - { - "name" : "Tenor", - "uri_check" : "https://tenor.com/users/{account}", - "e_code" : 200, - "e_string" : "
", - "m_code" : 404, - "m_string" : "We could not find the page you were looking for.", - "known" : ["gnutv", "d33jay23"], - "cat" : "images" - }, - { - "name" : "TF2 Backpack Examiner", - "uri_check" : "http://www.tf2items.com/id/{account}/", - "e_code" : 200, - "e_string" : "TF2 Backpack -", - "m_string" : "", - "m_code" : 302, - "known" : ["test"], - "cat" : "gaming" - }, - { - "name" : "themeforest", - "uri_check" : "https://themeforest.net/user/{account}", - "e_code" : 200, - "e_string" : "s profile on ThemeForest", - "m_string" : "Page Not Found | ThemeForest", - "m_code" : 301, - "known" : ["john", "bob"], - "cat" : "art" - }, - { - "name" : "thegatewaypundit", - "uri_check" : "https://www.thegatewaypundit.com/author/{account}/", - "e_code" : 200, - "e_string" : "summary", - "m_string" : "Not found, error 404", - "m_code" : 404, - "known" : ["patti", "joehoft"], - "cat" : "political" - }, - { - "name" : "theguardian", - "uri_check" : "https://www.theguardian.com/profile/{account}", - "e_code" : 200, - "e_string" : "https://www.theguardian.com/profile/", - "m_string" : "Page not found | The Guardian", - "m_code" : 404, - "known" : ["minna-salami", "johnnaughton"], - "cat" : "news" - }, - { - "name" : "Thetattooforum", - "uri_check" : "https://www.thetattooforum.com/members/{account}/", - "e_code" : 200, - "e_string" : "Insert This Gallery", - "m_string" : "We’re sorry", - "m_code" : 500, - "known" : ["mixdop", "modifyielts"], - "cat" : "art" - }, - { - "name" : "thoughts", - "uri_check" : "https://thoughts.com/members/{account}/", - "e_code" : 200, - "e_string" : "<span class=\"activity", - "m_string" : "<title>Page not found", - "m_code" : 404, - "known" : ["myownpersonalthoughts", "danwions"], - "cat" : "hobby" - }, - { - "name" : "Threads.net", - "uri_check" : "https://www.threads.net/@{account}", - "e_code" : 200, - "e_string" : ") on Threads", - "m_string" : "Threads", - "m_code" : 200, - "known" : ["s_novoselov", "oliveralexanderdk"], - "cat" : "social" - }, - { - "name" : "TikTok", - "uri_check" : "https://www.tiktok.com/oembed?url=https://www.tiktok.com/@{account}", - "uri_pretty" : "https://www.tiktok.com/@{account}?lang=en", - "e_code" : 200, - "e_string" : "author_url", - "m_string" : "Something went wrong", - "m_code" : 400, - "known" : ["gordonramsayofficial", "pookiebear73"], - "cat" : "social" - }, - { - "name" : "Tilde.zone (Mastodon Instance)", - "uri_check" : "https://tilde.zone/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://tilde.zone/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["ben", "lunatic"], - "cat" : "social" - }, - { - "name" : "Tindie", - "uri_check" : "https://www.tindie.com/accounts/check_username/", - "uri_pretty" : "https://www.tindie.com/stores/{account}/", - "post_body" : "username={account}", - "e_code" : 200, - "e_string" : "\"errors\": [\"Username taken!\"]", - "m_string" : "\"valid\": true", - "m_code" : 200, - "known" : ["tehrabbitt", "dekunukem"], - "cat" : "shopping", - "headers" : { - "Content-Type": "application/x-www-form-urlencoded" - } - }, - { - "name" : "Tinder", - "uri_check" : "https://tinder.com/@{account}", - "e_code" : 200, - "e_string" : ") | Tinder", - "m_string" : "Tinder | Dating, Make Friends & Meet New People", - "m_code" : 200, - "known" : ["Alexey", "peter", "john"], - "cat" : "dating" - }, - { - "name" : "Topcoder", - "uri_check" : "https://api.topcoder.com/v5/members/{account}", - "uri_pretty" : "https://profiles.topcoder.com/{account}", - "e_code" : 200, - "e_string" : "\"userId\":", - "m_code" : 404, - "m_string" : "\"message\":\"Member with handle:", - "known" : ["chinvib66", "mwakanosya"], - "cat" : "coding" - }, - { - "name" : "Tooting.ch (Mastodon Instance)", - "uri_check" : "https://tooting.ch/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://tooting.ch/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["mikebeganyi", "Zugi"], - "cat" : "social" - }, - { - "name" : "toyhou.se", - "uri_check" : "https://toyhou.se/{account}", - "e_code" : 200, - "e_string" : "display-user", - "m_code" : 404, - "m_string" : "We can't find that page!", - "known" : ["22RII", "honey"], - "cat" : "hobby" - }, - { - "name" : "tradingview", - "uri_check" : "https://www.tradingview.com/u/{account}/", - "e_code" : 200, - "e_string" : "— Trading Ideas &", - "m_string" : "Page not found — TradingView", - "m_code" : 404, - "known" : ["liam", "john"], - "cat" : "finance" - }, - { - "name" : "trakt", - "uri_check" : "https://trakt.tv/users/{account}", - "e_code" : 200, - "e_string" : "s profile - Trakt", - "m_string" : "The page you were looking for doesn't exist (404) - Trakt.tv", - "m_code" : 404, - "known" : ["john", "anne"], - "cat" : "video" - }, - { - "name" : "Trello", - "uri_check" : "https://trello.com/1/Members/{account}", - "uri_pretty" : "https://trello.com/{account}", - "e_code" : 200, - "e_string" : "\"id\":", - "m_code" : 404, - "m_string" : "

Oh no! 404!

", - "known" : ["naranjasan", "jane"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "tripadvisor", - "uri_check" : "https://www.tripadvisor.com/Profile/{account}", - "e_code" : 200, - "e_string" : "Contributions", - "m_string" : "This page is on vacation", - "m_code" : 404, - "known" : ["john", "peter"], - "cat" : "social" - }, - { - "name" : "TruckersMP", - "uri_check" : "https://truckersmp.com/user/search?search={account}", - "e_code" : 200, - "e_string" : "class=\"team-v2\"", - "m_string" : "

Could not find any member using these credentials

", - "m_code" : 200, - "known" : ["JohnnySOBA", "Vasya_Run"], - "cat" : "gaming" - }, - { - "name" : "TruckersMP.Ru", - "uri_check" : "https://truckersmp.ru/{account}", - "e_code" : 200, - "e_string" : "class=\"b-user-page\"", - "m_string" : "class=\"b-handler-error-404\"", - "m_code" : 404, - "known" : ["ramanbardashevich", "Sanya193Rus"], - "cat" : "gaming" - }, - { - "name" : "Truth Social", - "uri_check" : "https://truthsocial.com/api/v1/accounts/lookup?acct={account}", - "e_code" : 200, - "e_string" : "display_name", - "m_string" : "Record not found", - "m_code" : 404, - "known" : ["realdonaldtrump", "ScottAdamsTruth"], - "cat" : "social" - }, - { - "name" : "TryHackMe", - "uri_check" : "https://tryhackme.com/api/user/exist/{account}", - "uri_pretty" : "https://tryhackme.com/r/p/{account}", - "e_code" : 200, - "e_string" : "\"success\":true", - "m_string" : "\"success\":false", - "m_code" : 200, - "known" : ["user", "goyalyuval15"], - "cat" : "tech" - }, - { - "name" : "Tryst", - "uri_check" : "https://tryst.link/escort/{account}", - "e_code" : 200, - "e_string" : "Caters to
", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["lpatterson32", "kansasgirl69"], - "cat" : "xx NSFW xx" - }, - { - "name" : "tumblr", - "uri_check" : "https://{account}.tumblr.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "avatar", - "m_string" : "There's nothing here", - "m_code" : 404, - "known" : ["test", "test1"], - "cat" : "images" - }, - { - "name" : "tunefind", - "uri_check" : "https://www.tunefind.com/api-request/account/profile?userName={account}", - "uri_pretty" : "https://www.tunefind.com/user/profile/{account}", - "e_code" : 200, - "e_string" : "user-stats-engagement", - "m_string" : "User not found:", - "m_code" : 404, - "known" : ["baywolfmusic", "mrcerny18"], - "cat" : "music" - }, - { - "name" : "Twitcasting", - "uri_check" : "https://twitcasting.tv/{account}", - "e_code" : 200, - "e_string" : "Live History", - "m_string" : "Not Found", - "m_code" : 302, - "known" : ["yuno___nico", "2_t0_"], - "cat" : "social" - }, - { - "name" : "Twitch", - "uri_check" : "https://twitchtracker.com/{account}", - "uri_pretty" : "https://twitch.tv/{account}/", - "e_code" : 200, - "e_string" : "Overview</a>", - "m_string" : "<title>404 Page Not Found", - "m_code" : 404, - "known" : ["summit1g", "cohhcarnage"], - "cat" : "gaming" - }, - { - "name" : "Twitter archived profile", - "uri_check" : "http://archive.org/wayback/available?url=https://twitter.com/{account}", - "uri_pretty" : "https://web.archive.org/web/2/https://twitter.com/{account}", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["jack", "dineshdsouza"], - "cat" : "archived" - }, - { - "name" : "Twitter archived tweets", - "uri_check" : "http://archive.org/wayback/available?url=https://twitter.com/{account}/status/*", - "uri_pretty" : "https://web.archive.org/web/*/https://twitter.com/{account}/status/*", - "e_code" : 200, - "e_string" : "\"archived_snapshots\": {\"closest\"", - "m_string" : "\"archived_snapshots\": {}", - "m_code" : 200, - "known" : ["jack", "dineshdsouza"], - "cat" : "archived" - }, - { - "name" : "twoplustwo", - "uri_check" : "https://forumserver.twoplustwo.com/ajax.php?do=usersearch", - "uri_pretty" : "https://forumserver.twoplustwo.com/search.php", - "post_body" : "securitytoken=guest&do=usersearch&fragment={account}", - "e_code" : 200, - "e_string" : "userid=", - "m_string" : "", - "m_code" : 404, - "known" : ["redsox", "adam"], - "cat" : "hobby" - }, - { - "name" : "twpro", - "uri_check" : "https://twpro.jp/{account}", - "e_code" : 200, - "e_string" : "おとなりさん", - "m_code" : 404, - "m_string" : "をご確認ください。", - "known" : ["wsise47", "tsukiusa630"], - "cat" : "social" - }, - { - "name" : "Ubisoft", - "uri_check" : "https://discussions.ubisoft.com/user/{account}", - "e_code" : 200, - "e_string" : "| Ubisoft Discussion Forums", - "m_string" : "You seem to have stumbled upon a page that does not exist.", - "m_code" : 404, - "known" : ["fizzle_fuze", "th05324"], - "cat" : "gaming" - }, - { - "name" : "Udemy", - "uri_check" : "https://www.udemy.com/user/{account}/", - "e_code" : 200, - "e_string" : "| Udemy", - "m_string" : "Online Courses - Learn Anything, On Your Schedule | Udemy", - "m_code" : 301, - "known" : ["stephane-maarek", "lizbrown3"], - "cat" : "tech" - }, - { - "name" : "UEF CONNECT", - "uri_check" : "https://uefconnect.uef.fi/en/{account}/", - "e_code" : 200, - "e_string" : "profile-page-header__info", - "m_string" : "Page not found - UEFConnect", - "m_code" : 404, - "known" : ["heli.mutanen", "mette.heiskanen"], - "cat" : "business" - }, - { - "name" : "uid", - "uri_check" : "http://uid.me/{account}", - "e_code" : 200, - "e_string" : "- uID.me", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["john", "peter"], - "cat" : "social" - }, - { - "name" : "Ultimate Guitar", - "uri_check" : "https://www.ultimate-guitar.com/u/{account}", - "e_code" : 200, - "e_string" : " | Ultimate-Guitar.Com", - "m_string" : "Oops! We couldn't find that page.", - "m_code" : 410, - "known" : ["LYNX-Music", "Mikhailo","MeGaDeth2314"], - "cat" : "hobby" - }, - { - "name" : "Ultras Diary", - "uri_check" : "http://ultrasdiary.pl/u/{account}/", - "e_code" : 200, - "e_string" : "Mecze wyjazdowe:", - "m_string" : "Ile masz wyjazdów?", - "m_code" : 404, - "known" : ["janek", "kowal"], - "cat" : "hobby" - }, - { - "name" : "Unlisted Videos", - "uri_check" : "https://unlistedvideos.com/search.php?user={account}", - "e_code" : 200, - "e_string" : "Date submitted", - "m_string" : "content=\"\"/>", - "m_code" : 200, - "known" : ["emudshit", "hirumaredx"], - "cat" : "archived" - }, - { - "name" : "unsplash", - "uri_check" : "https://unsplash.com/@{account}", - "e_code" : 200, - "e_string" : "| Unsplash Photo Community", - "m_string" : "Hm, the page you were looking for doesn't seem to exist anymore.", - "m_code" : 404, - "known" : ["john", "alex"], - "cat" : "images" - }, - { - "name" : "untappd", - "uri_check" : "https://untappd.com/user/{account}/", - "e_code" : 200, - "e_string" : "on Untappd", - "m_string" : "Untappd | 404", - "m_code" : 404, - "known" : ["test", "phil"], - "cat" : "social" - }, - { - "name" : "USA Life", - "uri_check" : "https://usa.life/{account}", - "e_code" : 200, - "e_string" : "Please log in to like, share and comment", - "m_string" : "Sorry, page not found", - "m_code" : 302, - "known" : ["abaynes79", "not1face"], - "cat" : "social" - }, - { - "name" : "utip.io", - "uri_check" : "https://utip.io/creator/profile/{account}", - "uri_pretty" : "https://utip.io/{account}", - "e_code" : 200, - "e_string" : "\"userName\"", - "m_code" : 404, - "m_string" : "Not a valid web service key", - "known" : ["honey", "chloe"], - "cat" : "finance" - }, - { - "name" : "Uwumarket", - "uri_check" : "https://uwumarket.us/collections/{account}", - "e_code" : 200, - "e_string" : "collection-hero__text-wrapper", - "m_code" : 404, - "m_string" : "Page not found", - "known" : ["saki", "aicandii"], - "cat" : "business" - }, - { - "name" : "uwu.ai", - "uri_check" : "https://{account}.uwu.ai/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "property=\"twitter:card\"", - "m_code" : 404, - "m_string" : "Sorry, the requested page could not be found.", - "known" : ["elite", "citruciel"], - "cat" : "social" - }, - { - "name" : "vapenews", - "uri_check" : "https://vapenews.ru/profile/{account}", - "e_code" : 200, - "e_string" : "Профиль", - "m_string" : "404", - "m_code" : 404, - "known" : ["igor", "vladimir"], - "cat" : "hobby" - }, - { - "name" : "vsco", - "uri_check" : "https://vsco.co/{account}/gallery", - "e_code" : 200, - "e_string" : "permaSubdomain", - "m_string" : "\"error\":\"site_not_found\"}", - "m_code" : 404, - "known" : ["sam", "becca"], - "cat" : "social", - "headers" : {"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0"} - }, - { - "name" : "Venmo", - "uri_check" : "https://account.venmo.com/u/{account}", - "e_code" : 200, - "e_string" : "profileInfo_username__", - "m_string" : "Sorry, the page you requested does not exist!", - "m_code" : 404, - "known" : ["John-Goolsby-8", "kate-mura"], - "cat" : "finance" - }, - { - "name" : "Vero", - "uri_check" : "https://vero.co/{account}", - "e_code" : 200, - "e_string" : "name=\"username", - "m_string" : "

Not Found

", - "m_code" : 200, - "known" : ["alex", "johnny"], - "cat" : "art" - }, - { - "name" : "vibilagare", - "uri_check" : "https://www.vibilagare.se/users/{account}", - "e_code" : 200, - "e_string" : "Profil på vibilagare.se", - "m_string" : "Sidan hittades inte |", - "m_code" : 404, - "known" : ["lars01", "sven"], - "cat" : "misc" - }, - { - "name" : "viddler", - "uri_check" : "https://www.viddler.com/channel/{account}/", - "e_code" : 200, - "e_string" : "profile-details", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["GamingParodies", "planphilly"], - "cat" : "video" - }, - { - "name" : "VIEWBUG", - "uri_check" : "https://www.viewbug.com/member/{account}", - "e_code" : 200, - "e_string" : "class=\"top-profile-since\"", - "m_string" : "id=\"missing-this\"", - "m_code" : 404, - "known" : ["soulcraft", "aychmb"], - "cat" : "hobby" - }, - { - "name" : "Vimeo", - "uri_check" : "https://vimeo.com/{account}", - "e_code" : 200, - "e_string" : "og:type", - "m_string" : "VimeUhOh", - "m_code" : 404, - "known" : ["john", "alice"], - "cat" : "video" - }, - { - "name" : "Vine", - "uri_check" : "https://vine.co/api/users/profiles/vanity/{account}", - "uri_pretty" : "https://vine.co/{account}", - "e_code" : 200, - "e_string" : "userId", - "m_string" : "That record does not exist", - "m_code" : 404, - "known" : ["TomHarlock", "Seks"], - "cat" : "video" - }, - { - "name" : "visnesscard", - "uri_check" : "https://my.visnesscard.com/Home/GetCard/{account}", - "uri_pretty" : "https://my.visnesscard.com/{account}", - "e_code" : 200, - "e_string" : "end_point", - "m_string" : "card_id\": 0", - "m_code" : 200, - "known" : ["Lisa-Gordon", "Bill-Schaeffer"], - "cat" : "business" - }, - { - "name" : "Vivino", - "uri_check" : "https://www.vivino.com/users/{account}", - "e_code" : 200, - "e_string" : "", - "m_string" : "Page not found", - "m_code" : 404, - "known" : ["test", "admin"], - "cat" : "video" - }, - { - "name" : "VIP-blog", - "uri_check" : "http://{account}.vip-blog.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "blog : ", - "m_string" : "Blog inexistant", - "m_code" : 200, - "known" : ["sarah", "brahim01"], - "cat" : "blog" - }, - { - "name" : "VirusTotal", - "uri_check" : "https://www.virustotal.com/ui/users/{account}", - "uri_pretty" : "https://www.virustotal.com/gui/user/{account}", - "headers" : { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", - "X-Tool": "vt-ui-main", - "Accept-Ianguage": "en-US", - "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" - }, - "e_code" : 200, - "e_string" :"\"data\"", - "m_string" : "\"code\": \"NotFoundError\"", - "m_code" : 404, - "known" : ["cyber", "cybersecstu"], - "cat" : "misc" - }, - { - "name" : "VK", - "uri_check" : "https://vk.com/{account}", - "e_code" : 200, - "e_string" : "content=\"profile\"", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["ches_ches", "mike.kidlazy"], - "cat" : "social", - "headers" : { - "User-Agent" : "Mozilla/5.0 (X11; Linux i686; rv:125.0) Gecko/20100101 Firefox/125.0" - } - }, - { - "name" : "Vkl.world (Mastodon Instance)", - "uri_check" : "https://vkl.world/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://vkl.world/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["king", "aniver"], - "cat" : "social" - }, - { - "name" : "Vmst.io (Mastodon Instance)", - "uri_check" : "https://vmst.io/api/v1/accounts/lookup?acct={account}", - "uri_pretty" : "https://vmst.io/@{account}", - "e_code" : 200, - "e_string" : "display_name", - "m_code" : 404, - "m_string" : "Record not found", - "known" : ["vmstan", "honestdave"], - "cat" : "social" - }, - { - "name" : "Voice123", - "uri_check" : "https://voice123.com/api/providers/search/{account}", - "uri_pretty" : "https://voice123.com/{account}", - "e_code" : 200, - "e_string" : "user_id", - "m_code" : 200, - "m_string" : "[]", - "known" : ["dottovuu", "maheshsaha1992"], - "cat" : "hobby" - }, - { - "name" : "Voices.com", - "uri_check" : "https://www.voices.com/profile/{account}/", - "e_code" : 200, - "e_string" : "Last Online

", - "m_string" : "Try going back to the previous page or see below for more options", - "m_code" : 301, - "known" : ["briankirchoff", "bryankopta"], - "cat" : "business" - }, - { - "name" : "W3Schools", - "uri_check" : "https://pathfinder-api.kai.w3spaces.com/public-profile-api/{account}", - "e_code" : 200, - "e_string" : "\"userId\":", - "m_string" : "\"message\":\"Profile does not exists or not visible\"", - "m_code" : 404, - "known" : ["test", "admin"], - "cat" : "tech" - }, - { - "name" : "watchmemore.com", - "uri_check" : "https://api.watchmemore.com/api4/profile/{account}/", - "uri_pretty" : "https://watchmemore.com/{account}/", - "e_code" : 200, - "e_string" : "displayName", - "m_string" : "notExists", - "m_code" : 400, - "known" : ["medroxy", "nodjev"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Warmerise", - "uri_check" : "https://warmerise.com/profile/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "404 - Page Not Found", - "m_code" : 404, - "known" : ["dave", "john"], - "cat" : "misc" - }, - { - "name" : "Weblancer", - "uri_check" : "https://www.weblancer.net/users/{account}/", - "e_code" : 200, - "e_string" : "\"user\":", - "m_string" : "\"page\":\"/404\"", - "m_code" : 404, - "known" : ["kevin", "WebArtyom"], - "cat" : "social", - "headers" : {"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0"} - }, - { - "name" : "weheartit", - "uri_check" : "https://weheartit.com/{account}", - "e_code" : 200, - "e_string" : " on We Heart It", - "m_string" : " (404)", - "m_code" : 404, - "known" : ["alice", "bob"], - "cat" : "social" - }, - { - "name" : "wego", - "uri_check" : "https://wego.social/{account}", - "e_code" : 200, - "e_string" : "Following", - "m_string" : "Sorry, page not found!", - "m_code" : 302, - "known" : ["mmish2", "Lisa_M_S"], - "cat" : "political" - }, - { - "name" : "weibo", - "uri_check" : "https://tw.weibo.com/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "Oops!", - "m_code" : 200, - "known" : ["chentingni", "fbb0916"], - "cat" : "social" - }, - { - "name" : "WeTransfer", - "uri_check" : "https://{account}.wetransfer.com", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "workspaceName", - "m_string" : "", - "m_code" : 307, - "known" : ["mark", "joe"], - "cat" : "misc" - }, - { - "name" : "Wikidot", - "uri_check" : "http://www.wikidot.com/user:info/{account}", - "e_code" : 200, - "e_string" : "

", - "m_string" : "
User does not exist.
", - "m_code" : 200, - "known" : ["jack", "allen"], - "cat" : "social" - }, - { - "name" : "Wikimapia", - "uri_check" : "https://wikimapia.org/user/register/?check=username&value={account}", - "uri_pretty" : "https://wikimapia.org/user/tools/users_rating/?username={account}", - "e_code" : 200, - "e_string" : "\"ok\":false", - "m_string" : "\"ok\":true", - "m_code" : 200, - "known" : ["bubnilka", "Teresa"], - "cat" : "social" - }, - { - "name" : "Wikipedia", - "uri_check" : "https://meta.wikimedia.org/w/api.php?action=query&format=json&list=globalallusers&aguprefix={account}&agulimit=100", - "uri_pretty" : "https://en.wikipedia.org/wiki/User:{account}", - "e_code" : 200, - "e_string" : "{\"id\":", - "m_string" : ":[]}}", - "m_code" : 200, - "known" : ["sector051", "webbreacher"], - "cat" : "news" - }, - { - "name" : "Wimkin-PublicProfile", - "uri_check" : "https://wimkin.com/{account}", - "e_code" : 200, - "e_string" : "is on WIMKIN", - "m_string" : " The page you are looking for cannot be found.", - "m_code" : 404, - "known" : ["alex", "smith", "boomer"], - "cat" : "political" - }, - { - "name" : "Wireclub", - "uri_check" : "https://www.wireclub.com/users/{account}", - "e_code" : 200, - "e_string" : "Chat With", - "m_string" : "People - Wireclub", - "m_code" : 301, - "known" : ["deae", "cheerfulsarcasm", "braydenskiresort"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "Wakatime", - "uri_check" : "https://wakatime.com/@{account}", - "e_code" : 200, - "e_string" : ") - WakaTime", - "m_string" : "404: Not Found", - "m_code" : 404, - "known" : ["jake", "alimirzayev"], - "cat" : "coding" - }, - { - "name" : "Wishlistr", - "uri_check" : "https://www.wishlistr.com/sign-up/?rs=checkUserName&rsargs[]={account}", - "uri_pretty" : "https://www.wishlistr.com/{account}/", - "e_code" : 200, - "e_string" : "+:var res = \"", - "m_string" : "+:var res = parseInt(0);", - "m_code" : 200, - "known" : ["bodymodgrrrl", "kethistle"], - "cat" : "shopping" - }, - { - "name" : "wordnik", - "uri_check" : "https://www.wordnik.com/users/{account}", - "e_code" : 200, - "e_string" : "Welcome,", - "m_string" : "Wordnik: Page Not Found", - "m_code" : 404, - "known" : ["elle", "john"], - "cat" : "gaming" - }, - { - "name" : "WordPress", - "uri_check" : "https://profiles.wordpress.org/{account}/", - "e_code" : 200, - "e_string" : "user-member-since", - "m_string" : "", - "m_code" : 404, - "known" : ["test"], - "cat" : "blog" - }, - { - "name" : "WordPress Support", - "uri_check" : "https://wordpress.org/support/users/{account}/", - "e_code" : 200, - "e_string" : "s Profile | WordPress.org", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["test"], - "cat" : "blog" - }, - { - "name" : "Wowhead", - "uri_check" : "https://www.wowhead.com/user={account}", - "e_code" : 200, - "e_string" : " Profile - Wowhead", - "m_string" : "Error - Wowhead", - "m_code" : 404, - "known" : ["Ashelia", "Zizarz"], - "cat" : "gaming" - }, - { - "name" : "Wykop", - "uri_check" : "https://wykop.pl/ludzie/{account}", - "e_code" : 200, - "e_string" : "<title>Profil:", - "m_string" : "Wystąpił błąd 404.", - "m_code" : 404, - "known" : ["test", "test2"], - "cat" : "social" - }, - { - "name" : "Xakep.ru", - "uri_check" : "https://xakep.ru/author/{account}/", - "e_code" : 200, - "e_string" : "authorBlock-avatar", - "m_string" : "Страница не найдена", - "m_code" : 404, - "known" : ["tr3harder", "stariy"], - "cat" : "tech" - }, - { - "name" : "X", - "uri_check" : "https://api.x.com/i/users/username_available.json?username={account}", - "uri_pretty" : "https://x.com/{account}", - "e_code" : 200, - "e_string" : "\"reason\":\"taken\"", - "m_string" : "\"reason\":\"available\"", - "m_code" : 200, - "known" : ["WebBreacher", "OSINT_Tactical"], - "cat" : "social" - }, - { - "name" : "Xanga", - "uri_check" : "http://{account}.xanga.com/", - "strip_bad_char" : ".", - "e_code" : 200, - "e_string" : "s Xanga Site | Just", - "m_string" : "", - "m_code" : 302, - "known" : ["john"], - "cat" : "blog" - }, - { - "name" : "Xbox Gamertag", - "uri_check" : "https://www.xboxgamertag.com/search/{account}", - "e_code" : 200, - "e_string" : "Games Played", - "m_string" : "Gamertag doesn't exist", - "m_code" : 404, - "known" : ["Spiken8", "john"], - "cat" : "gaming" - }, - { - "name" : "xHamster", - "uri_check" : "https://xhamster.com/users/{account}", - "e_code" : 200, - "e_string" : "s profile | xHamster", - "m_string" : "User not found", - "m_code" : 404, - "known" : ["john", "tonystark85"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Xing", - "uri_check" : "https://www.xing.com/profile/{account}", - "e_code" : 200, - "e_string" : "", - "m_string" : "Bad request", - "m_code" : 400, - "known" : ["john", "mumrra"], - "cat" : "xx NSFW xx" - }, - { - "name" : "XVIDEOS-models", - "uri_check" : "https://www.xvideos.com/models/{account}", - "e_code" : 200, - "e_string" : "Total video views", - "m_string" : "THIS PROFILE DOESN'T EXIST", - "m_code" : 404, - "known" : ["vvalencourt3", "tiffany-tyler"], - "cat" : "xx NSFW xx" - }, - { - "name" : "XVIDEOS-profiles", - "uri_check" : "https://www.xvideos.com/profiles/{account}", - "e_code" : 200, - "e_string" : "page - XVIDEOS.COM", - "m_string" : "THIS PROFILE DOESN'T EXIST", - "m_code" : 404, - "known" : ["nympho-nailer", "dpadicto", "bkg"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Yahoo! JAPAN Auction", - "uri_check" : "https://auctions.yahoo.co.jp/follow/list/{account}", - "e_code" : 200, - "e_string" : "出品者", - "m_code" : 500, - "m_string" : "Yahoo! JAPAN IDが無効です。", - "known" : ["fltr14502003"], - "cat" : "shopping" - }, - { - "name" : "yapishu", - "uri_check" : "https://yapishu.net/user/{account}", - "e_code" : 200, - "e_string" : "for_profile", - "m_string" : "Not Found (#404)", - "m_code" : 404, - "known" : ["roman", "semion"], - "cat" : "hobby" - }, - { - "name" : "Yazawaj", - "uri_check" : "https://www.yazawaj.com/profile/{account}", - "e_code" : 200, - "e_string" : "profile-description", - "m_string" : "<title>nodata", - "m_code" : 302, - "known" : ["monya14555d", "LordMohy"], - "cat" : "dating" - }, - { - "name" : "YesWeHack", - "uri_check" : "https://api.yeswehack.com/hunters/{account}", - "uri_pretty" : "https://yeswehack.com/hunters/{account}", - "e_code" : 200, - "e_string" : "\"username\":", - "m_string" : "\"code\":404", - "m_code" : 404, - "known" : ["xel", "rabhi"], - "cat" : "tech" - }, - { - "name" : "youpic", - "uri_check" : "https://youpic.com/photographer/{account}", - "e_code" : 200, - "e_string" : "<meta name=\"og:title\"", - "m_string" : "<title>YouPic — Not Found", - "m_code" : 404, - "known" : ["photodude", "mike"], - "cat" : "hobby" - }, - { - "name" : "YouNow", - "uri_check" : "https://api.younow.com/php/api/broadcast/info/user={account}", - "uri_pretty" : "https://www.younow.com/{account}", - "e_code" : 200, - "e_string" : "\"userId\":", - "m_string" : "\"errorMsg\":\"No users found\"", - "m_code" : 200, - "known" : ["lydia_tan33", "RavJagz"], - "cat" : "social", - "protection" : ["other"] - }, - { - "name" : "YouTube Channel", - "uri_check" : "https://www.youtube.com/c/{account}/about", - "e_code" : 200, - "e_string" : "joinedDateText", - "m_string" : "404 Not Found", - "m_code" : 404, - "known" : ["OvylarockTHR","OSINTDojo"], - "cat" : "video" - }, - { - "name" : "YouTube User", - "uri_check" : "https://www.youtube.com/user/{account}/about", - "e_code" : 200, - "e_string" : "joinedDateText", - "m_string" : "<title>404 Not Found", - "m_code" : 404, - "known" : ["MicahHoffman","theosintcuriousproject"], - "cat" : "video" - }, - { - "name" : "YouTube User2", - "uri_check" : "https://www.youtube.com/@{account}", - "e_code" : 200, - "e_string" : "canonicalBaseUrl", - "m_string" : "<title>404 Not Found", - "m_code" : 404, - "known" : ["tactical-systems","CybersecurityMeg"], - "cat" : "video" - }, - { - "name" : "Znanija", - "uri_check" : "https://znanija.com/graphql/ru?operationName=NickAvailability&query=query NickAvailability($nick:String!){nickAvailability(nick:$nick){isAvailable}}&variables={\"nick\":\"{account}\"}", - "e_code" : 200, - "e_string" : "\"isAvailable\":false", - "m_string" : "\"isAvailable\":true", - "m_code" : 200, - "known" : ["ila817674", "abduabubakir42"], - "cat" : "misc", - "protection": ["cloudflare"] - }, - { - "name" : "Zbiornik", - "uri_check" : "https://mini.zbiornik.com/{account}", - "e_code" : 200, - "e_string" : "INFO", - "m_string" : "", - "m_code" : 301, - "known" : ["69uzytkownik69", "Soif"], - "cat" : "xx NSFW xx", - "headers" : {"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0"} - }, - { - "name" : "Zenn", - "uri_check" : "https://zenn.dev/{account}", - "e_code" : 200, - "e_string" : "
", - "m_string" : "
404
", - "m_code" : 404, - "known" : ["john", "blue"], - "cat" : "coding" - }, - { - "name" : "Zepeto", - "uri_pretty" : "https://web.zepeto.me/share/user/profile/{account}?language=en", - "uri_check" : "https://gw-napi.zepeto.io/profiles/{account}", - "e_code" : 200, - "e_string" : "zepetoId\":", - "m_string" : "errorCode\":", - "m_code" : 200, - "known" : ["joe", "james"], - "cat" : "social" - }, - { - "name" : "zhihu", - "uri_check" : "https://api.zhihu.com/books/people/{account}/publications?offset=0&limit=5", - "uri_pretty" : "https://www.zhihu.com/people/{account}", - "e_code" : 200, - "e_string" : "\"is_start\": true", - "m_string" : "\"name\": \"NotFoundException\"", - "m_code" : 404, - "known" : ["lushnis", "kan-shu-jiao-hua-shai-tai-yang"], - "cat" : "social" - }, - { - "name" : "Zillow", - "uri_check" : "https://www.zillow.com/profile/{account}/", - "e_code" : 200, - "e_string" : "- Real Estate Agent", - "m_string" : "", - "m_code" : 302, - "known" : ["JOHN-L-SULLIVAN", "Maggie-Alegria"], - "cat" : "shopping" - }, - { - "name" : "zmarsa.com", - "uri_check" : "https://zmarsa.com/uzytkownik/{account}", - "e_code" : 200, - "e_string" : "Statystyki", - "m_string" : "Error 404 - zMarsa.com<", - "m_code" : 404, - "known" : ["janek", "test"], - "cat" : "xx NSFW xx" - }, - { - "name" : "Zomato", - "uri_check" : "https://www.zomato.com/{account}/reviews", - "e_code" : 200, - "e_string" : "Activity</h4>", - "m_string" : "This is a 404 page and we think it's fairly clear", - "m_code" : 404, - "known" : ["john", "jess"], - "cat" : "social", - "headers" : {"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0"} - }, - { - "name" : "zoomitir", - "uri_check" : "https://www.zoomit.ir/user/{account}/", - "e_code" : 301, - "e_string" : "", - "m_string" : "<title>خطای ۴۰۴ - صفحه یافت نشد", - "m_code" : 404, - "known" : ["rezaghezi", "hosssssein"], - "cat" : "tech" - } - ] -} +{ + "license": [ + "Copyright (C) 2025 Micah Hoffman", + "This work is licensed under the Creative Commons Attribution-ShareAlike", + "4.0 International License. To view a copy of this license, visit", + "http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to", + "Creative Commons, PO Box 1866, Mountain View, CA 94042, USA." + ], + "authors": [ + "0x9404", + "3xp0rt", + "alexisthereal", + "alvaromaltrain", + "arin17bishwa", + "AXRoux", + "balestek", + "Brenden2008", + "C3n7ral051nt4g3ncy", + "Contributions since 2023-12", + "degun-osint", + "End of interactive chart.", + "fres621", + "Its-Just-Nans", + "Itsoon", + "janhalendk", + "K2SOsint", + "maxk096", + "Micah Hoffman", + "ni5arga", + "p1ngul1n0", + "Paradoxxs", + "serdaraltin", + "SlopeSlayer910", + "SorkoPiko", + "TikvahTerminator" + ], + "categories": [ + "archived", + "art", + "blog", + "business", + "coding", + "dating", + "finance", + "gaming", + "health", + "hobby", + "images", + "misc", + "music", + "news", + "political", + "search", + "shopping", + "social", + "tech", + "video", + "xx NSFW xx" + ], + "sites": [ + { + "name": "21buttons", + "uri_check": "https://www.21buttons.com/buttoner/{account}", + "e_code": 200, + "e_string": "profile-info__profile-data__name", + "m_string": "This is not the page you're looking for", + "m_code": 404, + "known": ["patricialmendro", "ginamariahoffmann", "espeworkout"], + "cat": "social" + }, + { + "name": "247sports", + "uri_check": "https://247sports.com/User/{account}/", + "e_code": 200, + "e_string": "247Sports", + "m_code": 404, + "known": ["bob", "john"], + "cat": "hobby" + }, + { + "name": "35photo", + "uri_check": "https://35photo.pro/@{account}/", + "e_code": 200, + "e_string": "Ошибка / 7dach.ru", + "m_code": 404, + "known": ["lana", "svetlana"], + "cat": "social" + }, + { + "name": "about.me", + "uri_check": "https://about.me/{account}", + "e_code": 200, + "e_string": " | about.me", + "m_string": "about.me", + "m_code": 404, + "known": ["john", "jill"], + "cat": "social" + }, + { + "name": "ACF", + "uri_check": "https://support.advancedcustomfields.com/forums/users/{account}/", + "e_code": 200, + "e_string": "ACF Support", + "m_string": "Page Not Found", + "m_code": 200, + "known": ["mike", "greg"], + "cat": "coding" + }, + { + "name": "AdmireMe.VIP", + "uri_check": "https://admireme.vip/{account}/", + "e_code": 200, + "e_string": "creator-stat subscriber", + "m_string": "<title>Page Not Found |", + "m_code": 404, + "known": ["justjessicarabbit", "savannah250xo"], + "cat": "xx NSFW xx" + }, + { + "name": "Adult_Forum", + "uri_check": "https://adultforum.gr/{account}-glamour-escorts/", + "e_code": 200, + "e_string": "Glamour Escorts ", + "m_string": "Page not found - Adult Forum Gr", + "m_code": 404, + "known": ["nastya3", "ekaterina"], + "cat": "xx NSFW xx" + }, + { + "name": "adultism", + "uri_check": "https://www.adultism.com/profile/{account}", + "e_code": 200, + "e_string": "Last login:", + "m_string": "<title> Not Found", + "m_code": 404, + "known": ["laura", "sara"], + "cat": "xx NSFW xx" + }, + { + "name": "ADVFN", + "uri_check": "https://uk.advfn.com/forum/profile/{account}", + "e_code": 200, + "e_string": "Profile | ADVFN", + "m_string": "ADVFN ERROR - Page Not Found", + "m_code": 404, + "known": ["crypto", "crypto1"], + "cat": "finance" + }, + { + "name": "Airline_Pilot_Life", + "uri_check": "https://airlinepilot.life/u/{account}.json", + "e_code": 200, + "e_string": "primary_group_name", + "m_string": "he requested URL or resource could not be found.", + "m_code": 404, + "known": ["hannah", "addison"], + "cat": "social", + "uri_pretty": "https://airlinepilot.life/u/{account}" + }, + { + "name": "Airliners", + "uri_check": "https://www.airliners.net/user/{account}/profile", + "e_code": 200, + "e_string": "'s Profile | Airliners Members | Airliners.net", + "m_string": "An Error Occurred", + "m_code": 404, + "known": ["pilot", "pilota"], + "cat": "social" + }, + { + "name": "akniga", + "uri_check": "https://akniga.org/profile/{account}", + "e_code": 200, + "e_string": " - Аудиокниги Клуб</title", + "m_string": "К сожалению, такой страницы не существует. Вероятно, она была удалена с сервера, либо ее здесь никогда не было.", + "m_code": 200, + "known": ["bob", "blue"], + "cat": "hobby" + }, + { + "name": "Albicla", + "uri_check": "https://albicla.com/{account}/post/1", + "e_code": 500, + "e_string": "500 Post tymczasowo niedostępny", + "m_string": "404 Nie znaleziono użytkownika", + "m_code": 200, + "known": ["GazetaPolska", "GPCodziennie"], + "cat": "social", + "uri_pretty": "https://albicla.com/{account}" + }, + { + "name": "alik", + "uri_check": "https://www.alik.cz/u/{account}", + "e_code": 200, + "e_string": "Vizitka – Alík.cz", + "m_string": "Vizitka nenalezena", + "m_code": 404, + "known": ["igor", "pavel"], + "cat": "social" + }, + { + "name": "allmylinks", + "uri_check": "https://allmylinks.com/{account}", + "e_code": 200, + "e_string": "message", + "m_string": "Page not found", + "m_code": 404, + "known": ["blue", "goddessbecca"], + "cat": "social" + }, + { + "name": "Alura", + "uri_check": "https://cursos.alura.com.br/user/{account}", + "e_code": 200, + "e_string": "Perfil de", + "m_string": "\"error\":\"Not Found\"", + "m_code": 404, + "known": ["edmilson", "jonathan"], + "cat": "tech" + }, + { + "name": "Ameblo", + "uri_check": "https://ameblo.jp/{account}", + "e_code": 200, + "e_string": "画像一覧", + "m_string": "削除された可能性がございます。", + "m_code": 404, + "known": ["ereko-blog", "senpai"], + "cat": "blog" + }, + { + "name": "AmericanThinker", + "uri_check": "https://www.americanthinker.com/author/{account}/", + "e_code": 200, + "e_string": "Articles &", + "m_string": "American Thinker", + "m_code": 301, + "known": ["terrypaulding", "monicashowalter"], + "cat": "political" + }, + { + "name": "AniList", + "uri_check": "https://graphql.anilist.co", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "Not Found", + "m_code": 404, + "known": ["test", "johndoe"], + "cat": "social", + "uri_pretty": "https://anilist.co/user/{account}", + "post_body": "{\"query\":\"query{User(name:\\\"{account}\\\"){id name}}\"}", + "headers": { + "accept": "application/json", + "Content-Type": "application/json" + } + }, + { + "name": "Anime-Planet", + "uri_check": "https://www.anime-planet.com/api/validation/username", + "e_code": 400, + "e_string": "\"msg\":\"Username is unavailable\"", + "m_string": "\"status\":\"ok\"", + "m_code": 200, + "known": ["zala", "lindapearl"], + "cat": "social", + "uri_pretty": "https://www.anime-planet.com/users/{account}", + "post_body": "{\"username\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + }, + "protection": ["cloudflare"] + }, + { + "name": "anonup", + "uri_check": "https://anonup.com/@{account}", + "e_code": 200, + "e_string": "Show followings", + "m_string": "Page not found!", + "m_code": 302, + "known": ["john", "peter"], + "cat": "social" + }, + { + "name": "Aparat", + "uri_check": "https://www.aparat.com/api/fa/v1/user/user/information/username/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "class=\"error-body\"", + "m_code": 404, + "known": ["abolfazlxmaster", "siahkolah"], + "cat": "social", + "uri_pretty": "https://www.aparat.com/{account}" + }, + { + "name": "Apex Legends", + "uri_check": "https://api.tracker.gg/api/v2/apex/standard/profile/origin/{account}", + "e_code": 200, + "e_string": "platformInfo", + "m_string": "CollectorResultStatus::NotFound", + "m_code": 404, + "known": ["tttcheekyttt", "RollsRoyce_Dawn"], + "cat": "gaming", + "uri_pretty": "https://apex.tracker.gg/apex/profile/origin/{account}/overview", + "headers": { + "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", + "Accept-Language": "en-US,en;q=0.5", + "Origin": "https://apex.tracker.gg", + "Referer": "https://apex.tracker.gg/", + "TE": "trailers" + } + }, + { + "name": "Appian", + "uri_check": "https://community.appian.com/members/{account}", + "e_code": 200, + "e_string": "User Profile", + "m_string": "Go back to our", + "m_code": 301, + "known": ["mikec", "varunkumarb0001"], + "cat": "tech" + }, + { + "name": "Arch Linux GitLab", + "uri_check": "https://gitlab.archlinux.org/api/v4/users?username={account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "[]", + "m_code": 200, + "known": ["morganamilo", "nl6720"], + "cat": "social", + "uri_pretty": "https://gitlab.archlinux.org/{account}" + }, + { + "name": "Archive Of Our Own Account", + "uri_check": "https://archiveofourown.org/users/{account}", + "e_code": 200, + "e_string": "class=\"user home\"", + "m_string": "class=\"system errors error-404 region\"", + "m_code": 404, + "known": ["test", "john"], + "cat": "hobby" + }, + { + "name": "ArchWiki", + "uri_check": "https://wiki.archlinux.org/api.php?action=query&format=json&list=users&ususers={account}&usprop=cancreate&formatversion=2&errorformat=html&errorsuselocal=true&uselang=en", + "e_code": 200, + "e_string": "\"userid\":", + "m_string": "\"missing\":true", + "m_code": 200, + "known": ["Lahwaacz", "Erus_Iluvatar"], + "cat": "social", + "uri_pretty": "https://wiki.archlinux.org/title/User:{account}" + }, + { + "name": "Arduino", + "uri_check": "https://projecthub.arduino.cc/{account}", + "e_code": 200, + "e_string": "| Arduino Project Hub", + "m_string": "Arduino Project Hub", + "m_code": 404, + "known": ["peter", "john"], + "cat": "tech" + }, + { + "name": "ArmorGames", + "uri_check": "https://armorgames.com/user/{account}", + "e_code": 200, + "e_string": "about", + "m_string": "404: Oh Noes!", + "m_code": 302, + "known": ["john", "sammy"], + "cat": "gaming" + }, + { + "name": "ArtBreeder", + "uri_check": "https://www.artbreeder.com/{account}", + "e_code": 200, + "e_string": "", + "m_string": "Not found:", + "m_code": 404, + "known": ["dolores", "cyborghyena"], + "cat": "art" + }, + { + "name": "Artists & Clients", + "uri_check": "https://artistsnclients.com/people/{account}", + "e_code": 200, + "e_string": "Member Since", + "m_string": "The page you requested wasn't there when we tried to get it for you. What a bother!", + "m_code": 404, + "known": ["luluc0", "MuraArts"], + "cat": "art" + }, + { + "name": "ArtStation", + "uri_check": "https://www.artstation.com/{account}", + "e_code": 200, + "e_string": "Portfolio", + "m_string": "Page not found", + "m_code": 404, + "known": ["kongaxl_design", "alex_pi"], + "cat": "art" + }, + { + "name": "asciinema", + "uri_check": "https://asciinema.org/~{account}", + "e_code": 200, + "e_string": "class=\"profile-page\"", + "m_string": "<h1>404 Not Found</h1>", + "m_code": 404, + "known": ["john", "red"], + "cat": "coding" + }, + { + "name": "AtCoder", + "uri_check": "https://atcoder.jp/users/{account}", + "e_code": 200, + "e_string": "<h3>Contest Status</h3>", + "m_string": ">404 Page Not Found</h1>", + "m_code": 404, + "known": ["apiad", "kotatsugame"], + "cat": "coding" + }, + { + "name": "au.ru", + "uri_check": "https://au.ru/user/{account}/", + "e_code": 200, + "e_string": "Лоты пользователя ", + "m_string": "Пользователь не найден", + "m_code": 404, + "known": ["Svetlana7", "nastya"], + "cat": "misc" + }, + { + "name": "Audiojungle", + "uri_check": "https://audiojungle.net/user/{account}", + "e_code": 200, + "e_string": "s profile on AudioJungle", + "m_string": "404 - Nothing to see here", + "m_code": 404, + "known": ["john", "reds"], + "cat": "music" + }, + { + "name": "Avid Community", + "uri_check": "https://community.avid.com/members/{account}/default.aspx", + "e_code": 200, + "e_string": "My Activity", + "m_string": "The user you requested cannot be found.", + "m_code": 302, + "known": ["Thayne", "Admin"], + "cat": "music", + "headers": { + "Host": "community.avid.com", + "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8", + "Cache-Control": "no-cache" + } + }, + { + "name": "babepedia", + "uri_check": "https://www.babepedia.com/user/{account}", + "e_code": 200, + "e_string": "'s Page", + "m_string": "Profile not found", + "m_code": 404, + "known": ["cherry", "betty"], + "cat": "xx NSFW xx" + }, + { + "name": "BabyPips", + "uri_check": "https://forums.babypips.com/u/{account}.json", + "e_code": 200, + "e_string": "user_badges", + "m_string": "The requested URL or resource could not be found", + "m_code": 404, + "known": ["baemax023", "scottycarsonmvp"], + "cat": "social", + "uri_pretty": "https://forums.babypips.com/u/{account}/summary" + }, + { + "name": "Bandcamp", + "uri_check": "https://bandcamp.com/{account}", + "e_code": 200, + "e_string": " collection | Bandcamp", + "m_string": "

Sorry, that something isn’t here.

", + "m_code": 404, + "known": ["alice", "bob"], + "cat": "music" + }, + { + "name": "Bandlab", + "uri_check": "https://www.bandlab.com/api/v1.3/users/{account}", + "e_code": 200, + "e_string": "about", + "m_string": "Couldn't find any matching element, it might be deleted", + "m_code": 404, + "known": ["rave_flawless", "delutaya"], + "cat": "music", + "uri_pretty": "https://www.bandlab.com/{account}" + }, + { + "name": "bblog_ru", + "uri_check": "https://www.babyblog.ru/user/{account}", + "e_code": 200, + "e_string": ") — дневник на Babyblog.ru", + "m_string": "БэбиБлог - беременность, календарь беременности, дневники", + "m_code": 200, + "known": ["joyfitnessdance1", "bobkokatya94"], + "cat": "misc" + }, + { + "name": "BDSMLR", + "uri_check": "https://{account}.bdsmlr.com", + "e_code": 200, + "e_string": "login", + "m_string": "This blog doesn't exist.", + "m_code": 200, + "known": ["themunch", "shibari4all"], + "cat": "xx NSFW xx", + "strip_bad_char": "." + }, + { + "name": "bdsmsingles", + "uri_check": "https://www.bdsmsingles.com/members/{account}/", + "e_code": 200, + "e_string": "Profile", + "m_string": "BDSM Singles", + "m_code": 302, + "known": ["GoddessBlueDiamo", "aalama"], + "cat": "xx NSFW xx" + }, + { + "name": "Beacons", + "uri_check": "https://beacons.ai/{account}", + "e_code": 200, + "e_string": " - Link in Bio & Creator Tools | Beacons", + "m_string": "The page you are looking for does not seem to exist anymore", + "m_code": 200, + "known": ["rafaballerini", "lexaloco", "jardred"], + "cat": "social", + "protection": ["cloudflare"] + }, + { + "name": "Bentbox", + "uri_check": "https://bentbox.co/{account}", + "e_code": 200, + "e_string": "
", + "m_string": "This user is currently not available", + "m_code": 200, + "known": ["brockdoom", "witchhouse", "hotoptics"], + "cat": "xx NSFW xx" + }, + { + "name": "Bento", + "uri_check": "https://bento.me/{account}", + "e_code": 200, + "e_string": "href=\"https://bento.me/explore\"", + "m_string": ">Available!
", + "m_code": 404, + "known": ["carlito", "taylor"], + "cat": "social" + }, + { + "name": "BiggerPockets", + "uri_check": "https://www.biggerpockets.com/users/{account}", + "e_code": 200, + "e_string": "| BiggerPockets", + "m_string": "Page not found", + "m_code": 404, + "known": ["trustgreene", "chasel9"], + "cat": "finance" + }, + { + "name": "BIGO Live", + "uri_check": "https://www.bigo.tv/user/{account}", + "e_code": 200, + "e_string": "userInfo:{nickName", + "m_string": "userInfo:{}", + "m_code": 200, + "known": ["treasdior", "Jacin19"], + "cat": "gaming" + }, + { + "name": "Bikemap", + "uri_check": "https://www.bikemap.net/en/u/{account}/routes/created/", + "e_code": 200, + "e_string": "- 🚲 Bikemap", + "m_string": "Page not found - Error 404 ", + "m_code": 404, + "known": ["mike", "greg"], + "cat": "health" + }, + { + "name": "Bimpos", + "uri_check": "https://ask.bimpos.com/user/{account}", + "e_code": 200, + "e_string": "<title>User ", + "m_string": "Page not found", + "m_code": 404, + "known": ["john", "db"], + "cat": "tech" + }, + { + "name": "Bio Sites", + "uri_check": "https://bio.site/{account}", + "e_code": 200, + "e_string": "section\":{\"handles", + "m_string": "This site no longer exists", + "m_code": 404, + "known": ["leticiabufoni", "kayurkaRhea"], + "cat": "social" + }, + { + "name": "biolink", + "uri_check": "https://bio.link/{account}", + "e_code": 200, + "e_string": "profile:username", + "m_string": "The page you’re looking for doesn’t exist", + "m_code": 404, + "known": ["adli_hm", "jake"], + "cat": "misc" + }, + { + "name": "Bitbucket", + "uri_check": "https://bitbucket.org/!api/2.0/repositories/{account}?page=1&pagelen=25&sort=-updated_on&q=&fields=-values.owner%2C-values.workspace", + "e_code": 200, + "e_string": "full_name", + "m_string": "No workspace with identifier", + "m_code": 404, + "known": ["LaNMaSteR53", "osamahalisawi"], + "cat": "coding", + "uri_pretty": "https://bitbucket.org/{account}/workspace/repositories/" + }, + { + "name": "Bitchute", + "uri_check": "https://api.bitchute.com/api/beta/channel", + "e_code": 200, + "e_string": "\"channel_id\":", + "m_string": "\"errors\":", + "m_code": 404, + "known": ["simon_parkes", "americafloats", "daindor"], + "cat": "political", + "uri_pretty": "https://www.bitchute.com/channel/{account}/", + "post_body": "{\"channel_id\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "Blogger", + "uri_check": "https://www.blogger.com/profile/{account}", + "e_code": 200, + "e_string": "shadow-light user-stats", + "m_string": "Sorry, the blog you were looking for does not exist.", + "m_code": 405, + "known": ["07333944864481878697", "05941544278367416980"], + "cat": "blog" + }, + { + "name": "blogi.pl", + "uri_check": "https://www.blogi.pl/osoba,{account}.html", + "e_code": 200, + "e_string": "Informacje ogólne", + "m_string": "Niepoprawny adres.", + "m_code": 200, + "known": ["naukowa", "izkpaw"], + "cat": "blog" + }, + { + "name": "Blogmarks", + "uri_check": "http://blogmarks.net/user/{account}", + "e_code": 200, + "e_string": "class=\"mark\"", + "m_string": "", + "m_code": 200, + "known": ["test", "mike"], + "cat": "misc" + }, + { + "name": "Blogspot", + "uri_check": "http://{account}.blogspot.com", + "e_code": 200, + "e_string": "Blogger Template Style", + "m_string": "Blog not found", + "m_code": 404, + "known": ["test"], + "cat": "blog", + "strip_bad_char": "." + }, + { + "name": "Bluesky 1", + "uri_check": "https://bsky.app/profile/{account}", + "e_code": 200, + "e_string": "on Bluesky", + "m_string": "<p id=\"bsky_did\"></p>", + "m_code": 200, + "known": ["bsky.app", "safety.bsky.app"], + "cat": "social" + }, + { + "name": "Bluesky 2", + "uri_check": "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor={account}.bsky.social", + "e_code": 200, + "e_string": "\"handle\":\"", + "m_string": "\"message\":\"Profile not found\"", + "m_code": 400, + "known": ["john", "mark"], + "cat": "social", + "uri_pretty": "https://bsky.app/profile/{account}.bsky.social" + }, + { + "name": "BoardGameGeek", + "uri_check": "https://api.geekdo.com/api/accounts/validate/username?username={account}", + "e_code": 200, + "e_string": "\"message\":\"Sorry, this username is already taken.\"", + "m_string": "\"isValid\":true", + "m_code": 200, + "known": ["ntrautner", "Petdoc"], + "cat": "gaming", + "uri_pretty": "https://boardgamegeek.com/user/{account}" + }, + { + "name": "BodyBuilding.com", + "uri_check": "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", + "e_code": 200, + "e_string": "username", + "m_string": "data\" :\"\"", + "m_code": 200, + "known": ["mike"], + "cat": "health", + "uri_pretty": "http://bodyspace.bodybuilding.com/{account}/" + }, + { + "name": "bonga_cams", + "uri_check": "https://pt.bongacams.com/{account}", + "e_code": 200, + "e_string": "Chat público ao vivo de", + "m_string": "Câmaras de sexo free: chat pornô ao vivo", + "m_code": 404, + "known": ["prettykatea", "milaowens"], + "cat": "xx NSFW xx" + }, + { + "name": "Bookcrossing", + "uri_check": "https://www.bookcrossing.com/mybookshelf/{account}", + "e_code": 200, + "e_string": "Recent Book Activity", + "m_string": "Sorry, we were unable to locate the content that you requested.", + "m_code": 404, + "known": ["john", "bob"], + "cat": "hobby" + }, + { + "name": "Booknode", + "uri_check": "https://booknode.com/profil/{account}", + "e_code": 200, + "e_string": "<title>Profil de", + "m_string": "<title>Page non trouvée", + "m_code": 404, + "known": ["Paraffine", "chanoa"], + "cat": "hobby" + }, + { + "name": "boosty", + "uri_check": "https://boosty.to/{account}", + "e_code": 200, + "e_string": "- exclusive content on Boosty", + "m_string": "Blog not found", + "m_code": 200, + "known": ["evdokia", "lana"], + "cat": "social" + }, + { + "name": "Booth", + "uri_check": "https://{account}.booth.pm/", + "e_code": 200, + "e_string": "- BOOTH", + "m_string": "BOOTH - The International Indie Art Marketplace", + "m_code": 302, + "known": ["monoliorder", "hasya"], + "cat": "shopping", + "strip_bad_char": "." + }, + { + "name": "Brickset", + "uri_check": "https://brickset.com/profile/{account}", + "e_code": 200, + "e_string": "Member since:", + "m_string": "{name}

", + "m_code": 200, + "known": ["lowlead", "vwong19"], + "cat": "hobby" + }, + { + "name": "BugCrowd", + "uri_check": "https://bugcrowd.com/{account}/profile_widgets", + "e_code": 200, + "e_string": "\"widgets\":", + "m_string": "class='cc-error-page__msg'", + "m_code": 404, + "known": ["lopseg", "Ebrietas"], + "cat": "tech", + "uri_pretty": "https://bugcrowd.com/{account}" + }, + { + "name": "Bunpro", + "uri_check": "https://community.bunpro.jp/u/{account}.json", + "e_code": 200, + "e_string": "username", + "m_string": "The requested URL or resource could not be found.", + "m_code": 404, + "known": ["blacktide", "honey"], + "cat": "social" + }, + { + "name": "Buy Me a Coffee", + "uri_check": "https://app.buymeacoffee.com/api/v1/check_availability", + "e_code": 200, + "e_string": "\"available\":false", + "m_string": "\"available\":true", + "m_code": 200, + "known": ["freebird", "robinwong"], + "cat": "finance", + "uri_pretty": "https://buymeacoffee.com/{account}", + "post_body": "{\"project_slug\":\"{account}\"}", + "protection": ["cloudflare"], + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "BuzzFeed", + "uri_check": "https://www.buzzfeed.com/{account}", + "e_code": 200, + "e_string": " on BuzzFeed", + "m_string": "Es posible que el enlace que seleccionaste esté roto o que se haya eliminado la página", + "m_code": 404, + "known": ["braftty", "guillermo"], + "cat": "misc" + }, + { + "name": "Calendy", + "uri_check": "https://calendly.com/{account}", + "e_code": 200, + "e_string": "og:author", + "m_string": "Sorry, but the page you were looking for could not be found.", + "m_code": 404, + "known": ["honey", "roger"], + "cat": "misc" + }, + { + "name": "Cameo", + "uri_check": "https://www.cameo.com/{account}", + "e_code": 200, + "e_string": "aggregateRating", + "m_string": "", + "m_code": 301, + "known": ["michael_owen10", "sarahall3"], + "cat": "shopping" + }, + { + "name": "Carbonmade", + "uri_check": "https://{account}.carbonmade.com/", + "e_code": 200, + "e_string": "s online portfolio", + "m_string": "site not found", + "m_code": 404, + "known": ["jenny", "bob"], + "cat": "hobby", + "strip_bad_char": "." + }, + { + "name": "Career.habr", + "uri_check": "https://career.habr.com/{account}", + "e_code": 200, + "e_string": "— Хабр Карьера", + "m_string": "Ошибка 404", + "m_code": 404, + "known": ["alex", "bob"], + "cat": "business" + }, + { + "name": "carrd.co", + "uri_check": "https://{account}.carrd.co", + "e_code": 200, + "e_string": "( Made with Carrd )", + "m_string": "Sorry, the requested page could not be found.", + "m_code": 404, + "known": ["liam", "peter"], + "cat": "business", + "strip_bad_char": "." + }, + { + "name": "CastingCallClub", + "uri_check": "https://www.castingcall.club/{account}", + "e_code": 200, + "e_string": "| Casting Call Club", + "m_string": "404: This is not the page you were looking for. In the future, our AI robot overlords will be able to better predict exactly what you were looking for.", + "m_code": 302, + "known": ["Lindz", "Danye"], + "cat": "hobby" + }, + { + "name": "CD-Action", + "uri_check": "https://cdaction.pl/uzytkownicy/{account}", + "e_code": 200, + "e_string": "Lista gier:", + "m_string": "Coś się popsuło...", + "m_code": 404, + "known": ["saczuan", "cormac"], + "cat": "gaming" + }, + { + "name": "cda.pl", + "uri_check": "https://www.cda.pl/{account}", + "e_code": 200, + "e_string": "Foldery", + "m_string": "Strona na którą chcesz wejść nie istnieje", + "m_code": 200, + "known": ["test2", "janek"], + "cat": "video" + }, + { + "name": "Cent", + "uri_check": "https://beta.cent.co/data/user/profile?userHandles={account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"results\":[]", + "m_code": 200, + "known": ["alex", "ben"], + "cat": "social", + "uri_pretty": "https://beta.cent.co/{account}/" + }, + { + "name": "cfx.re", + "uri_check": "https://forum.cfx.re/u/{account}.json", + "e_code": 200, + "e_string": "created_at", + "m_string": "The requested URL or resource could not be found.", + "m_code": 404, + "known": ["masiball", "anel_hadzyc", "kiminaze"], + "cat": "gaming", + "uri_pretty": "https://forum.cfx.re/u/{account}/summary" + }, + { + "name": "championat", + "uri_check": "https://www.championat.com/user/{account}/", + "e_code": 200, + "e_string": "Личный профил", + "m_string": "Извините, запрашиваемая страница не найдена", + "m_code": 404, + "known": ["john", "bob"], + "cat": "news" + }, + { + "name": "Chamsko", + "uri_check": "https://www.chamsko.pl/profil/{account}", + "e_code": 200, + "e_string": "W serwisie od", + "m_string": "Strona nie istnieje.", + "m_code": 404, + "known": ["test", "janek"], + "cat": "images" + }, + { + "name": "chatango.com", + "uri_check": "https://{account}.chatango.com", + "e_code": 200, + "e_string": "Chatango!", + "m_string": "<title>Unknown User!", + "m_code": 200, + "known": ["7nights", "merbailey", "steakomura", "equicentric"], + "cat": "social" + }, + { + "name": "chaturbate", + "uri_check": "https://chaturbate.com/{account}/", + "e_code": 200, + "e_string": "'s Bio and Free Webcam", + "m_string": "It's probably just a broken link", + "m_code": 404, + "known": ["pussylovekate", "kemii"], + "cat": "xx NSFW xx" + }, + { + "name": "cHEEZburger", + "uri_check": "https://profile.cheezburger.com/{account}", + "e_code": 200, + "e_string": "profile-header", + "m_string": "<title>Home - ", + "m_code": 302, + "known": ["john"], + "cat": "hobby" + }, + { + "name": "Chess.com", + "uri_check": "https://api.chess.com/pub/player/{account}", + "e_code": 200, + "e_string": "player_id", + "m_string": "not found", + "m_code": 404, + "known": ["john", "peter", "josh"], + "cat": "gaming", + "uri_pretty": "https://www.chess.com/member/{account}" + }, + { + "name": "Chomikuj.pl", + "uri_check": "https://chomikuj.pl/{account}/", + "e_code": 200, + "e_string": "Foldery", + "m_string": "Chomik o takiej nazwie nie istnieje", + "m_code": 404, + "known": ["test", "test2"], + "cat": "misc" + }, + { + "name": "Chyoa", + "uri_check": "https://chyoa.com/user/{account}", + "e_code": 200, + "e_string": "When I'm not reading erotica I like to read", + "m_string": "Sorry, I got distracted...", + "m_code": 404, + "known": ["joe", "carlos01"], + "cat": "xx NSFW xx" + }, + { + "name": "Cloudflare", + "uri_check": "https://community.cloudflare.com/u/{account}/card.json", + "e_code": 200, + "e_string": "user_avatar", + "m_string": "The requested URL or resource could not be found", + "m_code": 404, + "known": ["carl", "morten"], + "cat": "tech", + "uri_pretty": "https://community.cloudflare.com/u/{account}" + }, + { + "name": "Clubhouse", + "uri_check": "https://www.clubhouse.com/@{account}", + "e_code": 200, + "e_string": "\"user\":", + "m_string": "404", + "m_code": 404, + "known": ["kirbyplessas", "rohan"], + "cat": "social" + }, + { + "name": "cnet", + "uri_check": "https://www.cnet.com/profiles/{account}/", + "e_code": 200, + "e_string": "Member Since:", + "m_string": "Page Not Found (404) - CNET", + "m_code": 301, + "known": ["john", "bob"], + "cat": "news" + }, + { + "name": "Coda", + "uri_check": "https://coda.io/@{account}/", + "e_code": 200, + "e_string": "- Coda Profile", + "m_string": "Coda | Page not found - Coda", + "m_code": 404, + "known": ["huizer", "kennywong"], + "cat": "hobby" + }, + { + "name": "Code Project", + "uri_check": "https://www.codeproject.com/Members/{account}", + "e_code": 200, + "e_string": "Member since", + "m_string": "Unable to load the requested member's information", + "m_code": 200, + "known": ["WmCraig", "Rick-York"], + "cat": "coding" + }, + { + "name": "Codeberg", + "uri_check": "https://codeberg.org/{account}", + "e_code": 200, + "e_string": "Joined on", + "m_string": "The page you are trying to reach either", + "m_code": 404, + "known": ["dachary", "happy"], + "cat": "coding" + }, + { + "name": "Codecademy", + "uri_check": "https://discuss.codecademy.com/u/{account}/summary", + "e_code": 200, + "e_string": " Profile - ", + "m_string": "Oops! That page doesn’t exist", + "m_code": 404, + "known": ["doctypeme", "ocean.war"], + "cat": "coding" + }, + { + "name": "CodeChef", + "uri_check": "https://www.codechef.com/users/{account}", + "e_code": 200, + "e_string": "class=\"user-profile-container\"", + "m_string": "", + "m_code": 302, + "known": ["maroonrk", "lyrically"], + "cat": "coding" + }, + { + "name": "Codeforces", + "uri_check": "https://codeforces.com/api/user.info?handles={account}", + "e_code": 200, + "e_string": "\"status\":\"OK\"", + "m_string": "\"status\":\"FAILED\"", + "m_code": 400, + "known": ["Abdul01", "Abdullah"], + "cat": "coding", + "uri_pretty": "https://codeforces.com/profile/{account}" + }, + { + "name": "codementor", + "uri_check": "https://www.codementor.io/@{account}", + "e_code": 200, + "e_string": "ABOUT ME", + "m_string": "404/favicon.png", + "m_code": 404, + "known": ["e4c5", "juanelfers"], + "cat": "coding" + }, + { + "name": "Coderwall", + "uri_check": "https://coderwall.com/{account}/", + "e_code": 200, + "e_string": "s profile |", + "m_string": "404! Our feels when that url is used", + "m_code": 404, + "known": ["john", "test"], + "cat": "coding" + }, + { + "name": "Codewars", + "uri_check": "https://www.codewars.com/users/{account}", + "e_code": 200, + "e_string": "| Codewars", + "m_string": "Whoops! The page you were looking for doesn't seem to exist.", + "m_code": 404, + "known": ["john", "reds"], + "cat": "coding" + }, + { + "name": "COLOURlovers", + "uri_check": "https://www.colourlovers.com/lover/{account}", + "e_code": 200, + "e_string": "Color lovin' since", + "m_string": "Lover has gone missing", + "m_code": 410, + "known": ["amorremanet", "bezzalopoly"], + "cat": "hobby" + }, + { + "name": "Community Adobe", + "uri_check": "https://community.adobe.com/t5/forums/searchpage/tab/user?q={account}", + "e_code": 200, + "e_string": "UserSearchItemContainer", + "m_string": "No search results found.", + "m_code": 200, + "known": ["test", "janet"], + "cat": "tech" + }, + { + "name": "contactos.sex", + "uri_check": "https://www.contactossex.com/profile/{account}", + "e_code": 200, + "e_string": "Información Personal", + "m_string": "Desde 2001 conectando gente!", + "m_code": 302, + "known": ["danijak", "darkfox"], + "cat": "xx NSFW xx" + }, + { + "name": "coroflot", + "uri_check": "https://www.coroflot.com/{account}", + "e_code": 200, + "e_string": "portfolio", + "m_string": "Looking for something?", + "m_code": 404, + "known": ["john", "blue"], + "cat": "art" + }, + { + "name": "Coub", + "uri_check": "https://coub.com/api/v2/channels/{account}", + "e_code": 200, + "e_string": "\"user_id\":", + "m_string": "\"error\":\"Unhandled exception\"", + "m_code": 404, + "known": ["djantidog", "mcnorington"], + "cat": "social", + "uri_pretty": "https://coub.com/{account}/" + }, + { + "name": "Coub", + "uri_check": "https://coub.com/{account}", + "e_code": 200, + "e_string": "- Channel on Coub", + "m_string": "Sorry, that page doesn't exist.", + "m_code": 404, + "known": ["dmitry.kozhevnikov", "idesignking"], + "cat": "misc", + "headers": { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" + } + }, + { + "name": "cowboys4angels", + "uri_check": "https://cowboys4angels.com/cowboy/{account}/", + "e_code": 200, + "e_string": " - Cowboys 4 Angels", + "m_string": "Error Page not found", + "m_code": 404, + "known": ["jaxjames", "jordan-2"], + "cat": "xx NSFW xx" + }, + { + "name": "Cracked", + "uri_check": "https://www.cracked.com/members/{account}", + "e_code": 200, + "e_string": "Member Since", + "m_string": "", + "m_code": 302, + "known": ["mbattagl", "Hatchback"], + "cat": "social" + }, + { + "name": "cracked_io", + "uri_check": "https://cracked.io/{account}", + "e_code": 200, + "e_string": "Cracked.io - Profile of", + "m_string": "The member you specified is either invalid or doesn't exist", + "m_code": 404, + "known": ["RealPsycho", "SamWinchester"], + "cat": "social" + }, + { + "name": "crevado", + "uri_check": "https://{account}.crevado.com/", + "e_code": 200, + "e_string": "Portfolio", + "m_string": "Site not found :-(", + "m_code": 404, + "known": ["john", "red"], + "cat": "images", + "strip_bad_char": "." + }, + { + "name": "Crowdin", + "uri_check": "https://crowdin.com/profile/{account}", + "e_code": 200, + "e_string": "id=\"profile-page\"", + "m_string": "class=\"error-page\"", + "m_code": 404, + "known": ["erga", "peter"], + "cat": "hobby" + }, + { + "name": "Cults3D", + "uri_check": "https://cults3d.com/en/users/{account}/creations", + "e_code": 200, + "e_string": "All the 3D models of", + "m_string": "Oh dear, this page is not working!", + "m_code": 404, + "known": ["Bstar3Dart", "john"], + "cat": "hobby" + }, + { + "name": "Cytoid", + "uri_check": "https://cytoid.io/profile/{account}", + "e_code": 200, + "e_string": "Joined", + "m_string": "Profile not found", + "m_code": 404, + "known": ["nyala", "speedymlg7"], + "cat": "gaming" + }, + { + "name": "Daily Kos", + "uri_check": "https://www.dailykos.com/user/{account}", + "e_code": 200, + "e_string": "id=\"userData\"", + "m_string": "Page not found! (404)", + "m_code": 404, + "known": ["msouza", "kos"], + "cat": "news" + }, + { + "name": "darudar", + "uri_check": "https://darudar.org/users/{account}/", + "e_code": 200, + "e_string": ". Дарудар", + "m_string": "404. Дару~дар: миру~мир!", + "m_code": 404, + "known": ["svetlana7", "igor"], + "cat": "misc" + }, + { + "name": "dateinasia", + "uri_check": "https://www.dateinasia.com/{account}", + "e_code": 200, + "e_string": "About me", + "m_string": "The page you are looking for does not exist", + "m_code": 404, + "known": ["shime", "janeferater"], + "cat": "dating" + }, + { + "name": "datezone", + "uri_check": "https://www.datezone.com/users/{account}/", + "e_code": 200, + "e_string": "profile_status", + "m_string": "404: page not found", + "m_code": 200, + "known": ["maniektwist", "carllos"], + "cat": "xx NSFW xx" + }, + { + "name": "Dating.ru", + "uri_check": "https://dating.ru/{account}/", + "e_code": 200, + "e_string": "| dating.ru", + "m_string": "Такой страницы не существует.", + "m_code": 404, + "known": ["john", "blue"], + "cat": "dating" + }, + { + "name": "Demotywatory", + "uri_check": "https://demotywatory.pl/user/{account}", + "e_code": 200, + "e_string": "Z nami od:", + "m_string": "Użytkownik o podanym pseudonimie nie istnieje.", + "m_code": 200, + "known": ["test", "test2"], + "cat": "images" + }, + { + "name": "depop", + "uri_check": "https://www.depop.com/{account}/", + "e_code": 200, + "e_string": "s Shop - Depop", + "m_string": "Sorry, that page doesn't exist", + "m_code": 404, + "known": ["sara", "susan"], + "cat": "shopping" + }, + { + "name": "Designspriation", + "uri_check": "https://www.designspiration.com/{account}/", + "e_code": 200, + "e_string": "has discovered on Designspiration", + "m_string": "Content Not Found", + "m_code": 404, + "known": ["sam", "smith"], + "cat": "art" + }, + { + "name": "destream", + "uri_check": "https://api.destream.net/siteapi/v2/live/details/{account}", + "e_code": 200, + "e_string": "\"userName\":", + "m_string": "\"errorMessage\":\"Error happened.\"", + "m_code": 400, + "known": ["skromnuy_fifa", "wudjer"], + "cat": "finance", + "uri_pretty": "https://destream.net/live/{account}" + }, + { + "name": "Destructoid", + "uri_check": "https://www.destructoid.com/?name={account}", + "e_code": 200, + "e_string": "Follow", + "m_string": "Error in query", + "m_code": 200, + "known": ["john", "alice", "bob"], + "cat": "social" + }, + { + "name": "dev.to", + "uri_check": "https://dev.to/{account}", + "e_code": 200, + "e_string": "\"@id\":", + "m_string": "class=\"not-found-page base-background-color\"", + "m_code": 404, + "known": ["john", "bob"], + "cat": "coding", + "protection": ["other"] + }, + { + "name": "DeviantArt", + "uri_check": "https://www.deviantart.com/{account}", + "e_code": 200, + "e_string": " | DeviantArt", + "m_string": "DeviantArt: 404", + "m_code": 404, + "known": ["rattybike", "john"], + "cat": "images" + }, + { + "name": "devRant", + "uri_check": "https://devrant.com/users/{account}", + "e_code": 200, + "e_string": "Joined devRant on", + "m_string": "", + "m_code": 302, + "known": ["dfox", "trogus"], + "cat": "coding" + }, + { + "name": "dfgames", + "uri_check": "https://www.dfgames.com.br/user/{account}", + "e_code": 200, + "e_string": "Reputa", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["carlos01", "eduardo"], + "cat": "gaming" + }, + { + "name": "Diablo", + "uri_check": "https://diablo2.io/member/{account}/", + "e_code": 200, + "e_string": "Viewing profile - ", + "m_string": "The requested user does not exist", + "m_code": 404, + "known": ["Mike01", "John"], + "cat": "gaming" + }, + { + "name": "DIBIZ", + "uri_check": "https://www.dibiz.com/{account}", + "e_code": 200, + "e_string": "Add to contacts", + "m_string": "An Error Has Occurred", + "m_code": 404, + "known": ["fractalhue", "rid"], + "cat": "business" + }, + { + "name": "Digitalspy", + "uri_check": "https://forums.digitalspy.com/profile/discussions/{account}", + "e_code": 200, + "e_string": "About", + "m_string": "User not found", + "m_code": 404, + "known": ["JeffG1", "Maxatoria"], + "cat": "social" + }, + { + "name": "diigo", + "uri_check": "https://www.diigo.com/interact_api/load_profile_info?name={account}", + "e_code": 200, + "e_string": "regist_at", + "m_string": "{}", + "m_code": 200, + "known": ["whoami", "johndoe"], + "cat": "images", + "uri_pretty": "https://www.diigo.com/profile/{account}" + }, + { + "name": "Discogs", + "uri_check": "https://api.discogs.com/users/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"message\": \"User does not exist or may have been deleted.\"", + "m_code": 404, + "known": ["damiano84", "bernadette69"], + "cat": "music", + "uri_pretty": "https://www.discogs.com/user/{account}" + }, + { + "name": "Discord Invites", + "uri_check": "https://discord.com/api/v9/invites/{account}?with_counts=true&with_expiration=true", + "e_code": 200, + "e_string": "\"channel\":", + "m_string": "\"message\": \"Unknown Invite\"", + "m_code": 404, + "known": ["test", "web"], + "cat": "social", + "uri_pretty": "https://discord.com/invite/{account}" + }, + { + "name": "Discord Users", + "uri_check": "https://discord.com/api/v9/unique-username/username-attempt-unauthed", + "e_code": 200, + "e_string": "\"taken\":true", + "m_string": "\"taken\":false", + "m_code": 200, + "known": ["test", "web"], + "cat": "social", + "post_body": "{\"username\": \"{account}\"}", + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "Discourse", + "uri_check": "https://meta.discourse.org/u/{account}/summary.json", + "e_code": 200, + "e_string": "topics", + "m_string": "The requested URL or resource could not be found.", + "m_code": 404, + "known": ["ndalliard", "gerhard"], + "cat": "misc", + "uri_pretty": "https://meta.discourse.org/u/{account}" + }, + { + "name": "discuss.elastic.co", + "uri_check": "https://discuss.elastic.co/u/{account}", + "e_code": 200, + "e_string": " Profile", + "m_string": "Oops!", + "m_code": 404, + "known": ["whoami", "johndoe"], + "cat": "tech" + }, + { + "name": "Disqus", + "uri_check": "https://disqus.com/api/3.0/users/details?user=username:{account}&api_key=E8Uh5l5fHZ6gD8U3KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F", + "e_code": 200, + "e_string": "\"code\":0", + "m_string": "\"code\":2", + "m_code": 400, + "known": ["Aristotelian1", "50calibercat"], + "cat": "social", + "uri_pretty": "https://disqus.com/by/{account}/" + }, + { + "name": "Dissenter", + "uri_check": "https://dissenter.com/user/{account}", + "e_code": 200, + "e_string": "Dissenter | The Comment Section of the Internet", + "m_string": "That user is not registered here.", + "m_code": 404, + "known": ["pryerlee", "archdukeofevil"], + "cat": "political" + }, + { + "name": "Docker Hub Organizations", + "uri_check": "https://hub.docker.com/v2/orgs/{account}/", + "e_code": 200, + "e_string": "\"uuid\":", + "m_string": "\"orgname\":[\"", + "m_code": 404, + "known": ["bitnami", "tensorflow"], + "cat": "coding", + "uri_pretty": "https://hub.docker.com/u/{account}" + }, + { + "name": "Docker Hub Users", + "uri_check": "https://hub.docker.com/v2/users/{account}/", + "e_code": 200, + "e_string": "\"uuid\":", + "m_string": "\"message\":\"User not found\"", + "m_code": 404, + "known": ["dannapierskitoptal", "torvalds"], + "cat": "coding", + "uri_pretty": "https://hub.docker.com/u/{account}" + }, + { + "name": "Dojoverse", + "uri_check": "https://dojoverse.com/members/{account}/", + "e_code": 200, + "e_string": "Joined", + "m_string": "Looks like you got lost!.", + "m_code": 404, + "known": ["eric", "danielrivera10927"], + "cat": "hobby" + }, + { + "name": "donate.stream", + "uri_check": "https://donate.stream/api/v1/streamer.get?path={account}&app=9f4e793cec820015d511dbc77b20c5c1", + "e_code": 200, + "e_string": "\"response\":", + "m_string": "\"message\":\"Not found\"", + "m_code": 200, + "known": ["requiemzxc_komaru", "hexttr"], + "cat": "finance", + "uri_pretty": "https://donate.stream/{account}", + "protection": ["cloudflare"] + }, + { + "name": "Donation Alerts", + "uri_check": "https://www.donationalerts.com/api/v1/user/{account}/donationpagesettings", + "e_code": 200, + "e_string": "\"data\":", + "m_string": "\"success\":false", + "m_code": 202, + "known": ["gorou", "saku"], + "cat": "finance", + "uri_pretty": "https://www.donationalerts.com/r/{account}" + }, + { + "name": "Donatty", + "uri_check": "https://api.donatty.com/users/find/{account}", + "e_code": 200, + "e_string": "\"response\":", + "m_string": "\"error\":\"internal error\"", + "m_code": 404, + "known": ["takaisekai", "fordmac"], + "cat": "business", + "uri_pretty": "https://donatty.com/{account}", + "protection": ["cloudflare"] + }, + { + "name": "dot.cards", + "uri_check": "https://dot.cards/{account}", + "e_code": 200, + "e_string": "status\": \"success", + "m_string": "status\": \"username_not_found", + "m_code": 200, + "known": ["dakmusic", "jhartwell"], + "cat": "business" + }, + { + "name": "DOTAFire", + "uri_check": "https://www.dotafire.com/ajax/searchSite?text={account}&search=members", + "e_code": 200, + "e_string": "href=\"/profile/", + "m_string": ">No results found</span>", + "m_code": 200, + "known": ["DotaCoachApp", "zveen"], + "cat": "gaming" + }, + { + "name": "DOU", + "uri_check": "https://dou.ua/users/{account}/", + "e_code": 200, + "e_string": "class=\"page-profile\"", + "m_string": "class=\"page-error\"", + "m_code": 404, + "known": ["doucommunity", "volodymyrobrizan"], + "cat": "social" + }, + { + "name": "Dribbble", + "uri_check": "https://dribbble.com/{account}", + "e_code": 200, + "e_string": " | Dribbble", + "m_string": "(404)", + "m_code": 404, + "known": ["UI8", "keeplegend"], + "cat": "art" + }, + { + "name": "Droners", + "uri_check": "https://droners.io/accounts/{account}/", + "e_code": 200, + "e_string": "- Professional Drone Pilot", + "m_string": "(404)", + "m_code": 302, + "known": ["chriskahn", "swilken"], + "cat": "hobby" + }, + { + "name": "Drum", + "uri_check": "https://drum.io/{account}/", + "e_code": 200, + "e_string": "firstName\": \"", + "m_string": "Page not found", + "m_code": 302, + "known": ["huckcredibleshotz", "thesuccesspalette"], + "cat": "hobby" + }, + { + "name": "Duolingo", + "uri_check": "https://www.duolingo.com/2017-06-30/users?username={account}&_=1628308619574", + "e_code": 200, + "e_string": "joinedClassroomIds", + "m_string": "\"users\" : []", + "m_code": 200, + "known": ["sdfsdf", "duolingo"], + "cat": "hobby", + "uri_pretty": "https://www.duolingo.com/profile/{account}" + }, + { + "name": "easyen", + "uri_check": "https://easyen.ru/index/8-0-{account}", + "e_code": 200, + "e_string": "День рождения", + "m_string": "Пользователь не найден", + "m_code": 200, + "known": ["wd"], + "cat": "social" + }, + { + "name": "eBay", + "uri_check": "https://www.ebay.com/usr/{account}", + "e_code": 200, + "e_string": "on eBay", + "m_string": "The User ID you entered was not found", + "m_code": 200, + "known": ["the_gqs", "johnny"], + "cat": "shopping" + }, + { + "name": "ebay_stores", + "uri_check": "https://www.ebay.com/str/{account}", + "e_code": 200, + "e_string": "| eBay Stores", + "m_string": "Sorry, this store was not found.", + "m_code": 410, + "known": ["tactical", "tactical-security"], + "cat": "shopping" + }, + { + "name": "Electrobel", + "uri_check": "https://be.electrobel.org/register.ajax", + "e_code": 200, + "e_string": "\"html\":\"Username existsPlease choose another\"", + "m_string": "\"html\":\"Name is available\"", + "m_code": 200, + "known": ["wixel", "Gloomer"], + "cat": "social", + "uri_pretty": "https://be.electrobel.org/{account}", + "post_body": "action=checkUsername&username={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded" + } + }, + { + "name": "Engadget", + "uri_check": "https://www.engadget.com/about/editors/{account}/", + "e_code": 200, + "e_string": "\"displayName\"", + "m_string": ", - Engadget", + "m_code": 200, + "known": ["devindra-hardawar", "kris-holt"], + "cat": "tech" + }, + { + "name": "EPORNER", + "uri_check": "https://www.eporner.com/profile/{account}/", + "e_code": 200, + "e_string": "Video/Pics views", + "m_string": "Profile not found", + "m_code": 404, + "known": ["LAM_2030", "DianaX814"], + "cat": "xx NSFW xx" + }, + { + "name": "Etsy", + "uri_check": "https://www.etsy.com/people/{account}", + "e_code": 200, + "e_string": " favorite items - Etsy", + "m_string": "Sorry, the member you are looking for does not exist", + "m_code": 404, + "known": ["david", "happiness"], + "cat": "shopping" + }, + { + "name": "Evolution CMS", + "uri_check": "https://community.evocms.ru/users/?search={account}", + "e_code": 200, + "e_string": "id=\"user-search\"", + "m_string": "", + "m_code": 200, + "known": ["Dmi3yy", "Pathologic"], + "cat": "tech" + }, + { + "name": "Expressional.social (Mastodon Instance)", + "uri_check": "https://expressional.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["jippi", "poolesen"], + "cat": "social", + "uri_pretty": "https://expressional.social/@{account}" + }, + { + "name": "Eyeem", + "uri_check": "https://www.eyeem.com/u/{account}", + "e_code": 200, + "e_string": "Marketplace", + "m_string": "Not Found (404) | EyeEm", + "m_code": 301, + "known": ["john", "bob"], + "cat": "art" + }, + { + "name": "F3", + "uri_check": "https://f3.cool/{account}", + "e_code": 200, + "e_string": "@", + "m_string": "Page Not Found - F3", + "m_code": 404, + "known": ["nick", "john"], + "cat": "social" + }, + { + "name": "Fabswingers", + "uri_check": "https://www.fabswingers.com/profile/{account}", + "e_code": 200, + "e_string": "View Profile", + "m_string": "The user you tried to view doesn't seem to be on the site any more", + "m_code": 200, + "known": ["justusboth2013", "hellfireclub", "fabswingers.com"], + "cat": "dating" + }, + { + "name": "Facebook", + "uri_check": "https://www.facebook.com/{account}/", + "e_code": 200, + "e_string": "__isProfile", + "m_string": "<title>Facebook", + "m_code": 200, + "known": ["john.miniolic", "adam"], + "cat": "social" + }, + { + "name": "FACEIT", + "uri_check": "https://www.faceit.com/api/users/v1/nicknames/{account}", + "e_code": 200, + "e_string": "\"result\":\"OK\"", + "m_string": "\"message\":\"user not found\"", + "m_code": 404, + "known": ["s1mple", "w0nderful"], + "cat": "gaming", + "uri_pretty": "https://www.faceit.com/en/players/{account}" + }, + { + "name": "Faktopedia", + "uri_check": "https://faktopedia.pl/user/{account}", + "e_code": 200, + "e_string": "Zamieszcza fakty od:", + "m_string": "Nie znaleziono użytkownika o podanym loginie.", + "m_code": 200, + "known": ["janek", "ania"], + "cat": "images" + }, + { + "name": "FanCentro", + "uri_check": "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", + "e_code": 200, + "e_string": "\"status\":true", + "m_string": "\"status\":false", + "m_code": 200, + "known": ["medroxy", "miaaamador"], + "cat": "xx NSFW xx", + "uri_pretty": "https://fancentro.com/{account}/" + }, + { + "name": "Fandom", + "uri_check": "https://www.fandom.com/u/{account}", + "e_code": 200, + "e_string": "| Profile | Fandom", + "m_string": "Not Found", + "m_code": 404, + "known": ["EJacobs94", "Drew_Dietsch"], + "cat": "gaming" + }, + { + "name": "fanpop", + "uri_check": "https://www.fanpop.com/fans/{account}", + "e_code": 200, + "e_string": "Fanpopping since", + "m_string": "", + "m_code": 302, + "known": ["test", "johndoe"], + "cat": "social" + }, + { + "name": "fansly", + "uri_check": "https://apiv2.fansly.com/api/v1/account?usernames={account}", + "e_code": 200, + "e_string": "username", + "m_string": "response: []", + "m_code": 200, + "known": ["Mikomin", "test"], + "cat": "xx NSFW xx", + "uri_pretty": "https://fansly.com/{account}/posts" + }, + { + "name": "Fark", + "uri_check": "https://www.fark.com/users/{account}", + "e_code": 200, + "e_string": "Fark account number", + "m_string": "Tastes like chicken.", + "m_code": 200, + "known": ["bob", "bobby"], + "cat": "social" + }, + { + "name": "FatSecret", + "uri_check": "https://www.fatsecret.com/member/{account}", + "e_code": 200, + "e_string": "- Member", + "m_string": "Your Key to Success", + "m_code": 302, + "known": ["bob", "bobby"], + "cat": "health" + }, + { + "name": "Federated.press (Mastodon Instance)", + "uri_check": "https://federated.press/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["wood", "cliffcheney"], + "cat": "social", + "uri_pretty": "https://federated.press/@{account}" + }, + { + "name": "figma", + "uri_check": "https://www.figma.com/@{account}", + "e_code": 200, + "e_string": ") on Figma Community", + "m_string": "The page you are looking for can't be found.", + "m_code": 404, + "known": ["bob", "mike"], + "cat": "tech" + }, + { + "name": "Filmot Channel Search", + "uri_check": "https://filmot.com/channelsearch/{account}", + "e_code": 200, + "e_string": "Subscribers", + "m_string": "No channels found", + "m_code": 200, + "known": ["bobicraft", "parodiadoranimado"], + "cat": "archived" + }, + { + "name": "Filmot Unlisted Videos", + "uri_check": "https://filmot.com/unlistedSearch?channelQuery={account}&sortField=uploaddate&sortOrder=desc&", + "e_code": 200, + "e_string": "clips found", + "m_string": "No results", + "m_code": 200, + "known": ["holasoygerman", "elrubiusomg"], + "cat": "archived" + }, + { + "name": "Filmweb", + "uri_check": "https://www.filmweb.pl/user/{account}", + "e_code": 200, + "e_string": "profil w Filmweb", + "m_string": "Varnish 404", + "m_code": 200, + "known": ["test", "Marcin_P"], + "cat": "hobby" + }, + { + "name": "fine_art_america", + "uri_check": "https://fineartamerica.com/profiles/{account}", + "e_code": 200, + "e_string": "Shop for artwork by", + "m_string": "Browse through millions of independent artists in our extensive", + "m_code": 301, + "known": ["scott-norris", "mary-helmreich"], + "cat": "shopping" + }, + { + "name": "Fiverr", + "uri_check": "https://www.fiverr.com/{account}", + "e_code": 200, + "e_string": "member-since", + "m_string": "", + "m_code": 302, + "known": ["yellowdd", "samanvay"], + "cat": "shopping" + }, + { + "name": "FL.ru", + "uri_check": "https://www.fl.ru/users/{account}/portfolio/", + "e_code": 200, + "e_string": "class=\"page-profile\"", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["linig4", "polik100500"], + "cat": "social", + "protection": ["other"] + }, + { + "name": "Flickr", + "uri_check": "https://www.flickr.com/photos/{account}/", + "e_code": 200, + "e_string": "| Flickr", + "m_string": "", + "m_code": 404, + "known": ["glaciernps", "test"], + "cat": "images" + }, + { + "name": "Flipboard", + "uri_check": "https://flipboard.com/@{account}", + "e_code": 200, + "e_string": ") on Flipboard", + "m_string": "", + "m_code": 404, + "known": ["cosmopolitan", "Mashable"], + "cat": "tech" + }, + { + "name": "flowcode", + "uri_check": "https://www.flowcode.com/page/{account}", + "e_code": 200, + "e_string": ";s Flowpage", + "m_string": "Nobody's reserved this Flowpage yet.", + "m_code": 404, + "known": ["evdokia", "irina"], + "cat": "social" + }, + { + "name": "Fodors Forum", + "uri_check": "https://www.fodors.com/community/profile/{account}/forum-activity", + "e_code": 200, + "e_string": "User Profile | Fodor’s Travel", + "m_string": "Plan Your Trip Online", + "m_code": 302, + "known": ["jdstraveler", "gooster"], + "cat": "social" + }, + { + "name": "Folkd", + "uri_check": "https://www.folkd.com/?app=core&module=system&controller=ajax&do=usernameExists&input={account}", + "e_code": 200, + "e_string": "\"message\":\"That display name is in use by another member.\"", + "m_string": "\"result\":\"ok\"", + "m_code": 200, + "known": ["smartplayapk", "abdulmerfantz"], + "cat": "social", + "uri_pretty": "https://www.folkd.com/search/?q={account}&quick=1&type=core_members", + "protection": ["other"] + }, + { + "name": "Fortnite Tracker", + "uri_check": "https://fortnitetracker.com/profile/all/{account}", + "e_code": 200, + "e_string": "s Fortnite Stats - Fortnite Tracker", + "m_string": "Fortnite Player Stats -", + "m_code": 404, + "known": ["steph", "sam"], + "cat": "gaming" + }, + { + "name": "forumprawne.org", + "uri_check": "https://forumprawne.org/members/{account}.html", + "e_code": 200, + "e_string": "Wiadomość", + "m_string": "", + "m_code": 500, + "known": ["test", "test2"], + "cat": "misc" + }, + { + "name": "Fosstodon.org (Mastodon Instance)", + "uri_check": "https://fosstodon.org/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["linux", "Phil35"], + "cat": "social", + "uri_pretty": "https://fosstodon.org/@{account}" + }, + { + "name": "fotka", + "uri_check": "https://api.fotka.com/v2/user/dataStatic?login={account}", + "e_code": 200, + "e_string": "profil", + "m_string": "ERROR", + "m_code": 200, + "known": ["test", "test2"], + "cat": "social", + "uri_pretty": "https://fotka.com/profil/{account}" + }, + { + "name": "Fotolog Archived Profile", + "uri_check": "https://archive.org/wayback/available?url=https://www.fotolog.com/{account}", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}", + "m_code": 200, + "known": ["x_zudex_x", "angelito"], + "cat": "archived", + "uri_pretty": "https://web.archive.org/web/2/fotolog.com/{account}" + }, + { + "name": "Foursquare", + "uri_check": "https://foursquare.com/{account}", + "e_code": 200, + "e_string": "class=\"userProfile2Page\"", + "m_string": "", + "m_code": 308, + "known": ["j0hn", "ncyp23"], + "cat": "social" + }, + { + "name": "freeCodeCamp", + "uri_check": "https://api.freecodecamp.org/api/users/get-public-profile?username={account}", + "e_code": 200, + "e_string": "\"user\":", + "m_string": "\"error\":\"User not found\"", + "m_code": 404, + "known": ["zaira", "CaesarSage"], + "cat": "coding", + "uri_pretty": "https://www.freecodecamp.org/{account}", + "protection": ["cloudflare"] + }, + { + "name": "Freelance.RU", + "uri_check": "https://freelance.ru/{account}", + "e_code": 200, + "e_string": "class=\" user-top-container user-portfolio\"", + "m_string": "class=\"msg_error alert alert-danger\"", + "m_code": 404, + "known": ["sunsey", "semanticlan"], + "cat": "business" + }, + { + "name": "Freelance.ua", + "uri_check": "https://freelance.ua/user/{account}/", + "e_code": 200, + "e_string": "p-profile-avatar", + "m_string": "Схоже, дана сторінка не знайдена", + "m_code": 404, + "known": ["tkachenkoalex", "oleksandrseo1"], + "cat": "social" + }, + { + "name": "Freelancehunt Employer", + "uri_check": "https://freelancehunt.com/en/employer/{account}.html", + "e_code": 200, + "e_string": "\"@id\":\"https://freelancehunt.com/en/employers\"", + "m_string": "User not found.", + "m_code": 404, + "known": ["vadym1232", "Dekovital"], + "cat": "social", + "protection": ["other"] + }, + { + "name": "Freelancehunt Freelancer", + "uri_check": "https://freelancehunt.com/en/freelancer/{account}.html", + "e_code": 200, + "e_string": "\"@id\":\"https://freelancehunt.com/en/freelancers\"", + "m_string": "User not found.", + "m_code": 404, + "known": ["rhythmdev_top", "Zainka"], + "cat": "social", + "protection": ["other"] + }, + { + "name": "Freelancer", + "uri_check": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={account}&compact=true", + "e_code": 200, + "e_string": "\"users\":{\"", + "m_string": "\"users\":{}", + "m_code": 200, + "known": ["desiaunty", "creatvmind"], + "cat": "business", + "uri_pretty": "https://www.freelancer.com/u/{account}" + }, + { + "name": "freesound", + "uri_check": "https://freesound.org/people/{account}/", + "e_code": 200, + "e_string": "Has been a user for", + "m_string": "Page not found", + "m_code": 404, + "known": ["test", "JohnDoe"], + "cat": "music" + }, + { + "name": "FreeSteamKeys", + "uri_check": "https://www.freesteamkeys.com/members/{account}/", + "e_code": 200, + "e_string": "item-header-avatar", + "m_string": "error404", + "m_code": 404, + "known": ["giveaway-su", "keygenerator"], + "cat": "gaming" + }, + { + "name": "FriendFinder", + "uri_check": "https://friendfinder.com/profile/{account}", + "e_code": 200, + "e_string": "Last Visit:", + "m_string": "302 Found", + "m_code": 302, + "known": ["alex56", "john"], + "cat": "dating" + }, + { + "name": "FriendFinder-X", + "uri_check": "https://www.friendfinder-x.com/profile/{account}", + "e_code": 200, + "e_string": "'s Dating Profile on FriendFinder-x", + "m_string": "The document has moved", + "m_code": 302, + "known": ["john"], + "cat": "dating" + }, + { + "name": "Fur Affinity", + "uri_check": "https://www.furaffinity.net/user/{account}/", + "e_code": 200, + "e_string": "", + "m_string": "

System Error

", + "m_code": 200, + "known": ["karintina", "mikrogoat"], + "cat": "images" + }, + { + "name": "Gab", + "uri_check": "https://gab.com/api/v1/account_by_username/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"error\":\"Record not found\"", + "m_code": 404, + "known": ["RealMarjorieGreene", "LaurenBoebert"], + "cat": "political", + "uri_pretty": "https://gab.com/{account}" + }, + { + "name": "Game Jolt", + "uri_check": "https://gamejolt.com/site-api/web/profile/@{account}/", + "e_code": 200, + "e_string": "created_on", + "m_string": "null,", + "m_code": 404, + "known": ["nilllzz", "KorbloxTeams"], + "cat": "gaming", + "uri_pretty": "https://gamejolt.com/@{account}" + }, + { + "name": "game_debate", + "uri_check": "https://www.game-debate.com/profile/{account}", + "e_code": 200, + "e_string": "| , , GB pc game performance", + "m_string": "Not Found", + "m_code": 404, + "known": ["Johnboy", "Crazy"], + "cat": "gaming" + }, + { + "name": "Gamer DVR", + "uri_check": "https://gamerdvr.com/gamer/{account}", + "e_code": 200, + "e_string": "class=\"gamerpic\"", + "m_string": "You are being <", + "m_code": 302, + "known": ["dnlunger", "punksxe"], + "cat": "gaming" + }, + { + "name": "Gamespot", + "uri_check": "https://www.gamespot.com/profile/{account}/summary/activity/?ajax", + "e_code": 200, + "e_string": "\"success\":true", + "m_string": "\"success\":false", + "m_code": 200, + "known": ["alice", "bob"], + "cat": "gaming", + "uri_pretty": "https://www.gamespot.com/profile/{account}/", + "protection": ["cloudflare"] + }, + { + "name": "Garmin connect", + "uri_check": "https://connect.garmin.com/modern/profile/{account}", + "e_code": 200, + "e_string": "window.ERROR_VIEW = null", + "m_string": "resourceNotFoundRoute", + "m_code": 200, + "known": ["tommy", "cderalow"], + "cat": "health" + }, + { + "name": "GDBrowser", + "uri_check": "https://gdbrowser.com/api/profile/{account}", + "e_code": 200, + "e_string": "\"accountID\":", + "m_string": "-1", + "m_code": 500, + "known": ["SorkoPiko", "Subwoofer"], + "cat": "gaming", + "uri_pretty": "https://gdbrowser.com/u/{account}" + }, + { + "name": "GeeksForGeeks", + "uri_check": "https://authapi.geeksforgeeks.org/api-get/user-profile-info/?handle={account}", + "e_code": 200, + "e_string": "\"message\":\"data retrieved successfully\"", + "m_string": "\"message\":\"User not found!\"", + "m_code": 400, + "known": ["nath_789", "harshrajsinghsiwan", "igovindindia"], + "cat": "coding", + "uri_pretty": "https://www.geeksforgeeks.org/user/{account}/" + }, + { + "name": "Geocaching", + "uri_check": "https://www.geocaching.com/p/?u={account}", + "e_code": 200, + "e_string": "Groundspeak - User Profile", + "m_string": "Error 404: DNF", + "m_code": 404, + "known": ["moun10bike", "niraD"], + "cat": "social" + }, + { + "name": "getmonero", + "uri_check": "https://forum.getmonero.org/user/{account}", + "e_code": 200, + "e_string": "Monero | User", + "m_string": "Monero | Page not found. Error: 404", + "m_code": 200, + "known": ["silverfox", "monero"], + "cat": "misc" + }, + { + "name": "Gettr", + "uri_check": "https://api.gettr.com/s/user/{account}/exist", + "e_code": 200, + "e_string": "\"success\":true", + "m_string": "\"success\":false", + "m_code": 200, + "known": ["gettr", "support"], + "cat": "social", + "uri_pretty": "https://gettr.com/user/{account}" + }, + { + "name": "Gigapan", + "uri_check": "https://www.gigapan.com/profiles/{account}", + "e_code": 200, + "e_string": "width=\"100\"", + "m_string": "View Gigapans", + "m_code": 404, + "known": ["test", "lucahammer"], + "cat": "hobby" + }, + { + "name": "Giphy (Channel)", + "uri_check": "https://giphy.com/channel/{account}", + "e_code": 200, + "e_string": "\\\"user_id\\\"", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["teddy_99", "LastYear"], + "cat": "images", + "protection": ["other"] + }, + { + "name": "Gitea", + "uri_check": "https://gitea.com/{account}", + "e_code": 200, + "e_string": "class=\"page-content user profile\"", + "m_string": "class=\"status-page-error\"", + "m_code": 404, + "known": ["xin", "dev"], + "cat": "coding" + }, + { + "name": "Gitee", + "uri_check": "https://gitee.com/{account}", + "e_code": 200, + "e_string": "class=\"ui container user_page\"", + "m_string": "class=\"container error midCenter\"", + "m_code": 404, + "known": ["maxim", "fupengfei"], + "cat": "coding" + }, + { + "name": "giters", + "uri_check": "https://giters.com/{account}", + "e_code": 200, + "e_string": " - Giters", + "m_string": "This page could not be found", + "m_code": 404, + "known": ["WebBreacher", "C3n7ral051nt4g3ncy"], + "cat": "coding" + }, + { + "name": "GitHub", + "uri_check": "https://api.github.com/users/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"status\": \"404\"", + "m_code": 404, + "known": ["test", "WebBreacher"], + "cat": "coding", + "uri_pretty": "https://github.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" + } + }, + { + "name": "GitHub Gists", + "uri_check": "https://api.github.com/users/{account}/gists", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"status\": \"404\"", + "m_code": 404, + "known": ["teymurgahramanov", "WebBreacher"], + "cat": "coding", + "uri_pretty": "https://gits.github.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" + } + }, + { + "name": "GitLab", + "uri_check": "https://gitlab.com/users/{account}/exists", + "e_code": 200, + "e_string": "\"exists\":true", + "m_string": "\"exists\":false", + "m_code": 200, + "known": ["skennedy", "KennBro"], + "cat": "coding", + "uri_pretty": "https://gitlab.com/{account}" + }, + { + "name": "gloria.tv", + "uri_check": "https://gloria.tv/{account}", + "e_code": 200, + "e_string": "Last online", + "m_string": "Page unavailable", + "m_code": 404, + "known": ["Irapuato", "en.news"], + "cat": "social" + }, + { + "name": "GNOME GitLab", + "uri_check": "https://gitlab.gnome.org/api/v4/users?username={account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "[]", + "m_code": 200, + "known": ["MystikNinja", "0xMRTT"], + "cat": "coding", + "uri_pretty": "https://gitlab.gnome.org/{account}", + "protection": ["other"] + }, + { + "name": "GNOME Shell Extensions", + "uri_check": "https://extensions.gnome.org/accounts/profile/{account}", + "e_code": 200, + "e_string": "class=\"user-details\"", + "m_string": "

404 - Page not Found

", + "m_code": 404, + "known": ["johnny", "dev"], + "cat": "coding" + }, + { + "name": "GOG", + "uri_check": "https://www.gog.com/u/{account}", + "e_code": 200, + "e_string": "window.profilesData.profileUser", + "m_string": "href=\"http://www.gog.com/404\"", + "m_code": 302, + "known": ["user", "Admin"], + "cat": "gaming" + }, + { + "name": "Goodgame_Russia", + "uri_check": "https://goodgame.ru/channel/{account}/", + "e_code": 200, + "e_string": "channel_id", + "m_string": "Такой страницы не существует", + "m_code": 400, + "known": ["ejysarmat", "JacksonTV"], + "cat": "gaming" + }, + { + "name": "gpodder.net", + "uri_check": "https://gpodder.net/user/{account}/", + "e_code": 200, + "e_string": "mdash; gpodder.net", + "m_string": "404 - Not found", + "m_code": 404, + "known": ["blue", "red"], + "cat": "music" + }, + { + "name": "grandprof", + "uri_check": "https://grandprof.org/communaute/{account}", + "e_code": 200, + "e_string": "s Profile", + "m_string": "Mauvaise pioche", + "m_code": 404, + "known": ["mohamed01", "amine"], + "cat": "misc" + }, + { + "name": "Graphics.social (Mastodon Instance)", + "uri_check": "https://graphics.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["brian", "moonpotato"], + "cat": "social", + "uri_pretty": "https://graphics.social/@{account}" + }, + { + "name": "Gravatar", + "uri_check": "https://en.gravatar.com/{account}.json", + "e_code": 200, + "e_string": "entry", + "m_string": "User not found", + "m_code": 404, + "known": ["test"], + "cat": "images", + "uri_pretty": "https://en.gravatar.com/{account}" + }, + { + "name": "GTAinside.com", + "uri_check": "https://www.gtainside.com/user/{account}", + "e_code": 200, + "e_string": "userpage_user", + "m_string": "

404 Not Found", + "m_code": 200, + "known": ["daniel", "franco"], + "cat": "gaming" + }, + { + "name": "gumroad", + "uri_check": "https://{account}.gumroad.com/", + "e_code": 200, + "e_string": "s profile picture", + "m_string": "Page not found", + "m_code": 404, + "known": ["ellietalksmoney", "reallyniceimages"], + "cat": "shopping", + "strip_bad_char": "." + }, + { + "name": "Habbo.com", + "uri_check": " https://www.habbo.com/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["john", "michelle"], + "cat": "gaming", + "uri_pretty": " https://www.habbo.com/profile/{account}" + }, + { + "name": "Habbo.com.br", + "uri_check": "https://www.habbo.com.br/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["jeaniucas", "cellao"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.com.br/profile/{account}" + }, + { + "name": "Habbo.com.tr", + "uri_check": "https://www.habbo.com.tr/api/public/users?name={account}", + "e_code": 200, + "e_string": "currentLevel", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["fatma9180", "elektrikci"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.com.tr/profile/{account}" + }, + { + "name": "Habbo.de", + "uri_check": "https://www.habbo.de/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["klaus", "angelinaa"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.de/profile/{account}" + }, + { + "name": "Habbo.es", + "uri_check": " https://www.habbo.es/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "not-found", + "m_code": 404, + "known": ["juan", "michelle"], + "cat": "gaming", + "uri_pretty": " https://www.habbo.es/profile/{account}" + }, + { + "name": "Habbo.fi", + "uri_check": "https://www.habbo.fi/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["cucumberz", "Yasline"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.fi/profile/{account}" + }, + { + "name": "Habbo.fr", + "uri_check": "https://www.habbo.fr/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["2006", "sicilienne"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.fr/profile/{account}" + }, + { + "name": "Habbo.it", + "uri_check": "https://www.habbo.it/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["samsebek", "papablu"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.it/profile/{account}" + }, + { + "name": "Habbo.nl", + "uri_check": "https://www.habbo.nl/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId\":", + "m_string": "error\": \"not-found", + "m_code": 404, + "known": ["XOTWOD.xx", "xoSorxo"], + "cat": "gaming", + "uri_pretty": "https://www.habbo.nl/profile/{account}" + }, + { + "name": "Habr", + "uri_check": "https://habr.com/ru/users/{account}/", + "e_code": 200, + "e_string": "tm-page tm-user", + "m_string": "tm-error-message", + "m_code": 404, + "known": ["Bo0oM", "AlhimicMan"], + "cat": "social" + }, + { + "name": "Habr Employer", + "uri_check": "https://freelance.habr.com/freelancers/{account}/employer", + "e_code": 200, + "e_string": "user-profile profile-blocks", + "m_string": "icon_user_locked", + "m_code": 404, + "known": ["aufdk", "Danvantariy"], + "cat": "social" + }, + { + "name": "Habr Freelancer", + "uri_check": "https://freelance.habr.com/freelancers/{account}", + "e_code": 200, + "e_string": "user-profile profile-blocks", + "m_string": "icon_user_locked", + "m_code": 404, + "known": ["Bo0oM", "Akloom"], + "cat": "social" + }, + { + "name": "Habr Q&A", + "uri_check": "https://qna.habr.com/user/{account}", + "e_code": 200, + "e_string": "class=\"page-header__info\"", + "m_string": "icon_error_404", + "m_code": 404, + "known": ["Masthead", "dmitriypur"], + "cat": "coding" + }, + { + "name": "Habtium", + "uri_check": "https://habtium.es/{account}", + "e_code": 200, + "e_string": "
Oops!", + "m_code": 404, + "known": ["diegjeremy", "suigetsu"], + "cat": "gaming" + }, + { + "name": "Hackaday.io", + "uri_check": "https://hackaday.io/{account}", + "e_code": 200, + "e_string": "class=\"following-container \"", + "m_string": "class=\"error-nav\"", + "m_code": 404, + "known": ["john", "adam"], + "cat": "hobby", + "strip_bad_char": "-" + }, + { + "name": "Hacker News", + "uri_check": "https://news.ycombinator.com/user?id={account}", + "e_code": 200, + "e_string": "created:", + "m_string": "No such user.", + "m_code": 200, + "known": ["mubix", "egypt"], + "cat": "tech" + }, + { + "name": "hackerearth", + "uri_check": "https://www.hackerearth.com/@{account}", + "e_code": 200, + "e_string": "| Developer Profile on HackerEarth", + "m_string": "404 | HackerEarth", + "m_code": 200, + "known": ["peter", "liam"], + "cat": "coding" + }, + { + "name": "Hackernoon", + "uri_check": "https://hackernoon.com/_next/data/foL6JC7ro2FEEMD-gMKgQ/u/{account}.json", + "e_code": 200, + "e_string": "\"profile\"", + "m_string": "__N_REDIRECT", + "m_code": 200, + "known": ["john", "alex"], + "cat": "tech", + "uri_pretty": "https://hackernoon.com/u/{account}" + }, + { + "name": "HackerOne", + "uri_check": "https://hackerone.com/graphql", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "\"type\":\"NOT_FOUND\"", + "m_code": 200, + "known": ["born2hack", "godiego"], + "cat": "tech", + "uri_pretty": "https://hackerone.com/{account}", + "post_body": "{\"query\":\"query($url: URI!) {\\n resource(url: $url) {\\n ... on User { username }\\n }\\n }\",\"variables\":{\"url\":\"{account}\"}}", + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "HackerRank", + "uri_check": "https://www.hackerrank.com/rest/contests/master/hackers/{account}/profile", + "e_code": 200, + "e_string": "\"model\":", + "m_string": "\"error\":\"Not Found\"", + "m_code": 404, + "known": ["FMota", "adepanges"], + "cat": "tech", + "uri_pretty": "https://www.hackerrank.com/profile/{account}", + "protection": ["other"] + }, + { + "name": "hackrocks", + "uri_check": "https://hackrocks.com/api/users/profile", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "\"error_data\":\"USER_NOT_FOUND\"", + "m_code": 404, + "known": ["mespejo", "NeoWaveCode"], + "cat": "tech", + "uri_pretty": "https://hackrocks.com/id/{account}", + "post_body": "{\"username\":\"{account}\"}", + "headers": { + "Accept": "application/json, text/plain, */*", + "Content-Type": "application/json" + } + }, + { + "name": "Hackster", + "uri_check": "https://www.hackster.io/{account}", + "e_code": 200, + "e_string": "data-hypernova-key=\"UserProfile\"", + "m_string": "id=\"error\"", + "m_code": 404, + "known": ["hendra", "sologithu"], + "cat": "coding" + }, + { + "name": "hamaha", + "uri_check": "https://hamaha.net/{account}", + "e_code": 200, + "e_string": "- трейдинг форекс фьючерсы акции фондовый рынок ", + "m_string": "HAMAHA Биткоин форум.", + "m_code": 200, + "known": ["oleg", "misha"], + "cat": "finance" + }, + { + "name": "Hanime", + "uri_check": "https://hanime.tv/channels/{account}", + "e_code": 200, + "e_string": "Channel Views", + "m_string": "DYNAMIC", + "m_code": 302, + "known": ["thecolorred-7902", "arisu-cum-stats-2787"], + "cat": "xx NSFW xx" + }, + { + "name": "Hcommons.social (Mastodon Instance)", + "uri_check": "https://hcommons.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["hello", "iuulaio"], + "cat": "social", + "uri_pretty": "https://hcommons.social/@{account}" + }, + { + "name": "Heylink", + "uri_check": "https://heylink.me/{account}/", + "e_code": 200, + "e_string": "HeyLink.me |", + "m_string": "We can't find the page that you're looking for :(", + "m_code": 404, + "known": ["mohammed13", "johnny"], + "cat": "misc" + }, + { + "name": "hiberworld", + "uri_check": "https://hiberworld.com/user/{account}", + "e_code": 200, + "e_string": "Member since ", + "m_string": "Looks like you got lost ", + "m_code": 200, + "known": ["Axeman", "Silver01"], + "cat": "gaming" + }, + { + "name": "HiHello", + "uri_check": "https://www.hihello.me/author/{account}", + "e_code": 200, + "e_string": "HiHello Blog Author: ", + "m_string": "Well, this is awkward", + "m_code": 404, + "known": ["pascal-theriault", "kortnee-paiha"], + "cat": "business" + }, + { + "name": "Historians.social (Mastodon Instance)", + "uri_check": "https://historians.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["lizcovart", "Ejoiner"], + "cat": "social", + "uri_pretty": "https://historians.social/@{account}" + }, + { + "name": "Holopin", + "uri_check": "https://holopin.io/@{account}#", + "e_code": 200, + "e_string": " | Holopin", + "m_string": "Not found
", + "m_code": 200, + "known": ["holo", "test"], + "cat": "hobby" + }, + { + "name": "HomeDesign3D", + "uri_check": "https://en.homedesign3d.net/user/{account}", + "e_code": 200, + "e_string": "userspace", + "m_string": "An Error Occurred: Internal Server Error", + "m_code": 500, + "known": ["carlos01", "paul"], + "cat": "hobby" + }, + { + "name": "Hometech.social (Mastodon Instance)", + "uri_check": "https://hometech.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["one4ll", "seth"], + "cat": "social", + "uri_pretty": "https://hometech.social/@{account}" + }, + { + "name": "hoo.be", + "uri_check": "https://hoo.be/{account}", + "e_code": 200, + "e_string": "--profile-name-color", + "m_string": "Page Not Found

", + "m_code": 404, + "known": ["chrishemsworth", "alextackie"], + "cat": "business" + }, + { + "name": "Hostux.social (Mastodon Instance)", + "uri_check": "https://hostux.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["alarig", "rsmela"], + "cat": "social", + "uri_pretty": "https://hostux.social/@{account}" + }, + { + "name": "Houzz", + "uri_check": "https://www.houzz.com/user/{account}", + "e_code": 200, + "e_string": "Followers", + "m_string": "Page Not Found", + "m_code": 404, + "known": ["liam", "alex"], + "cat": "hobby" + }, + { + "name": "HubPages", + "uri_check": "https://hubpages.com/@{account}", + "e_code": 200, + "e_string": "name\">Followers", + "m_string": "Sorry, that user does not exist", + "m_code": 404, + "known": ["greeneyes1607", "lmmartin"], + "cat": "blog" + }, + { + "name": "Hubski", + "uri_check": "https://hubski.com/user/{account}", + "e_code": 200, + "e_string": "'s profile", + "m_string": "No such user.", + "m_code": 200, + "known": ["john", "blue"], + "cat": "social" + }, + { + "name": "HudsonRock", + "uri_check": "https://cavalier.hudsonrock.com/api/json/v2/osint-tools/search-by-username?username={account}", + "e_code": 200, + "e_string": "This username is associated with a computer that was infected by an info-stealer", + "m_string": "This username is not associated with a computer infected by an info-stealer", + "m_code": 200, + "known": ["testadmin", "testadmin1"], + "cat": "tech" + }, + { + "name": "hugging_face", + "uri_check": "https://huggingface.co/{account}", + "e_code": 200, + "e_string": "thumbnails.huggingface.co/social-thumbnails/", + "m_string": "Sorry, we can't find the page you are looking for.", + "m_code": 404, + "known": ["hack", "dev"], + "cat": "tech" + }, + { + "name": "HulkShare", + "uri_check": "https://www.hulkshare.com/{account}", + "e_code": 200, + "e_string": "id=\"profile_image\"", + "m_string": "Invalid user.", + "m_code": 200, + "known": ["djjamesryan", "dxcrew2"], + "cat": "social" + }, + { + "name": "Iconfinder", + "uri_check": "https://www.iconfinder.com/{account}", + "e_code": 200, + "e_string": "data-to-user-id=", + "m_string": "We couldn't find the page you are looking for.", + "m_code": 404, + "known": ["roundicons", "iconfinder"], + "cat": "images" + }, + { + "name": "icq-chat", + "uri_check": "https://icq.icqchat.co/members/{account}/", + "e_code": 200, + "e_string": "Last seen", + "m_string": "Oops! We ran into some problems", + "m_code": 404, + "known": ["brookenora.54", "bigdaddy.77"], + "cat": "social" + }, + { + "name": "IFTTT", + "uri_check": "https://ifttt.com/p/{account}", + "e_code": 200, + "e_string": "Joined", + "m_string": "The requested page or file does not exist", + "m_code": 404, + "known": ["nr9992", "sss90"], + "cat": "misc" + }, + { + "name": "ifunny", + "uri_check": "https://ifunny.co/user/{account}", + "e_code": 200, + "e_string": "subscribers", + "m_string": "404 - page not found", + "m_code": 404, + "known": ["hacker", "john"], + "cat": "misc" + }, + { + "name": "igromania", + "uri_check": "http://forum.igromania.ru/member.php?username={account}", + "e_code": 200, + "e_string": "Форум Игромании - Просмотр профиля:", + "m_string": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", + "m_code": 200, + "known": ["bob", "blue"], + "cat": "social" + }, + { + "name": "ilovegrowingmarijuana", + "uri_check": "https://support.ilovegrowingmarijuana.com/u/{account}", + "e_code": 200, + "e_string": " Profile - ", + "m_string": "Oops! That page doesn’t exist or is private", + "m_code": 404, + "known": ["ILGM.Stacy", "Mosaicmind9x"], + "cat": "social" + }, + { + "name": "imagefap", + "uri_check": "https://www.imagefap.com/profile/{account}", + "e_code": 200, + "e_string": "s Profile", + "m_string": "Invalid uid", + "m_code": 200, + "known": ["lover03", "SecretSide15"], + "cat": "xx NSFW xx" + }, + { + "name": "ImageShack", + "uri_check": "https://imageshack.com/user/{account}", + "e_code": 200, + "e_string": "s Images", + "m_string": "", + "m_code": 302, + "known": ["test"], + "cat": "images" + }, + { + "name": "iMGSRC.RU", + "uri_check": "https://imgsrc.ru/main/user.php?lang=ru&user={account}", + "e_code": 200, + "e_string": "Присоединился", + "m_string": "", + "m_code": 302, + "known": ["natalisn", "andydiamond", "natalyck"], + "cat": "images" + }, + { + "name": "imgur", + "uri_check": "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", + "e_code": 200, + "e_string": "created_at", + "m_string": "unable to find account", + "m_code": 404, + "known": ["OliverClothesoff70", "DadOnTheInternet"], + "cat": "images", + "uri_pretty": "https://imgur.com/user/{account}/about" + }, + { + "name": "inaturalist", + "uri_check": "https://inaturalist.nz/people/{account}", + "e_code": 200, + "e_string": "s Profile", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["greg", "tom"], + "cat": "hobby" + }, + { + "name": "Independent academia", + "uri_check": "https://independent.academia.edu/{account}", + "e_code": 200, + "e_string": "- Academia.edu", + "m_string": "Academia.edu", + "m_code": 404, + "known": ["peter", "LiamM"], + "cat": "hobby" + }, + { + "name": "InkBunny", + "uri_check": "https://inkbunny.net/{account}", + "e_code": 200, + "e_string": "Profile | Inkbunny, the Furry Art Community", + "m_string": "Members | Inkbunny, the Furry Art Community", + "m_code": 302, + "known": ["AdminBunny", "test"], + "cat": "xx NSFW xx" + }, + { + "name": "InsaneJournal", + "uri_check": "https://{account}.insanejournal.com/profile", + "e_code": 200, + "e_string": "User:", + "m_string": "The requested URL /profile was not found on this server", + "m_code": 200, + "known": ["test", "pint-sized", "acroamatica"], + "cat": "social", + "strip_bad_char": "." + }, + { + "name": "Instagram", + "uri_check": "https://www.picuki.com/profile/{account}", + "e_code": 200, + "e_string": "Instagram public profile with posts", + "m_string": "Nothing found!", + "m_code": 404, + "known": ["katyperry", "kirbstr"], + "cat": "social", + "uri_pretty": "https://instagram.com/{account}" + }, + { + "name": "Instagram (Imginn)", + "uri_check": "https://imginn.com/{account}/", + "e_code": 200, + "e_string": "userinfo", + "m_string": "page-error notfound", + "m_code": 404, + "known": ["therock", "ramarim"], + "cat": "social", + "protection": ["cloudflare"] + }, + { + "name": "Instagram_archives", + "uri_check": "https://archive.org/wayback/available?url=https://instagram.com/{account}/", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}}", + "m_code": 200, + "known": ["zuck", "jack"], + "cat": "social" + }, + { + "name": "Instagram2", + "uri_check": "https://dumpoir.com/v/{account}", + "e_code": 200, + "e_string": "Instagram Stories, Profile, Posts and Followers View Anonymous", + "m_string": "We are sorry. Should we search anything else?", + "m_code": 404, + "known": ["katyperry", "kirbstr"], + "cat": "social", + "uri_pretty": "https://instagram.com/{account}" + }, + { + "name": "Instructables", + "uri_check": "https://www.instructables.com/json-api/showAuthorExists?screenName={account}", + "e_code": 200, + "e_string": "\"exists\": true", + "m_string": "\"error\": \"Sorry, we couldn't find that one!\"", + "m_code": 404, + "known": ["davidandora", "test"], + "cat": "hobby", + "uri_pretty": "https://www.instructables.com/member/{account}/" + }, + { + "name": "Internet Archive User Search", + "uri_check": "https://archive.org/advancedsearch.php?q={account}&output=json", + "e_code": 200, + "e_string": "backup_location", + "m_string": "numFound\":0", + "m_code": 200, + "known": ["test", "mubix"], + "cat": "misc", + "uri_pretty": "https://archive.org/search.php?query={account}" + }, + { + "name": "interpals", + "uri_check": "https://www.interpals.net/{account}", + "e_code": 200, + "e_string": "Looking for", + "m_string": "User not found", + "m_code": 200, + "known": ["test"], + "cat": "dating" + }, + { + "name": "Intigriti", + "uri_check": "https://app.intigriti.com/api/user/public/profile/{account}", + "e_code": 200, + "e_string": "\"userName\":", + "m_string": "class=\"error-page-container\"", + "m_code": 404, + "known": ["vampire01", "kenshiin"], + "cat": "tech", + "uri_pretty": "https://app.intigriti.com/profile/{account}" + }, + { + "name": "isMyGirl", + "uri_check": "https://ismygirl.com/api/model/getModel?slug={account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "detail\": \"Model not found.", + "m_code": 404, + "known": ["summer", "littlelanta"], + "cat": "xx NSFW xx", + "uri_pretty": "https://ismygirl.com/models/{account}" + }, + { + "name": "Issuu", + "uri_check": "https://issuu.com/call/signup/v2/check-username/{account}", + "e_code": 200, + "e_string": "\"status\":\"unavailable\"", + "m_string": "\"status\":\"available\"", + "m_code": 200, + "known": ["letsplayhockey", "the_anchor"], + "cat": "social", + "uri_pretty": "https://issuu.com/{account}" + }, + { + "name": "itch.io", + "uri_check": "https://itch.io/profile/{account}", + "e_code": 200, + "e_string": "class=\"user_data\"", + "m_string": "class=\"not_found_page page_widget base_widget\"", + "m_code": 404, + "known": ["obliviist", "finch"], + "cat": "gaming" + }, + { + "name": "Japandict", + "uri_check": "https://forum.japandict.com/u/{account}", + "e_code": 200, + "e_string": "modern browser", + "m_string": "The page you requested could not be found.", + "m_code": 404, + "known": ["Yan", "Happy"], + "cat": "social" + }, + { + "name": "JBZD", + "uri_check": "https://jbzd.com.pl/uzytkownik/{account}", + "e_code": 200, + "e_string": "Dzidy użytkownika", + "m_string": "Błąd 404", + "m_code": 404, + "known": ["test", "janek"], + "cat": "images" + }, + { + "name": "jeja.pl", + "uri_check": "https://www.jeja.pl/user,{account}", + "e_code": 200, + "e_string": "Profil użytkownika", + "m_string": "Niepoprawny login", + "m_code": 200, + "known": ["kowal", "janek"], + "cat": "misc" + }, + { + "name": "Jeuxvideo", + "uri_check": "https://www.jeuxvideo.com/profil/{account}?mode=infos", + "e_code": 200, + "e_string": "- jeuxvideo.com", + "m_string": "rence des gamers", + "m_code": 404, + "known": ["jane", "alex"], + "cat": "gaming" + }, + { + "name": "Joe Monster", + "uri_check": "https://joemonster.org/bojownik/{account}", + "e_code": 200, + "e_string": "jest prywatny", + "m_string": "Nie wiem jak ci to powiedzieć", + "m_code": 200, + "known": ["dandris", "lasior"], + "cat": "misc" + }, + { + "name": "joinDOTA", + "uri_check": "https://www.joindota.com/ajax/search", + "e_code": 200, + "e_string": "\"items\":[{", + "m_string": "\"count\":0", + "m_code": 200, + "known": ["AngryTestie", "amddota2"], + "cat": "gaming", + "uri_pretty": "https://www.joindota.com/search?m=edb_player&q={account}", + "post_body": "search={account}&module=edb_player&language=en", + "headers": { + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" + } + }, + { + "name": "JSFiddle", + "uri_check": "https://jsfiddle.net/user/{account}/", + "e_code": 200, + "e_string": "Settings - JSFiddle - Code Playground", + "m_string": "That page doesn't exist.", + "m_code": 404, + "known": ["john", "alex"], + "cat": "coding" + }, + { + "name": "Justforfans", + "uri_check": "https://justfor.fans/{account}", + "e_code": 200, + "e_string": " @ JustFor.Fans", + "m_string": "", + "m_code": 302, + "known": ["devinfrancoxxx", "RileyChaux"], + "cat": "xx NSFW xx" + }, + { + "name": "kaggle", + "uri_check": "https://www.kaggle.com/{account}", + "e_code": 200, + "e_string": "| Kaggle", + "m_string": "Kaggle: Your Home for Data Science", + "m_code": 404, + "known": ["babyoda", "residentmario"], + "cat": "coding" + }, + { + "name": "kashipara", + "uri_check": "https://www.kashipara.com/ajax/checkNewUser.php", + "e_code": 200, + "e_string": "\"message\":\"UserName already Exist\"", + "m_string": "\"message\":\"UserName avalible\"", + "m_code": 200, + "known": ["lopalopa", "westde123"], + "cat": "tech", + "uri_pretty": "https://www.kashipara.com/profile/user/{account}", + "post_body": "id=UserName&value={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded" + } + }, + { + "name": "Keybase", + "uri_check": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"them\":[null]", + "m_code": 200, + "known": ["test", "mubix"], + "cat": "social", + "uri_pretty": "https://keybase.io/{account}" + }, + { + "name": "Kick", + "uri_check": "https://kick.com/api/v2/channels/{account}", + "e_code": 200, + "e_string": "\"id\"", + "m_string": "Not Found", + "m_code": 404, + "known": ["deepak", "anthonyz"], + "cat": "social", + "uri_pretty": "https://kick.com/{account}", + "protection": ["cloudflare"] + }, + { + "name": "Kickstarter", + "uri_check": "https://www.kickstarter.com/profile/{account}", + "e_code": 200, + "e_string": "projects", + "m_string": "Oops, Something went missing", + "m_code": 404, + "known": ["john", "bob"], + "cat": "shopping" + }, + { + "name": "kik", + "uri_check": "https://kik.me/{account}", + "e_code": 200, + "e_string": "/thumb.jpg\"/>", + "m_string": "

", + "m_code": 200, + "known": ["adam", "smith", "jones"], + "cat": "social" + }, + { + "name": "kipin", + "uri_check": "https://kipin.app/{account}", + "e_code": 200, + "e_string": "kipin.app/data/photos/resized2/", + "m_string": "Page not found. Link expired, broken or wrong.", + "m_code": 302, + "known": ["monethica", "asd_fca"], + "cat": "business" + }, + { + "name": "KnowYourMeme", + "uri_check": "https://knowyourmeme.com/users/{account}", + "e_code": 200, + "e_string": "Contributions", + "m_string": "404, File Not Found!", + "m_code": 400, + "known": ["ayumukasuga", "butterin-yobread"], + "cat": "social" + }, + { + "name": "Ko-Fi", + "uri_check": "https://ko-fi.com/{account}", + "e_code": 200, + "e_string": "id=\"profile-header\"", + "m_string": "Object moved", + "m_code": 302, + "known": ["frank", "marcmakescomics"], + "cat": "social", + "protection": ["cloudflare"] + }, + { + "name": "komi", + "uri_check": "https://api.komi.io/api/talent/usernames/{account}", + "e_code": 200, + "e_string": "accountStatus\":\"active", + "m_string": "The talent profile was not found", + "m_code": 404, + "known": ["abbysage", "iamdsprings"], + "cat": "social", + "uri_pretty": "https://{account}.komi.io" + }, + { + "name": "Kongregate", + "uri_check": "https://www.kongregate.com/accounts/{account}", + "e_code": 200, + "e_string": "Member Since", + "m_string": "Sorry, no account with that name was found", + "m_code": 404, + "known": ["test"], + "cat": "gaming" + }, + { + "name": "Kotburger", + "uri_check": "https://kotburger.pl/user/{account}", + "e_code": 200, + "e_string": "Zamieszcza kotburgery od:", + "m_string": "Nie znaleziono użytkownika o podanym loginie.", + "m_code": 200, + "known": ["ania", "janek"], + "cat": "images" + }, + { + "name": "Kwai", + "uri_check": "https://www.kwai.com/@{account}", + "e_code": 200, + "e_string": "name=\"title\"", + "m_string": "Kwai", + "m_code": 200, + "known": ["carlito", "taylor"], + "cat": "social" + }, + { + "name": "kwejk.pl", + "uri_check": "https://kwejk.pl/uzytkownik/{account}#/tablica/", + "e_code": 200, + "e_string": "Kwejki użytkownika", + "m_string": "404 - strona nie została znaleziona - KWEJK.pl", + "m_code": 404, + "known": ["test", "janek"], + "cat": "images" + }, + { + "name": "Kwork", + "uri_check": "https://kwork.ru/user_kworks/{account}", + "e_code": 200, + "e_string": "\"success\":true", + "m_string": "\"success\":false", + "m_code": 200, + "known": ["ilkarkarakurt", "sergeymeshiy"], + "cat": "social", + "uri_pretty": "https://kwork.ru/user/{account}", + "post_body": "{\"username\":\"{account}\",\"offset\":0,\"limit\":10}", + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "Last.fm", + "uri_check": "https://www.last.fm/user/{account}", + "e_code": 200, + "e_string": "class=\"header-info\"", + "m_string": "

404 - Page Not Found

", + "m_code": 404, + "known": ["anne", "alex"], + "cat": "music" + }, + { + "name": "LeakIX", + "uri_check": "https://leakix.net/u/{account}", + "e_code": 200, + "e_string": ">Joined ", + "m_string": "LeakIX - Server error", + "m_code": 500, + "known": ["Chocapikk", "Hug1337"], + "cat": "tech", + "protection": ["other"] + }, + { + "name": "LeetCode", + "uri_check": "https://leetcode.com/graphql/", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "\"matchedUser\":null", + "m_code": 200, + "known": ["aku_2000", "wengh"], + "cat": "coding", + "uri_pretty": "https://leetcode.com/u/{account}/", + "post_body": "{\"query\":\"query userPublicProfile($username: String!) { matchedUser(username: $username) { username } }\",\"variables\":{\"username\":\"{account}\"},\"operationName\":\"userPublicProfile\"}", + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "Lemon8", + "uri_check": "https://www.lemon8-app.com/{account}?region=us", + "e_code": 200, + "e_string": "class=\"user-desc-main-info", + "m_string": "unavailableReason\": \"not_found", + "m_code": 404, + "known": ["phinyamat", "andrianajohnson"], + "cat": "social" + }, + { + "name": "Letterboxd", + "uri_check": "https://letterboxd.com/{account}/", + "e_code": 200, + "e_string": "’s profile on Letterboxd", + "m_string": "Sorry, we can’t find the page you’ve requested.", + "m_code": 404, + "known": ["serdaraltin", "choi"], + "cat": "social" + }, + { + "name": "LevelBlue", + "uri_check": "https://otx.alienvault.com/otxapi/auth/validate?username={account}", + "e_code": 400, + "e_string": "\"username\": [\"This username is already taken\"]", + "m_string": "{}", + "m_code": 200, + "known": ["BotnetExposer", "jamesbrine"], + "cat": "social", + "uri_pretty": "https://otx.alienvault.com/user/{account}/pulses" + }, + { + "name": "Liberapay", + "uri_check": "https://liberapay.com/{account}", + "e_code": 200, + "e_string": "class=\"profile-header\"", + "m_string": "Response code: 404", + "m_code": 404, + "known": ["db0", "bnjbvr"], + "cat": "finance", + "protection": ["cloudflare"] + }, + { + "name": "LibraryThing", + "uri_check": "https://www.librarything.com/profile/{account}", + "e_code": 200, + "e_string": "
Joined
", + "m_string": "Error: This user doesn't exist", + "m_code": 200, + "known": ["test", "john"], + "cat": "hobby" + }, + { + "name": "Libretooth.gr (Mastodon Instance)", + "uri_check": "https://libretooth.gr/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["infolibre", "tzinalilik"], + "cat": "social", + "uri_pretty": "https://libretooth.gr/@{account}" + }, + { + "name": "lichess.org", + "uri_check": "https://lichess.org/api/player/autocomplete?term={account}&exists=1", + "e_code": 200, + "e_string": "true", + "m_string": "false", + "m_code": 200, + "known": ["mohammed01", "mohammed03"], + "cat": "gaming", + "uri_pretty": "https://lichess.org/@/{account}" + }, + { + "name": "LINE", + "uri_check": "https://line.me/R/ti/p/@{account}?from=page", + "e_code": 200, + "e_string": "Add LINE Friends via QR Code", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["roseareal", "yoasobi"], + "cat": "social" + }, + { + "name": "Linktree", + "uri_check": "https://linktr.ee/{account}", + "e_code": 200, + "e_string": "\"uuid\":", + "m_string": "\"statusCode\":404", + "m_code": 404, + "known": ["anne", "alex"], + "cat": "social" + }, + { + "name": "linux.org.ru", + "uri_check": "https://www.linux.org.ru/people/{account}/profile", + "e_code": 200, + "e_string": "Дата регистрации", + "m_string": "Пользователя не существует", + "m_code": 404, + "known": ["john", "bob"], + "cat": "tech" + }, + { + "name": "Livejournal", + "uri_check": "https://{account}.livejournal.com", + "e_code": 200, + "e_string": "Unknown Journal", + "m_code": 404, + "known": ["jill", "john"], + "cat": "blog", + "strip_bad_char": "." + }, + { + "name": "livemaster.ru", + "uri_check": "https://www.livemaster.ru/{account}", + "e_code": 200, + "e_string": "Магазин мастера", + "m_string": "<title>Вы попали на несуществующую страницу", + "m_code": 404, + "known": ["redart", "ellentoy"], + "cat": "shopping" + }, + { + "name": "lobste.rs", + "uri_check": "https://lobste.rs/u/{account}", + "e_code": 200, + "e_string": "Joined", + "m_string": "The resource you requested was not found, or the story has been deleted.", + "m_code": 404, + "known": ["john", "bob"], + "cat": "tech" + }, + { + "name": "LoLProfile", + "uri_check": "https://lolprofile.net/search/world/{account}-world", + "e_code": 200, + "e_string": "class=\"content sw\">", + "m_string": "We could not find any results, please try again later or check your input.", + "m_code": 200, + "known": ["bea", "wild"], + "cat": "gaming" + }, + { + "name": "Lor.sh (Mastodon Instance)", + "uri_check": "https://lor.sh/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["dump_stack", "lamountain"], + "cat": "social", + "uri_pretty": "https://lor.sh/@{account}" + }, + { + "name": "lowcygier.pl", + "uri_check": "https://bazar.lowcygier.pl/user/{account}", + "e_code": 200, + "e_string": "Zarejestrowany", + "m_string": "Błąd 404 - Podana strona nie istnieje", + "m_code": 404, + "known": ["armin", "janek"], + "cat": "gaming" + }, + { + "name": "MAGABOOK", + "uri_check": "https://magabook.com/{account}", + "e_code": 200, + "e_string": "Timeline", + "m_string": "", + "m_code": 302, + "known": ["KristenSuzanne", "mikeflbmer"], + "cat": "social" + }, + { + "name": "Magix", + "uri_check": "https://www.magix.info/us/users/profile/{account}/", + "e_code": 200, + "e_string": "About me", + "m_string": "Page not found", + "m_code": 200, + "known": ["baywolfmusic", "johnebaker"], + "cat": "music" + }, + { + "name": "Malpedia Actors", + "uri_check": "https://malpedia.caad.fkie.fraunhofer.de/actor/{account}", + "e_code": 200, + "e_string": "href=\"/actors\"", + "m_string": "Page not Found.", + "m_code": 404, + "known": ["USDoD", "AeroBlade"], + "cat": "tech" + }, + { + "name": "MapMyTracks", + "uri_check": "https://www.mapmytracks.com/{account}", + "e_code": 200, + "e_string": "Daily distance this week", + "m_string": "Outside together", + "m_code": 302, + "known": ["ulirad", "CBSloan"], + "cat": "health" + }, + { + "name": "Mapstodon.space (Mastodon Instance)", + "uri_check": "https://mapstodon.space/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["Autumnhussar", "jeremy"], + "cat": "social", + "uri_pretty": "https://mapstodon.space/@{account}" + }, + { + "name": "Maroc_nl", + "uri_check": "https://www.maroc.nl/forums/members/{account}.html", + "e_code": 200, + "e_string": "Bekijk Profiel:", + "m_string": "Deze gebruiker is niet geregistreerd", + "m_code": 200, + "known": ["brahim", "brahim01"], + "cat": "social" + }, + { + "name": "Marshmallow", + "uri_check": "https://marshmallow-qa.com/{account}", + "e_code": 200, + "e_string": "さんにメッセージをおくる", + "m_string": "For compensation, here are cats for you.", + "m_code": 404, + "known": ["yuino_fox", "momo"], + "cat": "social" + }, + { + "name": "Martech", + "uri_check": "https://martech.org/author/{account}/", + "e_code": 200, + "e_string": "twitter:site", + "m_string": "Page not found", + "m_code": 404, + "known": ["mani-karthik", "james-green"], + "cat": "business" + }, + { + "name": "Massage Anywhere", + "uri_check": "https://www.massageanywhere.com/profile/{account}", + "e_code": 200, + "e_string": "<title>MassageAnywhere.com Profile for ", + "m_string": "<title>MassageAnywhere.com: Search Results", + "m_code": 200, + "known": ["lorilmccluskey", "LomiNYC"], + "cat": "health" + }, + { + "name": "masto.ai", + "uri_check": "https://masto.ai/@{account}", + "e_code": 200, + "e_string": "@masto.ai) - Mastodon", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["rbreich", "stux"], + "cat": "social" + }, + { + "name": "Masto.nyc (Mastodon Instance)", + "uri_check": "https://masto.nyc/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["seano", "jayjay718"], + "cat": "social", + "uri_pretty": "https://masto.nyc/@{account}" + }, + { + "name": "Mastodon API", + "uri_check": "https://mastodon.social/api/v2/search?q={account}&limit=1&type=accounts", + "e_code": 200, + "e_string": "display_name", + "m_string": "\"accounts\":[]", + "m_code": 404, + "known": ["Richard_Littler", "webbreacher"], + "cat": "social", + "uri_pretty": "https://mastodon.social/api/v2/search?q={account}&type=accounts" + }, + { + "name": "Mastodon-101010.pl", + "uri_check": "https://101010.pl/@{account}", + "e_code": 200, + "e_string": "@101010.pl", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["szekspir", "xaphanpl"], + "cat": "social" + }, + { + "name": "Mastodon-C.IM", + "uri_check": "https://c.im/@{account}", + "e_code": 200, + "e_string": "@c.im) - C.IM", + "m_string": "The page you are looking for isn't here", + "m_code": 404, + "known": ["admin", "paidugroup"], + "cat": "social" + }, + { + "name": "Mastodon-Chaos.social", + "uri_check": "https://chaos.social/@{account}", + "e_code": 200, + "e_string": "@chaos.social) - chaos.social", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["dictvm", "sml"], + "cat": "social" + }, + { + "name": "Mastodon-climatejustice.rocks", + "uri_check": "https://climatejustice.rocks/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "username\":", + "m_string": "Record not found", + "m_code": 404, + "known": ["paula", "PaulaToThePeople"], + "cat": "social", + "uri_pretty": "https://climatejustice.rocks/@{account}" + }, + { + "name": "Mastodon-Defcon", + "uri_check": "https://defcon.social/@{account}", + "e_code": 200, + "e_string": "- DEF CON Social", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["defcon", "buttersnatcher"], + "cat": "social" + }, + { + "name": "Mastodon-mastodon", + "uri_check": "https://mastodon.social/@{account}", + "e_code": 200, + "e_string": "profile:username", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["john", "alex"], + "cat": "social" + }, + { + "name": "Mastodon-meow.social", + "uri_check": "https://meow.social/@{account}", + "e_code": 200, + "e_string": "- the mastodon instance for creatures fluffy, scaly and otherwise", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["meow", "novra"], + "cat": "social" + }, + { + "name": "Mastodon-mstdn.io", + "uri_check": "https://mstdn.io/@{account}", + "e_code": 200, + "e_string": "@mstdn.io) - Mastodon", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["mike", "greg"], + "cat": "social" + }, + { + "name": "Mastodon-pol.social", + "uri_check": "https://pol.social/@{account}", + "e_code": 200, + "e_string": "@pol.social", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["ftdl", "ducensor"], + "cat": "social" + }, + { + "name": "Mastodon-rigcz.club", + "uri_check": "https://rigcz.club/@{account}", + "e_code": 200, + "e_string": "@rigcz.club", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["blazej", "adam"], + "cat": "social" + }, + { + "name": "Mastodon-social_tchncs", + "uri_check": "https://social.tchncs.de/@{account}", + "e_code": 200, + "e_string": "profile:username", + "m_string": "The page you are looking for isn't here", + "m_code": 301, + "known": ["michael", "frank"], + "cat": "social" + }, + { + "name": "Mastodon-Toot.Community", + "uri_check": "https://toot.community/@{account}", + "e_code": 200, + "e_string": "@toot.community) - toot.community", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["Johnny", "jorijn"], + "cat": "social" + }, + { + "name": "Mastodon.online", + "uri_check": "https://mastodon.online/@{account}", + "e_code": 200, + "e_string": "@mastodon.online) - Mastodon", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["Gargron", "RDHale"], + "cat": "social" + }, + { + "name": "Mastodonbooks.net (Mastodon Instance)", + "uri_check": "https://mastodonbooks.net/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["RogerRemacle", "eugnick"], + "cat": "social", + "uri_pretty": "https://mastodonbooks.net/@{account}" + }, + { + "name": "MCName (Minecraft)", + "uri_check": "https://mcname.info/en/search?q={account}", + "e_code": 200, + "e_string": "card mb-3 text-monospace", + "m_string": "alert alert-success px-0 py-1", + "m_code": 200, + "known": ["unrevive", "nxtuny"], + "cat": "gaming" + }, + { + "name": "MCUUID (Minecraft)", + "uri_check": "https://playerdb.co/api/player/minecraft/{account}", + "e_code": 200, + "e_string": "Successfully found player by given ID.", + "m_string": "minecraft.api_failure", + "m_code": 200, + "known": ["smithy", "bob"], + "cat": "gaming", + "uri_pretty": "https://mcuuid.net/?q={account}" + }, + { + "name": "Medium", + "uri_check": "https://{account}.medium.com/about", + "e_code": 200, + "e_string": "Medium member since", + "m_string": "Out of nothing, something", + "m_code": 404, + "known": ["zulie", "jessicalexicus"], + "cat": "news", + "strip_bad_char": "." + }, + { + "name": "medyczka.pl", + "uri_check": "http://medyczka.pl/user/{account}", + "e_code": 200, + "e_string": "Lista uzytkownikow", + "m_string": "This user has not registered and therefore does not have a profile to view.", + "m_code": 200, + "known": ["test", "janek"], + "cat": "health" + }, + { + "name": "meet me", + "uri_check": "https://www.meetme.com/{account}", + "e_code": 200, + "e_string": "<title>Meet people like ", + "m_string": "<title>MeetMe - Chat and Meet New People</title", + "m_code": 302, + "known": ["john", "marsha"], + "cat": "dating" + }, + { + "name": "message_me", + "uri_check": "https://mssg.me/{account}", + "e_code": 200, + "e_string": "_id", + "m_string": "<title>404", + "m_code": 404, + "known": ["sue", "david"], + "cat": "social" + }, + { + "name": "metacritic", + "uri_check": "https://www.metacritic.com/user/{account}", + "e_code": 200, + "e_string": "'s Profile - Metacritic", + "m_string": "Sign up to get your own profile - Metacritic</", + "m_code": 200, + "known": ["dev", "matt"], + "cat": "hobby" + }, + { + "name": "Minds", + "uri_check": "https://www.minds.com/api/v3/register/validate?username={account}", + "e_code": 200, + "e_string": "\"valid\":false", + "m_string": "\"valid\":true", + "m_code": 200, + "known": ["gigan996", "mindsgaming"], + "cat": "social", + "uri_pretty": "https://www.minds.com/{account}/" + }, + { + "name": "Minecraft List", + "uri_check": "https://minecraftlist.com/players/{account}", + "e_code": 200, + "e_string": "-->was seen on<!--", + "m_string": "0 Minecraft servers recently", + "m_code": 200, + "known": ["fear837", "dream"], + "cat": "gaming" + }, + { + "name": "mintme", + "uri_check": "https://www.mintme.com/token/{account}", + "e_code": 200, + "e_string": "token | mintMe", + "m_string": "Page not found", + "m_code": 404, + "known": ["john", "crypto"], + "cat": "finance" + }, + { + "name": "Mistrzowie", + "uri_check": "https://mistrzowie.org/user/{account}", + "e_code": 200, + "e_string": "Profil użytkownika", + "m_string": "Nie znaleziono użytkownika o podanym loginie.", + "m_code": 200, + "known": ["test", "janek"], + "cat": "images" + }, + { + "name": "Mix", + "uri_check": "https://mix.com/{account}/", + "e_code": 200, + "e_string": "<title>@", + "m_string": "The best content from the open web, personalized.", + "m_code": 302, + "known": ["test", "mixpicks"], + "cat": "social" + }, + { + "name": "Mixcloud", + "uri_check": "https://api.mixcloud.com/{account}/", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "\"error\":", + "m_code": 404, + "known": ["DjHunnyBee", "vegarecords"], + "cat": "music", + "uri_pretty": "https://www.mixcloud.com/{account}/" + }, + { + "name": "Mixi", + "uri_check": "https://mixi.jp/view_community.pl?id={account}", + "e_code": 200, + "e_string": "| mixiコミュニティ", + "m_string": "データがありません", + "m_code": 200, + "known": ["2854333", "19123"], + "cat": "social" + }, + { + "name": "Mixlr", + "uri_check": "https://api.mixlr.com/users/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"error\":\"Resource not found\"", + "m_code": 404, + "known": ["test", "john"], + "cat": "music", + "uri_pretty": "https://mixlr.com/{account}/" + }, + { + "name": "Mmorpg", + "uri_check": "https://forums.mmorpg.com/profile/{account}", + "e_code": 200, + "e_string": "MMORPG.com Forums", + "m_string": "404 Not Not_Found", + "m_code": 404, + "known": ["TheDalaiBomba", "MadLovin"], + "cat": "gaming" + }, + { + "name": "MobileGTA.net", + "uri_check": "https://www.mobilegta.net/en/user/{account}", + "e_code": 200, + "e_string": "userpage_user", + "m_string": "

404 Not Found", + "m_code": 200, + "known": ["daniel", "franco"], + "cat": "gaming" + }, + { + "name": "Mod DB", + "uri_check": "https://www.moddb.com/members/{account}", + "e_code": 200, + "e_string": "joined Profil de ", + "m_string": "

Page introuvable

", + "m_code": 404, + "known": ["aesthetics", "pif"], + "cat": "hobby" + }, + { + "name": "Motokiller", + "uri_check": "https://mklr.pl/user/{account}", + "e_code": 200, + "e_string": "Zamieszcza materiały od:", + "m_string": "Nie znaleziono użytkownika o podanym loginie.", + "m_code": 200, + "known": ["test", "janek"], + "cat": "images" + }, + { + "name": "moxfield", + "uri_check": "https://www.moxfield.com/users/{account}", + "e_code": 200, + "e_string": "Moxfield Profile", + "m_string": "No user found ", + "m_code": 200, + "known": ["gamer", "Carlos01"], + "cat": "misc" + }, + { + "name": "Muck Rack", + "uri_check": "https://muckrack.com/{account}", + "e_code": 200, + "e_string": "on Muck Rack", + "m_string": "Oh no! Page not found.", + "m_code": 404, + "known": ["john"], + "cat": "news" + }, + { + "name": "Musician.social (Mastodon Instance)", + "uri_check": "https://musician.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["Alizar", "weisjohan"], + "cat": "social", + "uri_pretty": "https://musician.social/@{account}" + }, + { + "name": "musictraveler", + "uri_check": "https://www.musictraveler.com/en/users/{account}/", + "e_code": 200, + "e_string": "on Music Traveler", + "m_string": "Page Not found", + "m_code": 404, + "known": ["dave", "sarah"], + "cat": "music" + }, + { + "name": "MUYZORRAS", + "uri_check": "https://www.muyzorras.com/usuarios/{account}", + "e_code": 200, + "e_string": "og:title", + "m_string": "Error 404", + "m_code": 404, + "known": ["anuel", "esteban"], + "cat": "xx NSFW xx" + }, + { + "name": "my_instants", + "uri_check": "https://www.myinstants.com/en/profile/{account}/", + "e_code": 200, + "e_string": " | Myinstants", + "m_string": "Page not found", + "m_code": 404, + "known": ["daniel01", "dave"], + "cat": "music" + }, + { + "name": "MyAnimeList", + "uri_check": "https://myanimelist.net/profile/{account}", + "e_code": 200, + "e_string": "Profile - MyAnimeList.net", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["test", "admin"], + "cat": "social" + }, + { + "name": "MyBuilder.com", + "uri_check": "https://www.mybuilder.com/profile/view/{account}", + "e_code": 200, + "e_string": "feedback", + "m_string": "Whoops! You broke our site!", + "m_code": 404, + "known": ["blue", "john"], + "cat": "social" + }, + { + "name": "MyFitnessPal Author", + "uri_check": "https://blog.myfitnesspal.com/author/{account}/", + "e_code": 200, + "e_string": "About the Author", + "m_string": "<title>Page not found ", + "m_code": 404, + "known": ["lauren-krouse", "julia-malacoff"], + "cat": "health" + }, + { + "name": "MyFitnessPal Community", + "uri_check": "https://community.myfitnesspal.com/en/profile/{account}", + "e_code": 200, + "e_string": ">Last Active<", + "m_string": "User Not Found", + "m_code": 404, + "known": ["malibu927", "L1zardQueen"], + "cat": "health" + }, + { + "name": "MyLot", + "uri_check": "https://www.mylot.com/{account}", + "e_code": 200, + "e_string": "on myLot", + "m_string": " / Whoops!", + "m_code": 404, + "known": ["Tampa_girl7"], + "cat": "social" + }, + { + "name": "MYM", + "uri_check": "https://mym.fans/{account}", + "e_code": 200, + "e_string": "class=\"page profile\"", + "m_string": "class=\"page page-404\"", + "m_code": 404, + "known": ["Unmissabl", "Nicolasmauranmedium"], + "cat": "social" + }, + { + "name": "MyNickname", + "uri_check": "https://mynickname.com/en/search?q={account}", + "e_code": 200, + "e_string": "nickname found:

", + "m_string": "

Nickname not found. Try searching for similar nicknames.

", + "m_code": 200, + "known": ["tw1st", "0xDEFACED"], + "cat": "misc" + }, + { + "name": "myportfolio", + "uri_check": "https://{account}.myportfolio.com/work", + "e_code": 200, + "e_string": "class=\"page-title", + "m_string": "Adobe Portfolio | Build your own personalized website", + "m_code": 302, + "known": ["artkonina", "fox"], + "cat": "misc", + "strip_bad_char": "." + }, + { + "name": "MySpace", + "uri_check": "https://myspace.com/{account}", + "e_code": 200, + "e_string": "", + "m_string": "", + "m_code": 404, + "known": ["alice", "bob"], + "cat": "social" + }, + { + "name": "Myspreadshop", + "uri_check": "https://myspreadshop.de/{account}/shopData/list", + "e_code": 200, + "e_string": "siteName", + "m_string": "not found", + "m_code": 404, + "known": ["arukori", "honey"], + "cat": "business", + "uri_pretty": "https://{account}.myspreadshop.com" + }, + { + "name": "myWishBoard", + "uri_check": "https://mywishboard.com/@{account}", + "e_code": 200, + "e_string": "class=\"MwbUserHeader\"", + "m_string": "class=\"MwbError\"", + "m_code": 404, + "known": ["ke7_2024", "alekseevvasil"], + "cat": "shopping" + }, + { + "name": "naija_planet", + "uri_check": "https://naijaplanet.com/{account}", + "e_code": 200, + "e_string": "dating Profile, ", + "m_string": "- NaijaPlanet!", + "m_code": 200, + "known": ["daniel01", "wales73"], + "cat": "dating" + }, + { + "name": "nairaland", + "uri_check": "https://www.nairaland.com/{account}", + "e_code": 200, + "e_string": "s Profile", + "m_string": "404: Page Not Found", + "m_code": 301, + "known": ["amakaone", "seun"], + "cat": "news" + }, + { + "name": "NaturalNews", + "uri_check": "https://naturalnews.com/author/{account}/", + "e_code": 200, + "e_string": "All posts by", + "m_string": "The page you are looking for cannot be found or is no longer available.", + "m_code": 200, + "known": ["jdheyes", "healthranger"], + "cat": "political" + }, + { + "name": "Naver", + "uri_check": "https://blog.naver.com/{account}", + "e_code": 200, + "e_string": " : 네이버 블로그", + "m_string": "페이지를 찾을 수 없습니다", + "m_code": 500, + "known": ["bob", "blue"], + "cat": "social" + }, + { + "name": "Neocities", + "uri_check": "https://neocities.org/site/{account}", + "e_code": 200, + "e_string": "noindex, follow", + "m_string": "- Not Found", + "m_code": 404, + "known": ["fauux", "sadgrl"], + "cat": "social" + }, + { + "name": "netvibes", + "uri_check": "https://www.netvibes.com/{account}", + "e_code": 200, + "e_string": "userId", + "m_string": "Page not found", + "m_code": 404, + "known": ["nebkacrea", "cdiljda"], + "cat": "social" + }, + { + "name": "Newgrounds", + "uri_check": "https://{account}.newgrounds.com/", + "e_code": 200, + "e_string": "user-header-name", + "m_string": "Whoops, that's a swing and a miss!", + "m_code": 404, + "known": ["john", "bob"], + "cat": "gaming", + "strip_bad_char": "." + }, + { + "name": "newmeet", + "uri_check": "https://www.newmeet.com/en/profile/{account}/", + "e_code": 200, + "e_string": "

The profile of", + "m_string": "Chat with , , , - ", + "m_code": 200, + "known": ["Harmonie06", "Bach007"], + "cat": "dating" + }, + { + "name": "Nightbot", + "uri_check": "https://api.nightbot.tv/1/channels/t/{account}", + "e_code": 200, + "e_string": "\"status\":200", + "m_string": "\"status\":404", + "m_code": 404, + "known": ["saevid", "proxyfox"], + "cat": "social", + "uri_pretty": "https://nightbot.tv/t/{account}/commands" + }, + { + "name": "nihbuatjajan", + "uri_check": "https://www.nihbuatjajan.com/{account}", + "e_code": 200, + "e_string": ") | Nih buat jajan", + "m_string": "Nih Buat Jajan", + "m_code": 302, + "known": ["banyusadewa", "danirachmat"], + "cat": "social" + }, + { + "name": "Nitecrew (Mastodon Instance)", + "uri_check": "https://nitecrew.rip/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["Myxx", "honey"], + "cat": "social", + "uri_pretty": "https://nitecrew.rip/@{account}" + }, + { + "name": "nnru", + "uri_check": "https://{account}.www.nn.ru", + "e_code": 200, + "e_string": " ", + "m_string": "<title>Ошибка 404 -", + "m_code": 404, + "known": ["lena", "slava"], + "cat": "social", + "strip_bad_char": "." + }, + { + "name": "NotABug", + "uri_check": "https://notabug.org/{account}", + "e_code": 200, + "e_string": "class=\"user profile\"", + "m_string": "alt=\"404\"", + "m_code": 404, + "known": ["notabug", "hp", "zPlus"], + "cat": "coding" + }, + { + "name": "Note", + "uri_check": "https://note.com/{account}", + "e_code": 200, + "e_string": "フォロワー", + "m_string": "お探しのページが見つかりません。", + "m_code": 404, + "known": ["honey", "yui"], + "cat": "social" + }, + { + "name": "npm", + "uri_check": "https://www.npmjs.com/~{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "<h1>not found</h1>", + "m_code": 404, + "known": ["npm", "rich_harris"], + "cat": "coding" + }, + { + "name": "oglaszamy24h.pl", + "uri_check": "https://oglaszamy24h.pl/profil,{account}", + "e_code": 200, + "e_string": "Profil użytkownika:", + "m_string": "Nieprawidłowy link, w bazie danych nie istnieje użytkownik o podanym loginie", + "m_code": 404, + "known": ["kowal", "janek"], + "cat": "shopping" + }, + { + "name": "ok.ru", + "uri_check": "https://ok.ru/{account}", + "e_code": 200, + "e_string": "| OK", + "m_string": "class=\"p404_t", + "m_code": 404, + "known": ["john", "aleksandrvasillev"], + "cat": "social" + }, + { + "name": "okidoki", + "uri_check": "https://m.okidoki.ee/ru/users/{account}/", + "e_code": 200, + "e_string": "Пользователь", + "m_string": "Страница не найдена", + "m_code": 404, + "known": ["nastya3", "nastya"], + "cat": "misc" + }, + { + "name": "omg.lol", + "uri_check": "https://api.omg.lol/address/{account}/info", + "e_code": 200, + "e_string": "\"success\": true", + "m_string": "\"success\": false", + "m_code": 200, + "known": ["cwa", "adam"], + "cat": "social", + "uri_pretty": "https://{account}.omg.lol", + "strip_bad_char": "@." + }, + { + "name": "OnlySearch (OnlyFans)", + "uri_check": "https://onlysearch.co/api/search?keyword={account}", + "e_code": 200, + "e_string": "\"hits\":[{", + "m_string": "\"hits\":[]", + "m_code": 200, + "known": ["miaimani", "milaamour"], + "cat": "xx NSFW xx", + "uri_pretty": "https://onlysearch.co/profiles?keyword={account}" + }, + { + "name": "Opencollective", + "uri_check": "https://opencollective.com/{account}", + "e_code": 200, + "e_string": "- Open Collective", + "m_string": "Not Found", + "m_code": 200, + "known": ["john", "bob"], + "cat": "finance" + }, + { + "name": "opensource", + "uri_check": "https://opensource.com/users/{account}", + "e_code": 200, + "e_string": "| Opensource.com", + "m_string": "Page not found", + "m_code": 404, + "known": ["dave", "mike"], + "cat": "tech" + }, + { + "name": "OpenStreetMap", + "uri_check": "https://www.openstreetmap.org/user/{account}", + "e_code": 200, + "e_string": "Mapper since:", + "m_string": "does not exist", + "m_code": 404, + "known": ["kemkim"], + "cat": "social" + }, + { + "name": "OPGG", + "uri_check": "https://eune.op.gg/summoners/eune/{account}", + "e_code": 200, + "e_string": "- Summoner Stats - League of Legends", + "m_string": "Guide - OP.GG", + "m_code": 200, + "known": ["xin", "carlos01"], + "cat": "gaming" + }, + { + "name": "Orbys", + "uri_check": "https://orbys.net/{account}", + "e_code": 200, + "e_string": "profile_user_image", + "m_string": "The page you are looking for cannot be found.", + "m_code": 404, + "known": ["txmustang302"], + "cat": "social" + }, + { + "name": "Origins.Habbo.com", + "uri_check": "https://origins.habbo.com/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId", + "m_string": "not-found", + "m_code": 404, + "known": ["john", "jane"], + "cat": "gaming" + }, + { + "name": "Origins.Habbo.com.br", + "uri_check": "https://origins.habbo.com.br/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId", + "m_string": "not-found", + "m_code": 404, + "known": ["carlos", "pedro"], + "cat": "gaming" + }, + { + "name": "Origins.Habbo.es", + "uri_check": "https://origins.habbo.es/api/public/users?name={account}", + "e_code": 200, + "e_string": "uniqueId", + "m_string": "not-found", + "m_code": 404, + "known": ["carlos", "mary"], + "cat": "gaming" + }, + { + "name": "osu!", + "uri_check": "https://osu.ppy.sh/users/{account}", + "e_code": 302, + "e_string": "", + "m_string": "User not found! ;_;", + "m_code": 404, + "known": ["stretches", "spiken8"], + "cat": "gaming" + }, + { + "name": "Our Freedom Book", + "uri_check": "https://www.ourfreedombook.com/{account}", + "e_code": 200, + "e_string": "meta property=\"og:", + "m_string": "Sorry, page not found", + "m_code": 302, + "known": ["DaveLipsky", "StarlaJene"], + "cat": "social" + }, + { + "name": "ow.ly", + "uri_check": "http://ow.ly/user/{account}", + "e_code": 200, + "e_string": "Images", + "m_string": "404 error", + "m_code": 404, + "known": ["StopAdMedia", "jokervendetti"], + "cat": "social" + }, + { + "name": "palnet", + "uri_check": "https://www.palnet.io/@{account}/", + "e_code": 200, + "e_string": "class=\"profile-cover\"", + "m_string": "Unknown user account!", + "m_code": 404, + "known": ["trincowski-pt", "anggreklestari"], + "cat": "social" + }, + { + "name": "Parler", + "uri_check": "https://parler.com/user/{account}", + "e_code": 200, + "e_string": "People to Follow", + "m_string": "join Parler today", + "m_code": 302, + "known": ["DineshDsouza", "SeanHannity"], + "cat": "social" + }, + { + "name": "Parler archived posts", + "uri_check": "http://archive.org/wayback/available?url=https://parler.com/profile/{account}/posts", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}", + "m_code": 200, + "known": ["JoePags", "dineshdsouza"], + "cat": "archived", + "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts" + }, + { + "name": "Parler archived profile", + "uri_check": "http://archive.org/wayback/available?url=https://parler.com/profile/{account}", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}", + "m_code": 200, + "known": ["JoePags", "dineshdsouza"], + "cat": "archived", + "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}" + }, + { + "name": "Pastebin", + "uri_check": "https://pastebin.com/u/{account}", + "e_code": 200, + "e_string": "'s Pastebin", + "m_string": "", + "m_code": 404, + "known": ["test", "john"], + "cat": "tech" + }, + { + "name": "patch", + "uri_check": "https://patch.com/users/{account}", + "e_code": 200, + "e_string": "<title>Patch User Profile", + "m_string": "<title>Page not found", + "m_code": 404, + "known": ["dave", "bob"], + "cat": "news" + }, + { + "name": "PatientsLikeMe", + "uri_check": "https://www.patientslikeme.com/members/{account}", + "e_code": 200, + "e_string": "s profile | PatientsLikeMe", + "m_string": "", + "m_code": 302, + "known": ["thjuland", "Pedro0703", "Hydropioneer"], + "cat": "health" + }, + { + "name": "Patreon", + "uri_check": "https://www.patreon.com/{account}", + "e_code": 200, + "e_string": "full_name\":", + "m_string": "errorCode\": 404,", + "m_code": 404, + "known": ["mubix", "doughboys"], + "cat": "finance" + }, + { + "name": "Patriots Win", + "uri_check": "https://patriots.win/u/{account}/", + "e_code": 200, + "e_string": "nav-user active register", + "m_string": "An error occurred", + "m_code": 500, + "known": ["r3deleven", "MemeFactory"], + "cat": "political" + }, + { + "name": "Patronite", + "uri_check": "https://patronite.pl/{account}", + "e_code": 200, + "e_string": "Zostań Patronem", + "m_string": "Nie znaleźliśmy strony której szukasz.", + "m_code": 404, + "known": ["radio357", "radionowyswiat"], + "cat": "finance" + }, + { + "name": "Paypal", + "uri_check": "https://www.paypal.com/paypalme/{account}", + "e_code": 200, + "e_string": "userInfo", + "m_string": "PayPal.MeFollowers", + "m_string": "Sorry, this page doesn’t exist", + "m_code": 404, + "known": ["john", "test"], + "cat": "video" + }, + { + "name": "Pewex", + "uri_check": "https://retro.pewex.pl/user/{account}", + "e_code": 200, + "e_string": "Zamieszcza eksponaty od:", + "m_string": "Nie znaleziono użytkownika o podanym loginie.", + "m_code": 200, + "known": ["test", "ania"], + "cat": "misc" + }, + { + "name": "Picsart", + "uri_check": "https://picsart.com/u/{account}", + "e_code": 200, + "e_string": "Profiles on Picsart", + "m_string": "User not found", + "m_code": 404, + "known": ["john", "john404"], + "cat": "art" + }, + { + "name": "Piekielni", + "uri_check": "https://piekielni.pl/user/{account}", + "e_code": 200, + "e_string": "Zamieszcza historie od:", + "m_string": "Nie znaleziono użytkownika o podanym loginie.", + "m_code": 200, + "known": ["test", "janek"], + "cat": "misc" + }, + { + "name": "pikabu", + "uri_check": "https://pikabu.ru/@{account}", + "e_code": 200, + "e_string": "— все посты пользователя", + "m_string": "404. Страница не найдена", + "m_code": 404, + "known": ["igor01", "serguei"], + "cat": "social" + }, + { + "name": "Pillowfort", + "uri_check": "https://www.pillowfort.social/{account}", + "e_code": 200, + "e_string": "", + "m_string": "That page does not exist, or you do not have the proper permissions to view it.", + "m_code": 404, + "known": ["MissMoonified", "honey"], + "cat": "social" + }, + { + "name": "PinkBike", + "uri_check": "https://www.pinkbike.com/u/{account}/", + "e_code": 200, + "e_string": "on Pinkbike", + "m_string": "I couldn't find the page you were looking for", + "m_code": 404, + "known": ["whistlermountainbikepark", "paulhanson"], + "cat": "hobby" + }, + { + "name": "Pinterest", + "uri_check": "https://www.pinterest.com/{account}/", + "e_code": 200, + "e_string": " - Profile | Pinterest", + "m_string": "id=\"home-main-title", + "m_code": 301, + "known": ["test123", "frickcollection"], + "cat": "social" + }, + { + "name": "pixelfed.social", + "uri_check": "https://pixelfed.social/{account}", + "e_code": 200, + "e_string": "on pixelfed", + "m_string": "pixelfed", + "m_code": 404, + "known": ["sarah", "john"], + "cat": "social" + }, + { + "name": "Playstation Network", + "uri_check": "https://psnprofiles.com/xhr/search/users?q={account}", + "e_code": 200, + "e_string": "
", + "m_string": "We couldn't find anything ", + "m_code": 200, + "known": ["SlimShaggy18", "ikemenzi"], + "cat": "gaming", + "uri_pretty": "https://psnprofiles.com/{account}" + }, + { + "name": "Plink", + "uri_check": "https://plink.gg/user/{account}", + "e_code": 200, + "e_string": "class=\"user-page\"", + "m_string": "PLINK - 404 Page not found", + "m_code": 404, + "known": ["CryptonianTV", "xacstonyjx"], + "cat": "gaming" + }, + { + "name": "Plurk", + "uri_check": "https://www.plurk.com/{account}", + "e_code": 200, + "e_string": "Profile views", + "m_string": "Register your plurk account", + "m_code": 200, + "known": ["test"], + "cat": "social" + }, + { + "name": "Poe.com", + "uri_check": "https://poe.com/profile/{account}", + "e_code": 200, + "e_string": "\"__isNode\":\"PoeUser\"", + "m_string": "\"user\":null", + "m_code": 200, + "known": ["spdustin", "PromptCase"], + "cat": "tech" + }, + { + "name": "Pokec", + "uri_check": "https://pokec.azet.sk/{account}", + "e_code": 200, + "e_string": "idReportedUser", + "m_string": "Neexistujúci používateľ", + "m_code": 404, + "known": ["tobias", "brahim1"], + "cat": "social" + }, + { + "name": "pokemonshowdown", + "uri_check": "https://pokemonshowdown.com/users/{account}", + "e_code": 200, + "e_string": "Official ladder", + "m_string": " (Unregistered)", + "m_code": 404, + "known": ["red", "blue"], + "cat": "gaming" + }, + { + "name": "Pokerstrategy", + "uri_check": "http://www.pokerstrategy.net/user/{account}/profile/", + "e_code": 200, + "e_string": "User profile for", + "m_string": "Sorry, the requested page couldn't be found!", + "m_code": 404, + "known": ["john", "bob"], + "cat": "gaming" + }, + { + "name": "Polarsteps", + "uri_check": "https://api.polarsteps.com/users/byusername/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["EngelBos", "GunnarEndlich"], + "cat": "hobby", + "uri_pretty": "https://www.polarsteps.com/{account}" + }, + { + "name": "Polchat.pl", + "uri_check": "https://polczat.pl/forum/profile/{account}/", + "e_code": 200, + "e_string": "Historia wpisów", + "m_string": "Wybrany użytkownik nie istnieje.", + "m_code": 200, + "known": ["admin", "Lesik"], + "cat": "social" + }, + { + "name": "policja2009", + "uri_check": "http://www.policja2009.fora.pl/search.php?search_author={account}", + "e_code": 200, + "e_string": "Autor", + "m_string": "Nie znaleziono tematów ani postów pasujących do Twoich kryteriów", + "m_code": 200, + "known": ["Pvwel", "janek"], + "cat": "misc" + }, + { + "name": "Poll Everywhere", + "uri_check": "https://pollev.com/proxy/api/users/{account}", + "e_code": 200, + "e_string": "name", + "m_string": "ResourceNotFound", + "m_code": 404, + "known": ["josh", "jsmith"], + "cat": "tech", + "uri_pretty": "https://pollev.com/{account}" + }, + { + "name": "polygon", + "uri_check": "https://www.polygon.com/users/{account}", + "e_code": 200, + "e_string": "- Polygon", + "m_string": "404 Not found", + "m_code": 404, + "known": ["nicodeyo", "Nicole_Clark"], + "cat": "gaming" + }, + { + "name": "popl", + "uri_check": "https://poplme.co/{account}", + "e_code": 200, + "e_string": "MuiTypography-root MuiTypography-body1 css-kj7pvm", + "m_string": "Profile not found", + "m_code": 200, + "known": ["rpelite", "Ee0af3d822", "ashleymetzger"], + "cat": "business" + }, + { + "name": "Pornhub Porn Stars", + "uri_check": "https://www.pornhub.com/pornstar/{account}", + "e_code": 200, + "e_string": "Pornstar Rank", + "m_string": "", + "m_code": 301, + "known": ["riley-reid", "alex-adams"], + "cat": "xx NSFW xx" + }, + { + "name": "Pornhub Users", + "uri_check": "https://www.pornhub.com/users/{account}", + "e_code": 200, + "e_string": "s Profile - Pornhub.com", + "m_string": "Error Page Not Found", + "m_code": 404, + "known": ["test123"], + "cat": "xx NSFW xx" + }, + { + "name": "Poshmark", + "uri_check": "https://poshmark.com/closet/{account}", + "e_code": 200, + "e_string": " is using Poshmark to sell items from their closet.", + "m_string": "Page not found - Poshmark", + "m_code": 404, + "known": ["alice", "bob"], + "cat": "shopping" + }, + { + "name": "postcrossing", + "uri_check": "https://www.postcrossing.com/user/{account}", + "e_code": 200, + "e_string": ", from", + "m_string": "- Postcrossing", + "m_code": 404, + "known": ["Vladimir", "olga3"], + "cat": "social" + }, + { + "name": "Poweredbygay.social (Mastodon Instance)", + "uri_check": "https://poweredbygay.social/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["aggiepm", "eplumley1976"], + "cat": "social", + "uri_pretty": "https://poweredbygay.social/@{account}" + }, + { + "name": "Pr0gramm", + "uri_check": "https://pr0gramm.com/api/profile/info?name={account}", + "e_code": 200, + "e_string": "\"user\":", + "m_string": "\"code\":404", + "m_code": 404, + "known": ["kaizernero", "Giga1337"], + "cat": "social", + "uri_pretty": "https://pr0gramm.com/user/{account}", + "protection": ["cloudflare"] + }, + { + "name": "Pravda.me", + "uri_check": "https://pravda.me/@{account}", + "e_code": 200, + "e_string": "Российская социальная сеть (by mastodon)", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["tass", "rt_russian"], + "cat": "social" + }, + { + "name": "Privacy Guides", + "uri_check": "https://discuss.privacyguides.net/u/{account}.json", + "e_code": 200, + "e_string": "assign_path", + "m_string": "The requested URL or resource could not be found.", + "m_code": 404, + "known": ["jonah", "dngray"], + "cat": "tech", + "uri_pretty": "https://discuss.privacyguides.net/u/{account}/summary" + }, + { + "name": "Producthunt", + "uri_check": "https://www.producthunt.com/@{account}", + "e_code": 200, + "e_string": "s profile on Product Hunt", + "m_string": "Product Hunt - All newest Products", + "m_code": 404, + "known": ["alex", "jack"], + "cat": "business" + }, + { + "name": "PromoDJ", + "uri_check": "https://promodj.com/ajax/register.html?lang=en", + "e_code": 200, + "e_string": "Address you entered is already taken", + "m_string": "The address is free, it's great;)", + "m_code": 200, + "known": ["sekoy", "vovasmallny"], + "cat": "music", + "uri_pretty": "https://promodj.com/{account}", + "post_body": "kind=nick&value={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" + } + }, + { + "name": "Pronouns.Page", + "uri_check": "https://pronouns.page/api/profile/get/{account}?version=2", + "e_code": 200, + "e_string": "username", + "m_string": "\"profiles\": {}", + "m_code": 304, + "known": ["cannabis_cervi", "user"], + "cat": "social", + "uri_pretty": "https://pronouns.page/@{account}" + }, + { + "name": "Pronouny", + "uri_check": "https://pronouny.xyz/api/users/profile/username/{account}", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "That user doesn't exist", + "m_code": 400, + "known": ["donna", "honey"], + "cat": "social", + "uri_pretty": "https://pronouny.xyz/users/{account}" + }, + { + "name": "Prose", + "uri_check": "https://prose.astral.camp/{account}/", + "e_code": 200, + "e_string": "blog-title", + "m_string": "Are you sure it was ever here?", + "m_code": 404, + "known": ["endeavorance", "overthinkification"], + "cat": "blog" + }, + { + "name": "prv.pl", + "uri_check": "https://www.prv.pl/osoba/{account}", + "e_code": 200, + "e_string": "LOGIN", + "m_string": "Użytkownik nie istnieje.", + "m_code": 200, + "known": ["test", "test2"], + "cat": "tech" + }, + { + "name": "Public.com", + "uri_check": "https://public.com/@{account}", + "e_code": 200, + "e_string": "\"publicId\":", + "m_string": "<title>404 - Page Not Found", + "m_code": 404, + "known": ["igor1", "david2"], + "cat": "finance" + }, + { + "name": "pypi", + "uri_check": "https://pypi.org/user/{account}/", + "e_code": 200, + "e_string": "Profile of", + "m_string": "Page Not Found (404) · PyPI", + "m_code": 404, + "known": ["dev", "pydude"], + "cat": "coding" + }, + { + "name": "QUEER PL", + "uri_check": "https://queer.pl/user/{account}", + "e_code": 200, + "e_string": "Ostatnio on-line", + "m_string": "Strona nie została znaleziona", + "m_code": 404, + "known": ["claudii", "kowalski"], + "cat": "social" + }, + { + "name": "quitter.pl", + "uri_check": "https://quitter.pl/api/v1/accounts/{account}", + "e_code": 200, + "e_string": "avatar_static", + "m_string": "\"error\":", + "m_code": 404, + "known": ["smok", "mik"], + "cat": "social", + "uri_pretty": "https://quitter.pl/users/{account}" + }, + { + "name": "Quizlet", + "uri_check": "https://quizlet.com/webapi/3.2/users/check-username?username={account}", + "e_code": 200, + "e_string": "\"identifier\":\"username_is_taken\"", + "m_string": "\"success\":true", + "m_code": 200, + "known": ["Rita426", "Muyao_531"], + "cat": "hobby", + "uri_pretty": "https://quizlet.com/user/{account}/sets", + "protection": ["cloudflare"] + }, + { + "name": "Quora", + "uri_check": "https://www.quora.com/profile/{account}", + "e_code": 200, + "e_string": "Credentials", + "m_string": "Page Not Found", + "m_code": 301, + "known": ["John-Galan-5", "Alex-Clay"], + "cat": "social" + }, + { + "name": "Raddle.me", + "uri_check": "https://raddle.me/user/{account}", + "e_code": 200, + "e_string": "sidebar__title", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["zephyr", "Archaplain"], + "cat": "social" + }, + { + "name": "RaidForums - Archive", + "uri_check": "https://rf-archive.com/users.php?s_tag={account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "[]", + "m_code": 200, + "known": ["pompompurin", "DexterM1"], + "cat": "archived" + }, + { + "name": "Rant.li", + "uri_check": "https://rant.li/{account}/", + "e_code": 200, + "e_string": "blog-title", + "m_string": "Are you sure it was ever here?", + "m_code": 404, + "known": ["baretri", "arinbasu"], + "cat": "blog" + }, + { + "name": "Rarible", + "uri_check": "https://rarible.com/marketplace/api/v4/urls/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"success\":false", + "m_code": 404, + "known": ["lokikot", "vintagemozart"], + "cat": "tech", + "uri_pretty": "https://rarible.com/{account}" + }, + { + "name": "RblxTrade", + "uri_check": "https://rblx.trade/api/v1/user/get-by-username?username={account}", + "e_code": 200, + "e_string": "\"userId\":", + "m_string": "\"success\":false", + "m_code": 400, + "known": ["webbreacher", "SonOfSevenless"], + "cat": "gaming", + "uri_pretty": "https://rblx.trade/p/{account}" + }, + { + "name": "redbubble", + "uri_check": "https://www.redbubble.com/people/{account}/shop", + "e_code": 200, + "e_string": "Shop | Redbubble", + "m_string": "This is a lost cause.", + "m_code": 404, + "known": ["john", "blue"], + "cat": "shopping" + }, + { + "name": "Reddit", + "uri_check": "https://www.reddit.com/user/{account}/about/.json", + "e_code": 200, + "e_string": "total_karma", + "m_string": "Not Found", + "m_code": 404, + "known": ["koavf", "alabasterheart"], + "cat": "social", + "uri_pretty": "https://www.reddit.com/user/{account}" + }, + { + "name": "REDGIFS", + "uri_check": "https://api.redgifs.com/v1/users/{account}", + "e_code": 200, + "e_string": "followers", + "m_string": "user account not found for ", + "m_code": 404, + "known": ["alexbreecooper", "Jose-Roberto-Rasi"], + "cat": "xx NSFW xx", + "uri_pretty": "https://www.redgifs.com/users/{account}" + }, + { + "name": "Refsheet", + "uri_check": "https://refsheet.net/{account}", + "e_code": 200, + "e_string": "og:title", + "m_string": "That's unfortunate. Where did it go?", + "m_code": 404, + "known": ["razzyaurealis", "saki"], + "cat": "hobby" + }, + { + "name": "Replit", + "uri_check": "https://replit.com/@{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "\"statusCode\":404", + "m_code": 404, + "known": ["david", "torcado"], + "cat": "coding" + }, + { + "name": "Researchgate", + "uri_check": "https://www.researchgate.net/profile/{account}", + "e_code": 200, + "e_string": " | ", + "m_string": "20+ million researchers on ResearchGate", + "m_code": 301, + "known": ["Tafara-Mwareya", "Jose-Roberto-Rasi"], + "cat": "hobby" + }, + { + "name": "resumes_actorsaccess", + "uri_check": "https://resumes.actorsaccess.com/{account}", + "e_code": 200, + "e_string": "- Resume | Actors Access", + "m_string": "File was not found on this SERVER", + "m_code": 200, + "known": ["veronicashelby", "sarahstipe"], + "cat": "social" + }, + { + "name": "Revolut", + "uri_check": "https://revolut.me/api/web-profile/{account}", + "e_code": 200, + "e_string": "\"firstName\"", + "m_string": "\"User not found\"", + "m_code": 404, + "known": ["theaswdc", "honey"], + "cat": "finance", + "uri_pretty": "https://revolut.me/{account}" + }, + { + "name": "risk.ru", + "uri_check": "https://risk.ru/people/{account}", + "e_code": 200, + "e_string": "— Люди — Risk.ru", + "m_string": "404 — Risk.ru", + "m_code": 404, + "known": ["igor1", "olga"], + "cat": "hobby" + }, + { + "name": "Roblox", + "uri_check": "https://auth.roblox.com/v1/usernames/validate?username={account}&birthday=2019-12-31T23:00:00.000Z", + "e_code": 200, + "e_string": "Username is already in use", + "m_string": "Username is valid", + "m_code": 200, + "known": ["LeetPawn", "elephant459"], + "cat": "gaming", + "uri_pretty": "https://www.roblox.com/search/users?keyword={account}" + }, + { + "name": "RoutineHub", + "uri_check": "https://routinehub.co/user/{account}", + "e_code": 200, + "e_string": "Downloads: ", + "m_string": "A community for Apple Shortcuts", + "m_code": 200, + "known": ["zachary7829", "JonathanSetzer"], + "cat": "social" + }, + { + "name": "rsi", + "uri_check": "https://robertsspaceindustries.com/citizens/{account}", + "e_code": 200, + "e_string": "CITIZEN DOSSIER", + "m_string": "404 NAVIGATING UNCHARTED TERRITORY", + "m_code": 404, + "known": ["alpHackeronee", "Quantum_Physicist"], + "cat": "gaming" + }, + { + "name": "ru_123rf", + "uri_check": "https://ru.123rf.com/profile_{account}", + "e_code": 200, + "e_string": "userID", + "m_string": "Фотобанк 123RF - Стоковые Фото, Векторы, Видеоролики. Подписка на Фото. Royalty Free контент<", + "m_code": 302, + "known": ["ruslan", "olga"], + "cat": "hobby" + }, + { + "name": "RumbleChannel", + "uri_check": "https://rumble.com/c/{account}", + "e_code": 200, + "e_string": "href=https://rumble.com/c/", + "m_string": "404 error, this page does not exist", + "m_code": 404, + "known": ["SaltyCracker", "GGreenwald"], + "cat": "political" + }, + { + "name": "RumbleUser", + "uri_check": "https://rumble.com/user/{account}", + "e_code": 200, + "e_string": "href=https://rumble.com/user/", + "m_string": "404 error, this page does not exist", + "m_code": 404, + "known": ["SimonParkes", "djmrmusic"], + "cat": "political" + }, + { + "name": "RuneScape", + "uri_check": "https://apps.runescape.com/runemetrics/profile/profile?user={account}", + "e_code": 200, + "e_string": "\"name\":", + "m_string": "\"error\":\"NO_PROFILE\"", + "m_code": 200, + "known": ["Thomas", "Wahisietel"], + "cat": "hobby", + "uri_pretty": "https://apps.runescape.com/runemetrics/app/overview/player/{account}" + }, + { + "name": "RuTracker.org", + "uri_check": "https://rutracker.org/forum/profile.php?mode=viewprofile&u={account}", + "e_code": 200, + "e_string": "Профиль пользователя", + "m_string": "Пользователь не найден", + "m_code": 200, + "known": ["Rutracker", "Feo156"], + "cat": "misc" + }, + { + "name": "Salon24", + "uri_check": "https://www.salon24.pl/u/{account}/", + "e_code": 200, + "e_string": "<span>Obserwujących</span>", + "m_string": "<title>Salon24 - Blogi, wiadomości, opinie i komentarze", + "m_code": 301, + "known": ["matuzalem", "niewiarygodne"], + "cat": "blog" + }, + { + "name": "Scammer.info", + "uri_check": "https://scammer.info/u/{account}.json", + "e_code": 200, + "e_string": "avatar_template", + "m_string": "The requested URL or resource could not be found", + "m_code": 404, + "known": ["AngelFat", "lecter"], + "cat": "misc", + "uri_pretty": "https://scammer.info/u/{account}" + }, + { + "name": "ScoutWiki", + "uri_check": "https://en.scoutwiki.org/User:{account}", + "e_code": 200, + "e_string": "NewPP limit report", + "m_string": "is not registered", + "m_code": 301, + "known": ["Mlh_nl", "Benjism89"], + "cat": "social" + }, + { + "name": "scratch", + "uri_check": "https://scratch.mit.edu/users/{account}/", + "e_code": 200, + "e_string": "on Scratch", + "m_string": "We couldn't find the page you're looking for.", + "m_code": 404, + "known": ["griffpatch"], + "cat": "coding" + }, + { + "name": "secure_donation", + "uri_check": "https://secure.donationpay.org/{account}/", + "e_code": 200, + "e_string": "| DonationPay", + "m_string": "secure.donationpay.org", + "m_code": 404, + "known": ["rareimpact", "safc"], + "cat": "finance" + }, + { + "name": "sedisp@ce", + "uri_check": "https://sedispace.com/@{account}", + "e_code": 200, + "e_string": "Membre depuis -", + "m_string": "- Page non trouvée!", + "m_code": 302, + "known": ["mamadou", "konate"], + "cat": "social" + }, + { + "name": "Seneporno", + "uri_check": "https://seneporno.com/user/{account}", + "e_code": 200, + "e_string": "Dernier Login", + "m_string": "Unexpected error! Please contact us and tell us more how you got to this page!", + "m_code": 301, + "known": ["Kalsobbc", "Boymariste"], + "cat": "xx NSFW xx" + }, + { + "name": "sentimente", + "uri_check": "https://www.sentimente.com/amp/{account}.html", + "e_code": 200, + "e_string": "Chat online with", + "m_string": "HTTP Error code: 404. Resource not found", + "m_code": 404, + "known": ["david01", "brahim01"], + "cat": "dating" + }, + { + "name": "SEOClerks", + "uri_check": "https://www.seoclerks.com/user/{account}", + "e_code": 200, + "e_string": "
", + "m_string": "SEO Marketplace", + "m_code": 302, + "known": ["Vfmseo", "gokudadon"], + "cat": "social" + }, + { + "name": "setlist.fm", + "uri_check": "https://www.setlist.fm/user/{account}", + "e_code": 200, + "e_string": "s setlist.fm | setlist.fm", + "m_string": "Sorry, the page you requested doesn't exist", + "m_code": 404, + "known": ["bendobrin", "michi"], + "cat": "music" + }, + { + "name": "Sexworker", + "uri_check": "https://sexworker.com/api/profile/{account}", + "e_code": 200, + "e_string": "profilePictureUrl", + "m_string": "This user does not exist.", + "m_code": 404, + "known": ["sakii_nightshade", "annajean2319"], + "cat": "xx NSFW xx", + "uri_pretty": "https://sexworker.com/{account}" + }, + { + "name": "SFD", + "uri_check": "https://www.sfd.pl/profile/{account}", + "e_code": 200, + "e_string": "Tematy użytkownika", + "m_string": "Brak aktywnego profilu na forum", + "m_code": 404, + "known": ["janek", "admin"], + "cat": "health" + }, + { + "name": "Shesfreaky", + "uri_check": "https://www.shesfreaky.com/profile/{account}/", + "e_code": 200, + "e_string": "s Profile - ShesFreaky", + "m_string": "", + "m_code": 302, + "known": ["tata23", "fitzsta"], + "cat": "xx NSFW xx" + }, + { + "name": "shopify", + "uri_check": "https://{account}.myshopify.com", + "e_code": 200, + "e_string": "home", + "m_string": "Sorry, this shop is currently unavailable.", + "m_code": 404, + "known": ["john", "daniel"], + "cat": "shopping", + "strip_bad_char": "." + }, + { + "name": "Showup.tv", + "uri_check": "https://showup.tv/profile/{account}", + "e_code": 200, + "e_string": "O mnie", + "m_string": "Darmowe", + "m_code": 404, + "known": ["LunaVee", "Jane_Frou"], + "cat": "xx NSFW xx", + "headers": { + "Cookie": "accept_rules=true;" + } + }, + { + "name": "shutterstock", + "uri_check": "https://www.shutterstock.com/g/{account}", + "e_code": 200, + "e_string": "| Shutterstock", + "m_string": "Well, this is unexpected...", + "m_code": 404, + "known": ["john", "bob"], + "cat": "images" + }, + { + "name": "SimplePlanes", + "uri_check": "https://www.simpleplanes.com/u/{account}", + "e_code": 200, + "e_string": "<h5>joined", + "m_string": "<title>SimplePlanes Airplanes", + "m_code": 302, + "known": ["realSavageMan", "Jundroo", "john"], + "cat": "gaming" + }, + { + "name": "skeb", + "uri_check": "https://skeb.jp/@{account}", + "e_code": 200, + "e_string": ") | Skeb", + "m_string": "Skeb - Request Box", + "m_code": 503, + "known": ["eipuru_", "sime064"], + "cat": "art" + }, + { + "name": "SlackHoles", + "uri_check": "https://slackholes.com/actor/{account}/", + "e_code": 200, + "e_string": "Pussy and Ass Sizes", + "m_string": "It looks like nothing was found at this location", + "m_code": 404, + "known": ["alexbreecooper", "roxy-raye"], + "cat": "xx NSFW xx" + }, + { + "name": "slant", + "uri_check": "https://www.slant.co/users/{account}", + "e_code": 200, + "e_string": "s Profile - Slant", + "m_string": "404 - Page Not Found - Slant", + "m_code": 404, + "known": ["bob", "john"], + "cat": "shopping" + }, + { + "name": "slides", + "uri_check": "https://slides.com/{account}", + "e_code": 200, + "e_string": "Presentations by", + "m_string": "You may have mistyped the address", + "m_code": 404, + "known": ["arunthomas"], + "cat": "social" + }, + { + "name": "Slideshare", + "uri_check": "https://www.slideshare.net/{account}", + "e_code": 200, + "e_string": "data-testid=\"report-button\"", + "m_string": "id=\"username-available\"", + "m_code": 200, + "known": ["rebeccaskeeles", "john"], + "cat": "social" + }, + { + "name": "SmashRun", + "uri_check": "https://smashrun.com/{account}/", + "e_code": 200, + "e_string": "Miles run overall", + "m_string": "no Smashrunner with the username", + "m_code": 404, + "known": ["john.young"], + "cat": "health" + }, + { + "name": "smelsy", + "uri_check": "https://www.smelsy.com/profile/{account}", + "e_code": 200, + "e_string": "Smelsy -", + "m_string": "Server Error", + "m_code": 500, + "known": ["mohamed01", "ahmed"], + "cat": "misc" + }, + { + "name": "SmugMug", + "uri_check": "https://{account}.smugmug.com", + "e_code": 200, + "e_string": "schema.org/Person", + "m_string": "schema.org/Thing", + "m_code": 404, + "known": ["wow", "jill"], + "cat": "images", + "strip_bad_char": "." + }, + { + "name": "smule", + "uri_check": "https://www.smule.com/api/profile/?handle={account}", + "e_code": 200, + "e_string": "account_id", + "m_string": "code\": 65", + "m_code": 400, + "known": ["cgrrose", "John___Anish"], + "cat": "music", + "uri_pretty": "https://www.smule.com/{account}" + }, + { + "name": "Snapchat", + "uri_check": "https://www.snapchat.com/add/{account}", + "e_code": 200, + "e_string": "is on Snapchat!", + "m_string": "NOT_FOUND", + "m_code": 200, + "known": ["djkhaled305", "mileycyrus"], + "cat": "social" + }, + { + "name": "Snipfeed", + "uri_check": "https://snipfeed.co/{account}", + "e_code": 200, + "e_string": "creatorLink", + "m_string": "Oops, you hit a dead end!", + "m_code": 404, + "known": ["mycherrycrush", "honey"], + "cat": "misc" + }, + { + "name": "soc.citizen4.eu", + "uri_check": "https://soc.citizen4.eu/profile/{account}/profile", + "e_code": 200, + "e_string": "@soc.citizen4.eu", + "m_string": "Nie znaleziono", + "m_code": 404, + "known": ["admin", "miklo"], + "cat": "social" + }, + { + "name": "social_msdn", + "uri_check": "https://social.msdn.microsoft.com/profile/{account}", + "e_code": 200, + "e_string": "Member Since", + "m_string": "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.", + "m_code": 404, + "known": ["edoardo", "microsoftfan"], + "cat": "social" + }, + { + "name": "social.bund.de", + "uri_check": "https://social.bund.de/@{account}", + "e_code": 200, + "e_string": "@social.bund.de) - social.bund.de", + "m_string": "The page you are looking for isn't here.", + "m_code": 404, + "known": ["bfdi", "bmdv"], + "cat": "social" + }, + { + "name": "sofurry", + "uri_check": "https://{account}.sofurry.com", + "e_code": 200, + "e_string": "'s Profile | SoFurry", + "m_string": "SoFurry - Error | SoFurry", + "m_code": 404, + "known": ["reeden-landshey", "tigerzero"], + "cat": "art", + "strip_bad_char": "." + }, + { + "name": "solo.to", + "uri_check": "https://solo.to/{account}", + "e_code": 200, + "e_string": "create your own page", + "m_string": "The page you're looking for isn't here.", + "m_code": 404, + "known": ["saruei", "yui"], + "cat": "social" + }, + { + "name": "SoundCloud", + "uri_check": "https://soundcloud.com/{account}", + "e_code": 200, + "e_string": "SoundCloud", + "m_string": "sounds", + "m_code": 404, + "known": ["test123"], + "cat": "music" + }, + { + "name": "Soup", + "uri_check": "https://www.soup.io/author/{account}", + "e_code": 200, + "e_string": "Author at Soup.io", + "m_string": "Soup.io - News, Sports, Entertainment, TV, Tech, Gaming", + "m_code": 301, + "known": ["john", "cristina"], + "cat": "blog" + }, + { + "name": "Sourceforge", + "uri_check": "https://sourceforge.net/user/username/{account}", + "e_code": 400, + "e_string": "\"error\": \"invalid\"", + "m_string": "\"success\": 1", + "m_code": 200, + "known": ["alice", "bob"], + "cat": "coding", + "uri_pretty": "https://sourceforge.net/u/{account}/profile", + "protection": ["cloudflare"] + }, + { + "name": "Speaker Deck", + "uri_check": "https://speakerdeck.com/{account}/", + "e_code": 200, + "e_string": ") on Speaker Deck", + "m_string": "User Not Found - Speaker Deck", + "m_code": 404, + "known": ["petecheslock", "turbosmart45"], + "cat": "social" + }, + { + "name": "speedrun", + "uri_check": "https://www.speedrun.com/user/{account}/", + "e_code": 200, + "e_string": "Runs - ", + "m_string": "speedrun.com", + "m_code": 404, + "known": ["mike", "chris"], + "cat": "gaming" + }, + { + "name": "SpiceWorks", + "uri_check": "https://community.spiceworks.com/people/{account}", + "e_code": 200, + "e_string": "Portfolio of IT Projects - Spiceworks", + "m_string": "Page Not Found", + "m_code": 404, + "known": ["spicerex", "rod-it"], + "cat": "tech" + }, + { + "name": "SPOJ", + "uri_check": "https://www.spoj.com/users/{account}/", + "e_code": 200, + "e_string": "<h3>Activity over the last year</h3>", + "m_string": "<strong>Innopolis Open 2018</strong>", + "m_code": 200, + "known": ["defrager", "xilinx"], + "cat": "coding" + }, + { + "name": "sporcle", + "uri_check": "https://www.sporcle.com/user/{account}/people/", + "e_code": 200, + "e_string": "'s Sporcle Friends", + "m_string": "This Sporcle user cannot be found.", + "m_code": 301, + "known": ["Test", "lolshortee"], + "cat": "gaming" + }, + { + "name": "Sports Tracker", + "uri_check": "https://api.sports-tracker.com/apiserver/v1/user/name/{account}", + "e_code": 200, + "e_string": "\"uuid\":", + "m_string": "\"code\":\"404\"", + "m_code": 200, + "known": ["petriola", "adisonthadat"], + "cat": "health", + "uri_pretty": "https://sports-tracker.com/view_profile/{account}" + }, + { + "name": "Spotify", + "uri_check": "https://open.spotify.com/user/{account}", + "e_code": 200, + "e_string": "content=\"profile\"", + "m_string": "Page not found", + "m_code": 404, + "known": ["kexp_official", "mkbhd"], + "cat": "music", + "protection": ["other"] + }, + { + "name": "StackOverflow", + "uri_check": "https://stackoverflow.com/users/filter?search={account}", + "e_code": 200, + "e_string": "grid--item user-info", + "m_string": "No users matched your search.", + "m_code": 200, + "known": ["vonc", "bergi"], + "cat": "coding", + "protection": ["cloudflare"] + }, + { + "name": "Statuspage", + "uri_check": "https://{account}.statuspage.io/api/v2/status.json", + "e_code": 200, + "e_string": "updated_at", + "m_string": "<html><body>You are being <a href=\"https://www.statuspage.io\">redirected</a>.</body></html>", + "m_code": 302, + "known": ["8713981tpdlg", "gaming", "coinbase"], + "cat": "tech", + "uri_pretty": "https://{account}.statuspage.io/" + }, + { + "name": "Steam", + "uri_check": "https://steamcommunity.com/id/{account}", + "e_code": 200, + "e_string": "g_rgProfileData =", + "m_string": "Steam Community :: Error", + "m_code": 200, + "known": ["test"], + "cat": "gaming" + }, + { + "name": "SteamGifts", + "uri_check": "https://www.steamgifts.com/user/{account}", + "e_code": 200, + "e_string": "\"identifier\":", + "m_string": "", + "m_code": 301, + "known": ["AbsurdPoncho", "Wolod1402"], + "cat": "gaming" + }, + { + "name": "Steemit", + "uri_check": "https://signup.steemit.com/api/check_username", + "e_code": 200, + "e_string": "\"type\":\"error_api_username_used\"", + "m_string": "\"success\":true", + "m_code": 200, + "known": ["petlover", "zalat"], + "cat": "social", + "uri_pretty": "https://steemit.com/@{account}", + "post_body": "{\"username\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + } + }, + { + "name": "steller", + "uri_check": "https://steller.co/{account}", + "e_code": 200, + "e_string": " on Steller", + "m_string": "", + "m_code": 404, + "known": ["jeannnn", "havwoods"], + "cat": "shopping" + }, + { + "name": "StoryCorps", + "uri_check": "https://archive.storycorps.org/user/{account}/", + "e_code": 200, + "e_string": "archive author", + "m_string": "We're sorry, but the page", + "m_code": 404, + "known": ["jthorstad", "paul-swider"], + "cat": "blog" + }, + { + "name": "StreamElements", + "uri_check": "https://api.streamelements.com/kappa/v2/channels/{account}", + "e_code": 200, + "e_string": "\"providerId\"", + "m_string": "error", + "m_code": 404, + "known": ["honey", "dude"], + "cat": "finance", + "uri_pretty": "https://streamelements.com/{account}" + }, + { + "name": "StreamLabs", + "uri_check": "https://streamlabs.com/api/v6/user/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "Unauthorized", + "m_code": 401, + "known": ["veibae", "cutie_cori"], + "cat": "finance", + "uri_pretty": "https://streamlabs.com/{account}/tip" + }, + { + "name": "Stripchat", + "uri_check": "https://stripchat.com/api/front/users/checkUsername?username={account}", + "e_code": 400, + "e_string": "\"error\":\"This username already exists\"", + "m_string": "[]", + "m_code": 200, + "known": ["DulcieRichard", "Katie-Mili"], + "cat": "xx NSFW xx", + "uri_pretty": "https://stripchat.com/{account}" + }, + { + "name": "Subscribestar", + "uri_check": "https://subscribestar.adult/{account}", + "e_code": 200, + "e_string": "CREATOR STATS", + "m_string": "WE ARE SORRY, THE PAGE YOU REQUESTED CANNOT BE FOUND", + "m_code": 404, + "known": ["missmoonified", "honey"], + "cat": "xx NSFW xx" + }, + { + "name": "Substack", + "uri_check": "https://substack.com/@{account}", + "e_code": 200, + "e_string": "| Substack", + "m_string": "" on Substack", + "m_code": 200, + "known": ["janellehardacre", "janeclairebradley"], + "cat": "social" + }, + { + "name": "sukebei.nyaa.si", + "uri_check": "https://sukebei.nyaa.si/user/{account}", + "e_code": 200, + "e_string": "'s torrents", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["kouhy76", "Rektr0"], + "cat": "xx NSFW xx" + }, + { + "name": "Suzuri", + "uri_check": "https://suzuri.jp/{account}", + "e_code": 200, + "e_string": "Items", + "m_string": "Push Space-key", + "m_code": 404, + "known": ["itochanxxx", "alex"], + "cat": "business" + }, + { + "name": "szmer.info", + "uri_check": "https://szmer.info/u/{account}", + "e_code": 200, + "e_string": "Joined", + "m_string": "Code: Couldn't find that username or email.", + "m_code": 200, + "known": ["przeczzpreczem", "Xavier"], + "cat": "social" + }, + { + "name": "tabletoptournament", + "uri_check": "https://www.tabletoptournaments.net/eu/player/{account}", + "e_code": 200, + "e_string": "- Player Profile | T³ - TableTop Tournaments", + "m_string": "No player with the nickname", + "m_code": 200, + "known": ["Lars01", "john"], + "cat": "misc" + }, + { + "name": "Tagged", + "uri_check": "https://secure.tagged.com/{account}", + "e_code": 200, + "e_string": "s Profile", + "m_string": "Tagged - The social network for meeting new people", + "m_code": 302, + "known": ["Samantha", "Robert"], + "cat": "social" + }, + { + "name": "TamTam", + "uri_check": "https://tamtam.chat/{account}", + "e_code": 200, + "e_string": "deeplink=tamtam://chat/", + "m_string": "ТамТам", + "m_code": 302, + "known": ["blue", "John"], + "cat": "social" + }, + { + "name": "Tanuki.pl", + "uri_check": "https://tanuki.pl/profil/{account}", + "e_code": 200, + "e_string": "Dołączył", + "m_string": "Nie ma takiego użytkownika", + "m_code": 404, + "known": ["ania", "avellana"], + "cat": "hobby" + }, + { + "name": "TAPiTAG", + "uri_check": "https://account.tapitag.co/tapitag/api/v1/{account}", + "e_code": 200, + "e_string": "User details are Showing", + "m_string": "The rf number is not valid", + "m_code": 200, + "known": ["JonathanWallace", "gearoidconsidine"], + "cat": "business", + "uri_pretty": "https://account.tapitag.co/{account}" + }, + { + "name": "Tappy", + "uri_check": "https://api.tappy.tech/api/profile/username/{account}", + "e_code": 200, + "e_string": "user_id", + "m_string": "Profile of username Not Found", + "m_code": 200, + "known": ["alexborrelli", "domocann"], + "cat": "business", + "uri_pretty": "https://www.tappy.tech/{account}" + }, + { + "name": "Taringa", + "uri_check": "https://www.taringa.net/{account}", + "e_code": 200, + "e_string": " en Taringa!", + "m_string": "Colectiva en Taringa!", + "m_code": 301, + "known": ["jocaxav", "engendrometal"], + "cat": "social" + }, + { + "name": "Taringa Archived Profile", + "uri_check": "https://archive.org/wayback/available?url=https://www.taringa.net/{account}", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}", + "m_code": 200, + "known": ["farantic", "elrubius"], + "cat": "archived", + "uri_pretty": "https://web.archive.org/web/2/taringa.net/{account}" + }, + { + "name": "taskrabbit", + "uri_check": "https://www.taskrabbit.com/profile/{account}/about", + "e_code": 200, + "e_string": "’s Profile", + "m_string": "", + "m_code": 302, + "known": ["john", "sam"], + "cat": "business" + }, + { + "name": "Teamtreehouse", + "uri_check": "https://teamtreehouse.com/{account}", + "e_code": 200, + "e_string": "Member Since", + "m_string": "Oops, Something went missing", + "m_code": 404, + "known": ["john"], + "cat": "coding" + }, + { + "name": "Teddygirls", + "uri_check": "https://teddysgirls.net/models/{account}", + "e_code": 200, + "e_string": ";s exclusive page to subscribe to her", + "m_string": "The page you were looking for doesn't exist", + "m_code": 404, + "known": ["jaycee-starr", "chubbychick94"], + "cat": "xx NSFW xx" + }, + { + "name": "Teespring", + "uri_check": "https://commerce.teespring.com/v1/stores?slug={account}", + "e_code": 200, + "e_string": "sellerToken", + "m_string": "{\"errors\":{\"store\":[\"not found\"]}}", + "m_code": 404, + "known": ["missmoonified", "honey"], + "cat": "business", + "uri_pretty": "https://{account}.creator-spring.com" + }, + { + "name": "Teknik", + "uri_check": "https://user.teknik.io/{account}", + "e_code": 200, + "e_string": "Public Key", + "m_string": "The user does not exist", + "m_code": 200, + "known": ["red", "bob"], + "cat": "tech" + }, + { + "name": "Telegram", + "uri_check": "https://t.me/{account}", + "e_code": 200, + "e_string": "tgme_page_title", + "m_string": "noindex, nofollow", + "m_code": 200, + "known": ["alice", "giovanni"], + "cat": "social" + }, + { + "name": "Teletype", + "uri_check": "https://teletype.in/@{account}", + "e_code": 200, + "e_string": "class=\"layout__content m_main blog\"", + "m_string": "class=\"error\"", + "m_code": 404, + "known": ["mart11", "anotherj"], + "cat": "blog" + }, + { + "name": "Tellonym", + "uri_check": "https://tellonym.me/{account}", + "e_code": 200, + "e_string": "on Tellonym", + "m_string": "- Honest & Anonymous Feedback", + "m_code": 404, + "known": ["jane", "jimmy"], + "cat": "social" + }, + { + "name": "Tenor", + "uri_check": "https://tenor.com/users/{account}", + "e_code": 200, + "e_string": "
", + "m_string": "We could not find the page you were looking for.", + "m_code": 404, + "known": ["gnutv", "d33jay23"], + "cat": "images" + }, + { + "name": "TETR.IO", + "uri_check": "https://ch.tetr.io/api/users/{account}", + "e_code": 200, + "e_string": "\"success\":true", + "m_string": "\"success\":false", + "m_code": 404, + "known": ["icly", "5han"], + "cat": "gaming", + "uri_pretty": "https://ch.tetr.io/u/{account}" + }, + { + "name": "TF2 Backpack Examiner", + "uri_check": "http://www.tf2items.com/id/{account}/", + "e_code": 200, + "e_string": "TF2 Backpack -", + "m_string": "", + "m_code": 302, + "known": ["test"], + "cat": "gaming" + }, + { + "name": "thegatewaypundit", + "uri_check": "https://www.thegatewaypundit.com/author/{account}/", + "e_code": 200, + "e_string": "summary", + "m_string": "Not found, error 404", + "m_code": 404, + "known": ["patti", "joehoft"], + "cat": "political" + }, + { + "name": "theguardian", + "uri_check": "https://www.theguardian.com/profile/{account}", + "e_code": 200, + "e_string": "https://www.theguardian.com/profile/", + "m_string": "Page not found | The Guardian", + "m_code": 404, + "known": ["minna-salami", "johnnaughton"], + "cat": "news" + }, + { + "name": "themeforest", + "uri_check": "https://themeforest.net/user/{account}", + "e_code": 200, + "e_string": "s profile on ThemeForest", + "m_string": "Page Not Found | ThemeForest", + "m_code": 301, + "known": ["john", "bob"], + "cat": "art" + }, + { + "name": "Thetattooforum", + "uri_check": "https://www.thetattooforum.com/members/{account}/", + "e_code": 200, + "e_string": "Insert This Gallery", + "m_string": "We’re sorry", + "m_code": 500, + "known": ["mixdop", "modifyielts"], + "cat": "art" + }, + { + "name": "thoughts", + "uri_check": "https://thoughts.com/members/{account}/", + "e_code": 200, + "e_string": "<span class=\"activity", + "m_string": "<title>Page not found", + "m_code": 404, + "known": ["myownpersonalthoughts", "danwions"], + "cat": "hobby" + }, + { + "name": "Threads.net", + "uri_check": "https://www.threads.net/@{account}", + "e_code": 200, + "e_string": ") on Threads", + "m_string": "Threads", + "m_code": 200, + "known": ["s_novoselov", "oliveralexanderdk"], + "cat": "social" + }, + { + "name": "TikTok", + "uri_check": "https://www.tiktok.com/oembed?url=https://www.tiktok.com/@{account}", + "e_code": 200, + "e_string": "author_url", + "m_string": "Something went wrong", + "m_code": 400, + "known": ["gordonramsayofficial", "pookiebear73"], + "cat": "social", + "uri_pretty": "https://www.tiktok.com/@{account}?lang=en" + }, + { + "name": "Tilde.zone (Mastodon Instance)", + "uri_check": "https://tilde.zone/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["ben", "lunatic"], + "cat": "social", + "uri_pretty": "https://tilde.zone/@{account}" + }, + { + "name": "Tinder", + "uri_check": "https://tinder.com/@{account}", + "e_code": 200, + "e_string": ") | Tinder", + "m_string": "Tinder | Dating, Make Friends & Meet New People", + "m_code": 200, + "known": ["Alexey", "peter", "john"], + "cat": "dating" + }, + { + "name": "Tindie", + "uri_check": "https://www.tindie.com/accounts/check_username/", + "e_code": 200, + "e_string": "\"errors\": [\"Username taken!\"]", + "m_string": "\"valid\": true", + "m_code": 200, + "known": ["tehrabbitt", "dekunukem"], + "cat": "shopping", + "uri_pretty": "https://www.tindie.com/stores/{account}/", + "post_body": "username={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded" + } + }, + { + "name": "Tooting.ch (Mastodon Instance)", + "uri_check": "https://tooting.ch/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["mikebeganyi", "Zugi"], + "cat": "social", + "uri_pretty": "https://tooting.ch/@{account}" + }, + { + "name": "Topcoder", + "uri_check": "https://api.topcoder.com/v5/members/{account}", + "e_code": 200, + "e_string": "\"userId\":", + "m_string": "\"message\":\"Member with handle:", + "m_code": 404, + "known": ["chinvib66", "mwakanosya"], + "cat": "coding", + "uri_pretty": "https://profiles.topcoder.com/{account}" + }, + { + "name": "toyhou.se", + "uri_check": "https://toyhou.se/{account}", + "e_code": 200, + "e_string": "display-user", + "m_string": "We can't find that page!", + "m_code": 404, + "known": ["22RII", "honey"], + "cat": "hobby" + }, + { + "name": "tradingview", + "uri_check": "https://www.tradingview.com/u/{account}/", + "e_code": 200, + "e_string": "— Trading Ideas &", + "m_string": "Page not found — TradingView", + "m_code": 404, + "known": ["liam", "john"], + "cat": "finance" + }, + { + "name": "trakt", + "uri_check": "https://trakt.tv/users/{account}", + "e_code": 200, + "e_string": "s profile - Trakt", + "m_string": "The page you were looking for doesn't exist (404) - Trakt.tv", + "m_code": 404, + "known": ["john", "anne"], + "cat": "video" + }, + { + "name": "Trello", + "uri_check": "https://trello.com/1/Members/{account}", + "e_code": 200, + "e_string": "\"id\":", + "m_string": "

Oh no! 404!

", + "m_code": 404, + "known": ["naranjasan", "jane"], + "cat": "social", + "uri_pretty": "https://trello.com/{account}", + "protection": ["other"] + }, + { + "name": "tripadvisor", + "uri_check": "https://www.tripadvisor.com/Profile/{account}", + "e_code": 200, + "e_string": "Contributions", + "m_string": "This page is on vacation", + "m_code": 404, + "known": ["john", "peter"], + "cat": "social" + }, + { + "name": "TruckersMP", + "uri_check": "https://truckersmp.com/user/search?search={account}", + "e_code": 200, + "e_string": "class=\"team-v2\"", + "m_string": "

Could not find any member using these credentials

", + "m_code": 200, + "known": ["JohnnySOBA", "Vasya_Run"], + "cat": "gaming" + }, + { + "name": "TruckersMP.Ru", + "uri_check": "https://truckersmp.ru/{account}", + "e_code": 200, + "e_string": "class=\"b-user-page\"", + "m_string": "class=\"b-handler-error-404\"", + "m_code": 404, + "known": ["ramanbardashevich", "Sanya193Rus"], + "cat": "gaming" + }, + { + "name": "Truth Social", + "uri_check": "https://truthsocial.com/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["realdonaldtrump", "ScottAdamsTruth"], + "cat": "social" + }, + { + "name": "TryHackMe", + "uri_check": "https://tryhackme.com/api/user/exist/{account}", + "e_code": 200, + "e_string": "\"success\":true", + "m_string": "\"success\":false", + "m_code": 200, + "known": ["user", "goyalyuval15"], + "cat": "tech", + "uri_pretty": "https://tryhackme.com/r/p/{account}" + }, + { + "name": "Tryst", + "uri_check": "https://tryst.link/escort/{account}", + "e_code": 200, + "e_string": "Caters to
", + "m_string": "Page not found", + "m_code": 404, + "known": ["lpatterson32", "kansasgirl69"], + "cat": "xx NSFW xx" + }, + { + "name": "tumblr", + "uri_check": "https://{account}.tumblr.com", + "e_code": 200, + "e_string": "avatar", + "m_string": "There's nothing here", + "m_code": 404, + "known": ["test", "test1"], + "cat": "images", + "strip_bad_char": "." + }, + { + "name": "tunefind", + "uri_check": "https://www.tunefind.com/api-request/account/profile?userName={account}", + "e_code": 200, + "e_string": "user-stats-engagement", + "m_string": "User not found:", + "m_code": 404, + "known": ["baywolfmusic", "mrcerny18"], + "cat": "music", + "uri_pretty": "https://www.tunefind.com/user/profile/{account}" + }, + { + "name": "Twitcasting", + "uri_check": "https://twitcasting.tv/{account}", + "e_code": 200, + "e_string": "Live History", + "m_string": "Not Found", + "m_code": 302, + "known": ["yuno___nico", "2_t0_"], + "cat": "social" + }, + { + "name": "Twitch", + "uri_check": "https://twitchtracker.com/{account}", + "e_code": 200, + "e_string": "Overview</a>", + "m_string": "<title>404 Page Not Found", + "m_code": 404, + "known": ["summit1g", "cohhcarnage"], + "cat": "gaming", + "uri_pretty": "https://twitch.tv/{account}/" + }, + { + "name": "Twitter archived profile", + "uri_check": "http://archive.org/wayback/available?url=https://twitter.com/{account}", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}", + "m_code": 200, + "known": ["jack", "dineshdsouza"], + "cat": "archived", + "uri_pretty": "https://web.archive.org/web/2/https://twitter.com/{account}" + }, + { + "name": "Twitter archived tweets", + "uri_check": "http://archive.org/wayback/available?url=https://twitter.com/{account}/status/*", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}", + "m_code": 200, + "known": ["jack", "dineshdsouza"], + "cat": "archived", + "uri_pretty": "https://web.archive.org/web/*/https://twitter.com/{account}/status/*" + }, + { + "name": "twoplustwo", + "uri_check": "https://forumserver.twoplustwo.com/ajax.php?do=usersearch", + "e_code": 200, + "e_string": "userid=", + "m_string": "", + "m_code": 404, + "known": ["redsox", "adam"], + "cat": "hobby", + "uri_pretty": "https://forumserver.twoplustwo.com/search.php", + "post_body": "securitytoken=guest&do=usersearch&fragment={account}" + }, + { + "name": "twpro", + "uri_check": "https://twpro.jp/{account}", + "e_code": 200, + "e_string": "おとなりさん", + "m_string": "をご確認ください。", + "m_code": 404, + "known": ["wsise47", "tsukiusa630"], + "cat": "social" + }, + { + "name": "Ubisoft", + "uri_check": "https://discussions.ubisoft.com/user/{account}", + "e_code": 200, + "e_string": "| Ubisoft Discussion Forums", + "m_string": "You seem to have stumbled upon a page that does not exist.", + "m_code": 404, + "known": ["fizzle_fuze", "th05324"], + "cat": "gaming" + }, + { + "name": "Udemy", + "uri_check": "https://www.udemy.com/user/{account}/", + "e_code": 200, + "e_string": "| Udemy", + "m_string": "Online Courses - Learn Anything, On Your Schedule | Udemy", + "m_code": 301, + "known": ["stephane-maarek", "lizbrown3"], + "cat": "tech" + }, + { + "name": "UEF CONNECT", + "uri_check": "https://uefconnect.uef.fi/en/{account}/", + "e_code": 200, + "e_string": "profile-page-header__info", + "m_string": "Page not found - UEFConnect", + "m_code": 404, + "known": ["heli.mutanen", "mette.heiskanen"], + "cat": "business" + }, + { + "name": "uid", + "uri_check": "http://uid.me/{account}", + "e_code": 200, + "e_string": "- uID.me", + "m_string": "Page not found", + "m_code": 404, + "known": ["john", "peter"], + "cat": "social" + }, + { + "name": "Ultimate Guitar", + "uri_check": "https://www.ultimate-guitar.com/u/{account}", + "e_code": 200, + "e_string": " | Ultimate-Guitar.Com", + "m_string": "Oops! We couldn't find that page.", + "m_code": 410, + "known": ["LYNX-Music", "Mikhailo", "MeGaDeth2314"], + "cat": "hobby" + }, + { + "name": "Ultras Diary", + "uri_check": "http://ultrasdiary.pl/u/{account}/", + "e_code": 200, + "e_string": "Mecze wyjazdowe:", + "m_string": "Ile masz wyjazdów?", + "m_code": 404, + "known": ["janek", "kowal"], + "cat": "hobby" + }, + { + "name": "Unlisted Videos", + "uri_check": "https://unlistedvideos.com/search.php?user={account}", + "e_code": 200, + "e_string": "Date submitted", + "m_string": "content=\"\"/>", + "m_code": 200, + "known": ["emudshit", "hirumaredx"], + "cat": "archived" + }, + { + "name": "unsplash", + "uri_check": "https://unsplash.com/@{account}", + "e_code": 200, + "e_string": "| Unsplash Photo Community", + "m_string": "Hm, the page you were looking for doesn't seem to exist anymore.", + "m_code": 404, + "known": ["john", "alex"], + "cat": "images" + }, + { + "name": "untappd", + "uri_check": "https://untappd.com/user/{account}/", + "e_code": 200, + "e_string": "on Untappd", + "m_string": "Untappd | 404", + "m_code": 404, + "known": ["test", "phil"], + "cat": "social" + }, + { + "name": "USA Life", + "uri_check": "https://usa.life/{account}", + "e_code": 200, + "e_string": "Please log in to like, share and comment", + "m_string": "Sorry, page not found", + "m_code": 302, + "known": ["abaynes79", "not1face"], + "cat": "social" + }, + { + "name": "utip.io", + "uri_check": "https://utip.io/creator/profile/{account}", + "e_code": 200, + "e_string": "\"userName\"", + "m_string": "Not a valid web service key", + "m_code": 404, + "known": ["honey", "chloe"], + "cat": "finance", + "uri_pretty": "https://utip.io/{account}" + }, + { + "name": "uwu.ai", + "uri_check": "https://{account}.uwu.ai/", + "e_code": 200, + "e_string": "property=\"twitter:card\"", + "m_string": "Sorry, the requested page could not be found.", + "m_code": 404, + "known": ["elite", "citruciel"], + "cat": "social", + "strip_bad_char": "." + }, + { + "name": "Uwumarket", + "uri_check": "https://uwumarket.us/collections/{account}", + "e_code": 200, + "e_string": "collection-hero__text-wrapper", + "m_string": "Page not found", + "m_code": 404, + "known": ["saki", "aicandii"], + "cat": "business" + }, + { + "name": "vapenews", + "uri_check": "https://vapenews.ru/profile/{account}", + "e_code": 200, + "e_string": "Профиль", + "m_string": "404", + "m_code": 404, + "known": ["igor", "vladimir"], + "cat": "hobby" + }, + { + "name": "Venmo", + "uri_check": "https://account.venmo.com/u/{account}", + "e_code": 200, + "e_string": "profileInfo_username__", + "m_string": "Sorry, the page you requested does not exist!", + "m_code": 404, + "known": ["John-Goolsby-8", "kate-mura"], + "cat": "finance" + }, + { + "name": "Vero", + "uri_check": "https://vero.co/{account}", + "e_code": 200, + "e_string": "name=\"username", + "m_string": "

Not Found

", + "m_code": 200, + "known": ["alex", "johnny"], + "cat": "art" + }, + { + "name": "vibilagare", + "uri_check": "https://www.vibilagare.se/users/{account}", + "e_code": 200, + "e_string": "Profil på vibilagare.se", + "m_string": "Sidan hittades inte |", + "m_code": 404, + "known": ["lars01", "sven"], + "cat": "misc" + }, + { + "name": "viddler", + "uri_check": "https://www.viddler.com/channel/{account}/", + "e_code": 200, + "e_string": "profile-details", + "m_string": "User not found", + "m_code": 404, + "known": ["GamingParodies", "planphilly"], + "cat": "video" + }, + { + "name": "VIEWBUG", + "uri_check": "https://www.viewbug.com/member/{account}", + "e_code": 200, + "e_string": "class=\"top-profile-since\"", + "m_string": "id=\"missing-this\"", + "m_code": 404, + "known": ["soulcraft", "aychmb"], + "cat": "hobby" + }, + { + "name": "Vimeo", + "uri_check": "https://vimeo.com/{account}", + "e_code": 200, + "e_string": "og:type", + "m_string": "VimeUhOh", + "m_code": 404, + "known": ["john", "alice"], + "cat": "video" + }, + { + "name": "Vine", + "uri_check": "https://vine.co/api/users/profiles/vanity/{account}", + "e_code": 200, + "e_string": "userId", + "m_string": "That record does not exist", + "m_code": 404, + "known": ["TomHarlock", "Seks"], + "cat": "video", + "uri_pretty": "https://vine.co/{account}" + }, + { + "name": "VIP-blog", + "uri_check": "http://{account}.vip-blog.com", + "e_code": 200, + "e_string": "blog : ", + "m_string": "Blog inexistant", + "m_code": 200, + "known": ["sarah", "brahim01"], + "cat": "blog", + "strip_bad_char": "." + }, + { + "name": "VirusTotal", + "uri_check": "https://www.virustotal.com/ui/users/{account}", + "e_code": 200, + "e_string": "\"data\"", + "m_string": "\"code\": \"NotFoundError\"", + "m_code": 404, + "known": ["cyber", "cybersecstu"], + "cat": "misc", + "uri_pretty": "https://www.virustotal.com/gui/user/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", + "X-Tool": "vt-ui-main", + "Accept-Ianguage": "en-US", + "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" + } + }, + { + "name": "visnesscard", + "uri_check": "https://my.visnesscard.com/Home/GetCard/{account}", + "e_code": 200, + "e_string": "end_point", + "m_string": "card_id\": 0", + "m_code": 200, + "known": ["Lisa-Gordon", "Bill-Schaeffer"], + "cat": "business", + "uri_pretty": "https://my.visnesscard.com/{account}" + }, + { + "name": "Vivino", + "uri_check": "https://www.vivino.com/users/{account}", + "e_code": 200, + "e_string": "", + "m_string": "Page not found", + "m_code": 404, + "known": ["test", "admin"], + "cat": "video" + }, + { + "name": "VK", + "uri_check": "https://vk.com/{account}", + "e_code": 200, + "e_string": "content=\"profile\"", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["ches_ches", "mike.kidlazy"], + "cat": "social", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:125.0) Gecko/20100101 Firefox/125.0" + } + }, + { + "name": "Vkl.world (Mastodon Instance)", + "uri_check": "https://vkl.world/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["king", "aniver"], + "cat": "social", + "uri_pretty": "https://vkl.world/@{account}" + }, + { + "name": "Vmst.io (Mastodon Instance)", + "uri_check": "https://vmst.io/api/v1/accounts/lookup?acct={account}", + "e_code": 200, + "e_string": "display_name", + "m_string": "Record not found", + "m_code": 404, + "known": ["vmstan", "honestdave"], + "cat": "social", + "uri_pretty": "https://vmst.io/@{account}" + }, + { + "name": "Voice123", + "uri_check": "https://voice123.com/api/providers/search/{account}", + "e_code": 200, + "e_string": "user_id", + "m_string": "[]", + "m_code": 200, + "known": ["dottovuu", "maheshsaha1992"], + "cat": "hobby", + "uri_pretty": "https://voice123.com/{account}" + }, + { + "name": "Voices.com", + "uri_check": "https://www.voices.com/profile/{account}/", + "e_code": 200, + "e_string": "Last Online

", + "m_string": "Try going back to the previous page or see below for more options", + "m_code": 301, + "known": ["briankirchoff", "bryankopta"], + "cat": "business" + }, + { + "name": "vsco", + "uri_check": "https://vsco.co/{account}/gallery", + "e_code": 200, + "e_string": "permaSubdomain", + "m_string": "\"error\":\"site_not_found\"}", + "m_code": 404, + "known": ["sam", "becca"], + "cat": "social", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + } + }, + { + "name": "W3Schools", + "uri_check": "https://pathfinder-api.kai.w3spaces.com/public-profile-api/{account}", + "e_code": 200, + "e_string": "\"userId\":", + "m_string": "\"message\":\"Profile does not exists or not visible\"", + "m_code": 404, + "known": ["test", "admin"], + "cat": "tech" + }, + { + "name": "Wakatime", + "uri_check": "https://wakatime.com/@{account}", + "e_code": 200, + "e_string": ") - WakaTime", + "m_string": "404: Not Found", + "m_code": 404, + "known": ["jake", "alimirzayev"], + "cat": "coding" + }, + { + "name": "Warmerise", + "uri_check": "https://warmerise.com/profile/{account}", + "e_code": 200, + "e_string": "<div id='profile_photo", + "m_string": "<h2>Page Not Found", + "m_code": 404, + "known": ["alfrevid", "thepro"], + "cat": "gaming" + }, + { + "name": "warriorforum", + "uri_check": "https://www.warriorforum.com/members/{account}.html", + "e_code": 200, + "e_string": "Last Activity:", + "m_string": "Oops | Warrior Forum -", + "m_code": 400, + "known": ["alex", "discrat"], + "cat": "hobby" + }, + { + "name": "watchmemore.com", + "uri_check": "https://api.watchmemore.com/api4/profile/{account}/", + "e_code": 200, + "e_string": "displayName", + "m_string": "notExists", + "m_code": 400, + "known": ["medroxy", "nodjev"], + "cat": "xx NSFW xx", + "uri_pretty": "https://watchmemore.com/{account}/" + }, + { + "name": "Watchmyfeed", + "uri_check": "https://watchmyfeed.com/{account}", + "e_code": 200, + "e_string": "SEND ME A TIP", + "m_string": "", + "m_code": 302, + "known": ["jennifer-ann", "shay-loveless"], + "cat": "xx NSFW xx" + }, + { + "name": "Wattpad", + "uri_check": "https://www.wattpad.com/api/v3/users/{account}", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "\"error_code\":", + "m_code": 400, + "known": ["newadult", "Test123"], + "cat": "social", + "uri_pretty": "https://www.wattpad.com/user/{account}", + "protection": ["other"] + }, + { + "name": "waytohey", + "uri_check": "https://waytohey.com/{account}", + "e_code": 200, + "e_string": "Send message</span>", + "m_string": "Unfortunately, this page doesn't exist.", + "m_code": 404, + "known": ["igor", "anna"], + "cat": "social" + }, + { + "name": "Weasyl", + "uri_check": "https://www.weasyl.com/~{account}", + "e_code": 200, + "e_string": "profile — Weasyl", + "m_string": "This user doesn't seem to be in our database.", + "m_code": 404, + "known": ["weasyl", "test"], + "cat": "images" + }, + { + "name": "Weblancer", + "uri_check": "https://www.weblancer.net/users/{account}/", + "e_code": 200, + "e_string": "\"user\":", + "m_string": "\"page\":\"/404\"", + "m_code": 404, + "known": ["kevin", "WebArtyom"], + "cat": "social", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + } + }, + { + "name": "weebly", + "uri_check": "https://{account}.weebly.com/", + "e_code": 200, + "e_string": "
", + "m_string": "404 - Page Not Found", + "m_code": 404, + "known": ["dave", "john"], + "cat": "misc", + "strip_bad_char": "." + }, + { + "name": "wego", + "uri_check": "https://wego.social/{account}", + "e_code": 200, + "e_string": "Following</span>", + "m_string": "Sorry, page not found!", + "m_code": 302, + "known": ["mmish2", "Lisa_M_S"], + "cat": "political" + }, + { + "name": "weheartit", + "uri_check": "https://weheartit.com/{account}", + "e_code": 200, + "e_string": " on We Heart It", + "m_string": " (404)", + "m_code": 404, + "known": ["alice", "bob"], + "cat": "social" + }, + { + "name": "weibo", + "uri_check": "https://tw.weibo.com/{account}", + "e_code": 200, + "e_string": "
", + "m_string": "Oops!", + "m_code": 200, + "known": ["chentingni", "fbb0916"], + "cat": "social" + }, + { + "name": "WeTransfer", + "uri_check": "https://{account}.wetransfer.com", + "e_code": 200, + "e_string": "workspaceName", + "m_string": "", + "m_code": 307, + "known": ["mark", "joe"], + "cat": "misc", + "strip_bad_char": "." + }, + { + "name": "Wikidot", + "uri_check": "http://www.wikidot.com/user:info/{account}", + "e_code": 200, + "e_string": "

", + "m_string": "
User does not exist.
", + "m_code": 200, + "known": ["jack", "allen"], + "cat": "social" + }, + { + "name": "Wikimapia", + "uri_check": "https://wikimapia.org/user/register/?check=username&value={account}", + "e_code": 200, + "e_string": "\"ok\":false", + "m_string": "\"ok\":true", + "m_code": 200, + "known": ["bubnilka", "Teresa"], + "cat": "social", + "uri_pretty": "https://wikimapia.org/user/tools/users_rating/?username={account}" + }, + { + "name": "Wikipedia", + "uri_check": "https://meta.wikimedia.org/w/api.php?action=query&format=json&list=globalallusers&aguprefix={account}&agulimit=100", + "e_code": 200, + "e_string": "{\"id\":", + "m_string": ":[]}}", + "m_code": 200, + "known": ["sector051", "webbreacher"], + "cat": "news", + "uri_pretty": "https://en.wikipedia.org/wiki/User:{account}" + }, + { + "name": "Wimkin-PublicProfile", + "uri_check": "https://wimkin.com/{account}", + "e_code": 200, + "e_string": "is on WIMKIN", + "m_string": " The page you are looking for cannot be found.", + "m_code": 404, + "known": ["alex", "smith", "boomer"], + "cat": "political" + }, + { + "name": "Wireclub", + "uri_check": "https://www.wireclub.com/users/{account}", + "e_code": 200, + "e_string": "Chat With", + "m_string": "People - Wireclub", + "m_code": 301, + "known": ["deae", "cheerfulsarcasm", "braydenskiresort"], + "cat": "social", + "protection": ["other"] + }, + { + "name": "Wishlistr", + "uri_check": "https://www.wishlistr.com/sign-up/?rs=checkUserName&rsargs[]={account}", + "e_code": 200, + "e_string": "+:var res = \"", + "m_string": "+:var res = parseInt(0);", + "m_code": 200, + "known": ["bodymodgrrrl", "kethistle"], + "cat": "shopping", + "uri_pretty": "https://www.wishlistr.com/{account}/" + }, + { + "name": "wordnik", + "uri_check": "https://www.wordnik.com/users/{account}", + "e_code": 200, + "e_string": "Welcome,", + "m_string": "Wordnik: Page Not Found", + "m_code": 404, + "known": ["elle", "john"], + "cat": "gaming" + }, + { + "name": "WordPress", + "uri_check": "https://profiles.wordpress.org/{account}/", + "e_code": 200, + "e_string": "user-member-since", + "m_string": "", + "m_code": 404, + "known": ["test"], + "cat": "blog" + }, + { + "name": "WordPress Support", + "uri_check": "https://wordpress.org/support/users/{account}/", + "e_code": 200, + "e_string": "s Profile | WordPress.org", + "m_string": "User not found", + "m_code": 404, + "known": ["test"], + "cat": "blog" + }, + { + "name": "Wowhead", + "uri_check": "https://www.wowhead.com/user={account}", + "e_code": 200, + "e_string": " Profile - Wowhead", + "m_string": "Error - Wowhead", + "m_code": 404, + "known": ["Ashelia", "Zizarz"], + "cat": "gaming" + }, + { + "name": "Wykop", + "uri_check": "https://wykop.pl/ludzie/{account}", + "e_code": 200, + "e_string": "Profil:", + "m_string": "Wystąpił błąd 404.", + "m_code": 404, + "known": ["test", "test2"], + "cat": "social" + }, + { + "name": "X", + "uri_check": "https://api.x.com/i/users/username_available.json?username={account}", + "e_code": 200, + "e_string": "\"reason\":\"taken\"", + "m_string": "\"reason\":\"available\"", + "m_code": 200, + "known": ["WebBreacher", "OSINT_Tactical"], + "cat": "social", + "uri_pretty": "https://x.com/{account}" + }, + { + "name": "Xakep.ru", + "uri_check": "https://xakep.ru/author/{account}/", + "e_code": 200, + "e_string": "authorBlock-avatar", + "m_string": "Страница не найдена", + "m_code": 404, + "known": ["tr3harder", "stariy"], + "cat": "tech" + }, + { + "name": "Xanga", + "uri_check": "http://{account}.xanga.com/", + "e_code": 200, + "e_string": "s Xanga Site | Just", + "m_string": "", + "m_code": 302, + "known": ["john"], + "cat": "blog", + "strip_bad_char": "." + }, + { + "name": "Xbox Gamertag", + "uri_check": "https://www.xboxgamertag.com/search/{account}", + "e_code": 200, + "e_string": "Games Played", + "m_string": "Gamertag doesn't exist", + "m_code": 404, + "known": ["Spiken8", "john"], + "cat": "gaming" + }, + { + "name": "xHamster", + "uri_check": "https://xhamster.com/users/{account}", + "e_code": 200, + "e_string": "s profile | xHamster", + "m_string": "User not found", + "m_code": 404, + "known": ["john", "tonystark85"], + "cat": "xx NSFW xx" + }, + { + "name": "Xing", + "uri_check": "https://www.xing.com/profile/{account}", + "e_code": 200, + "e_string": "", + "m_string": "Bad request", + "m_code": 400, + "known": ["john", "mumrra"], + "cat": "xx NSFW xx" + }, + { + "name": "XVIDEOS-models", + "uri_check": "https://www.xvideos.com/models/{account}", + "e_code": 200, + "e_string": "Total video views", + "m_string": "THIS PROFILE DOESN'T EXIST", + "m_code": 404, + "known": ["vvalencourt3", "tiffany-tyler"], + "cat": "xx NSFW xx" + }, + { + "name": "XVIDEOS-profiles", + "uri_check": "https://www.xvideos.com/profiles/{account}", + "e_code": 200, + "e_string": "page - XVIDEOS.COM", + "m_string": "THIS PROFILE DOESN'T EXIST", + "m_code": 404, + "known": ["nympho-nailer", "dpadicto", "bkg"], + "cat": "xx NSFW xx" + }, + { + "name": "Yahoo! JAPAN Auction", + "uri_check": "https://auctions.yahoo.co.jp/follow/list/{account}", + "e_code": 200, + "e_string": "出品者", + "m_string": "Yahoo! JAPAN IDが無効です。", + "m_code": 500, + "known": ["fltr14502003"], + "cat": "shopping" + }, + { + "name": "yapishu", + "uri_check": "https://yapishu.net/user/{account}", + "e_code": 200, + "e_string": "for_profile", + "m_string": "Not Found (#404)", + "m_code": 404, + "known": ["roman", "semion"], + "cat": "hobby" + }, + { + "name": "Yazawaj", + "uri_check": "https://www.yazawaj.com/profile/{account}", + "e_code": 200, + "e_string": "profile-description", + "m_string": "<title>nodata", + "m_code": 302, + "known": ["monya14555d", "LordMohy"], + "cat": "dating" + }, + { + "name": "YesWeHack", + "uri_check": "https://api.yeswehack.com/hunters/{account}", + "e_code": 200, + "e_string": "\"username\":", + "m_string": "\"code\":404", + "m_code": 404, + "known": ["xel", "rabhi"], + "cat": "tech", + "uri_pretty": "https://yeswehack.com/hunters/{account}" + }, + { + "name": "YouNow", + "uri_check": "https://api.younow.com/php/api/broadcast/info/user={account}", + "e_code": 200, + "e_string": "\"userId\":", + "m_string": "\"errorMsg\":\"No users found\"", + "m_code": 200, + "known": ["lydia_tan33", "RavJagz"], + "cat": "social", + "uri_pretty": "https://www.younow.com/{account}", + "protection": ["other"] + }, + { + "name": "youpic", + "uri_check": "https://youpic.com/photographer/{account}", + "e_code": 200, + "e_string": "<meta name=\"og:title\"", + "m_string": "<title>YouPic — Not Found", + "m_code": 404, + "known": ["photodude", "mike"], + "cat": "hobby" + }, + { + "name": "YouTube Channel", + "uri_check": "https://www.youtube.com/c/{account}/about", + "e_code": 200, + "e_string": "joinedDateText", + "m_string": "404 Not Found", + "m_code": 404, + "known": ["OvylarockTHR", "OSINTDojo"], + "cat": "video" + }, + { + "name": "YouTube User", + "uri_check": "https://www.youtube.com/user/{account}/about", + "e_code": 200, + "e_string": "joinedDateText", + "m_string": "<title>404 Not Found", + "m_code": 404, + "known": ["MicahHoffman", "theosintcuriousproject"], + "cat": "video" + }, + { + "name": "YouTube User2", + "uri_check": "https://www.youtube.com/@{account}", + "e_code": 200, + "e_string": "canonicalBaseUrl", + "m_string": "<title>404 Not Found", + "m_code": 404, + "known": ["tactical-systems", "CybersecurityMeg"], + "cat": "video" + }, + { + "name": "Zbiornik", + "uri_check": "https://mini.zbiornik.com/{account}", + "e_code": 200, + "e_string": "INFO", + "m_string": "", + "m_code": 301, + "known": ["69uzytkownik69", "Soif"], + "cat": "xx NSFW xx", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + } + }, + { + "name": "Zenn", + "uri_check": "https://zenn.dev/{account}", + "e_code": 200, + "e_string": "
", + "m_string": "
404
", + "m_code": 404, + "known": ["john", "blue"], + "cat": "coding" + }, + { + "name": "Zepeto", + "uri_check": "https://gw-napi.zepeto.io/profiles/{account}", + "e_code": 200, + "e_string": "zepetoId\":", + "m_string": "errorCode\":", + "m_code": 200, + "known": ["joe", "james"], + "cat": "social", + "uri_pretty": "https://web.zepeto.me/share/user/profile/{account}?language=en" + }, + { + "name": "zhihu", + "uri_check": "https://api.zhihu.com/books/people/{account}/publications?offset=0&limit=5", + "e_code": 200, + "e_string": "\"is_start\": true", + "m_string": "\"name\": \"NotFoundException\"", + "m_code": 404, + "known": ["lushnis", "kan-shu-jiao-hua-shai-tai-yang"], + "cat": "social", + "uri_pretty": "https://www.zhihu.com/people/{account}" + }, + { + "name": "Zillow", + "uri_check": "https://www.zillow.com/profile/{account}/", + "e_code": 200, + "e_string": "- Real Estate Agent", + "m_string": "", + "m_code": 302, + "known": ["JOHN-L-SULLIVAN", "Maggie-Alegria"], + "cat": "shopping" + }, + { + "name": "zmarsa.com", + "uri_check": "https://zmarsa.com/uzytkownik/{account}", + "e_code": 200, + "e_string": "Statystyki", + "m_string": "Error 404 - zMarsa.com<", + "m_code": 404, + "known": ["janek", "test"], + "cat": "xx NSFW xx" + }, + { + "name": "Znanija", + "uri_check": "https://znanija.com/graphql/ru?operationName=NickAvailability&query=query NickAvailability($nick:String!){nickAvailability(nick:$nick){isAvailable}}&variables={\"nick\":\"{account}\"}", + "e_code": 200, + "e_string": "\"isAvailable\":false", + "m_string": "\"isAvailable\":true", + "m_code": 200, + "known": ["ila817674", "abduabubakir42"], + "cat": "misc", + "protection": ["cloudflare"] + }, + { + "name": "Zomato", + "uri_check": "https://www.zomato.com/{account}/reviews", + "e_code": 200, + "e_string": "Activity</h4>", + "m_string": "This is a 404 page and we think it's fairly clear", + "m_code": 404, + "known": ["john", "jess"], + "cat": "social", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + } + }, + { + "name": "zoomitir", + "uri_check": "https://www.zoomit.ir/user/{account}/", + "e_code": 301, + "e_string": "", + "m_string": "<title>خطای ۴۰۴ - صفحه یافت نشد", + "m_code": 404, + "known": ["rezaghezi", "hosssssein"], + "cat": "tech" + } + ] +} From 01adc697382bfcb075205308289da2e4ec312fab Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Sun, 25 May 2025 17:13:50 +0300 Subject: [PATCH 04/18] uri_pretty fix --- wmn-data-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmn-data-schema.json b/wmn-data-schema.json index 8b801a7..e404d60 100644 --- a/wmn-data-schema.json +++ b/wmn-data-schema.json @@ -100,7 +100,7 @@ "pattern": "^.*$" }, "uri_pretty": { - "$id": "#root/sites/items/uri_check", + "$id": "#root/sites/items/uri_pretty", "title": "Uri_pretty", "type": "string", "default": "", From 7f0ff9ea26e0f606aff6df96b9d00fd95d73a40e Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 16:10:18 +0300 Subject: [PATCH 05/18] Skip write if data is already sorted --- .github/workflows/sort-format-json.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sort-format-json.yml b/.github/workflows/sort-format-json.yml index 37aa0c5..f014c47 100644 --- a/.github/workflows/sort-format-json.yml +++ b/.github/workflows/sort-format-json.yml @@ -64,8 +64,16 @@ jobs: data.sites = data.sites.map(site => reorderObjectKeys(site, keyOrder)); } - fs.writeFileSync(dataPath, JSON.stringify(data, null, 2)); - console.log('wmn-data.json sorted and reordered according to schema'); + // Convert to JSON with 2-space indentation + const updated = JSON.stringify(data, null, 2); + + // Only write if content has changed + if (original !== updated) { + fs.writeFileSync(dataPath, updated); + console.log('wmn-data.json updated and reordered.'); + } else { + console.log('wmn-data.json is already sorted and formatted.'); + } EOF - name: Install Prettier From 5048141bbd803add049eef12f4d6f250dedb8ae6 Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:35:53 +0300 Subject: [PATCH 06/18] Remove "Contributions since 2023-12" --- wmn-data.json | 1 - 1 file changed, 1 deletion(-) diff --git a/wmn-data.json b/wmn-data.json index ef786f1..026f177 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -16,7 +16,6 @@ "balestek", "Brenden2008", "C3n7ral051nt4g3ncy", - "Contributions since 2023-12", "degun-osint", "End of interactive chart.", "fres621", From f2d6001505712f7d36f5ef81884afd9da030e2a4 Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:40:55 +0300 Subject: [PATCH 07/18] Fix incorrect comparison logic --- .github/workflows/sort-format-json.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sort-format-json.yml b/.github/workflows/sort-format-json.yml index f014c47..6579cf9 100644 --- a/.github/workflows/sort-format-json.yml +++ b/.github/workflows/sort-format-json.yml @@ -26,7 +26,8 @@ jobs: const dataPath = 'wmn-data.json'; const schemaPath = 'wmn-data-schema.json'; - const data = JSON.parse(fs.readFileSync(dataPath, 'utf8')); + const original = fs.readFileSync(dataPath, 'utf8'); + const data = JSON.parse(original); const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8')); // ---------- Sorting Helpers ---------- From 01ca32d020d288b1ce866cdfb5861f329eccda0c Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:45:56 +0300 Subject: [PATCH 08/18] Restore "Contributions since 2023-12" for testing --- wmn-data.json | 1 + 1 file changed, 1 insertion(+) diff --git a/wmn-data.json b/wmn-data.json index 026f177..ef786f1 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -16,6 +16,7 @@ "balestek", "Brenden2008", "C3n7ral051nt4g3ncy", + "Contributions since 2023-12", "degun-osint", "End of interactive chart.", "fres621", From 7f2effc01a185cbaed8345b3d3dc65a6a2d103ed Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:54:54 +0300 Subject: [PATCH 09/18] keyOrder change --- .github/workflows/sort-format-json.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sort-format-json.yml b/.github/workflows/sort-format-json.yml index 6579cf9..cfb13e2 100644 --- a/.github/workflows/sort-format-json.yml +++ b/.github/workflows/sort-format-json.yml @@ -48,7 +48,7 @@ jobs: // ---------- Extract Schema Key Order ---------- const siteSchema = schema.properties?.sites?.items; - const keyOrder = Array.isArray(siteSchema?.required) ? siteSchema.required : []; + const keyOrder = siteSchema?.properties ? Object.keys(siteSchema.properties) : []; // ---------- Sort authors and categories ---------- if (Array.isArray(data.authors)) { From 785641dc279f9ec69359c810c716f4508f136338 Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:56:23 +0300 Subject: [PATCH 10/18] Key order testing --- wmn-data.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index ef786f1..6440b8f 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -325,13 +325,13 @@ { "name": "Aparat", "uri_check": "https://www.aparat.com/api/fa/v1/user/user/information/username/{account}", + "uri_pretty": "https://www.aparat.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "class=\"error-body\"", "m_code": 404, "known": ["abolfazlxmaster", "siahkolah"], - "cat": "social", - "uri_pretty": "https://www.aparat.com/{account}" + "cat": "social" }, { "name": "Apex Legends", From 84a119aeb0cd10aaf5f65599a4f44332b3247bdb Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 2 Jun 2025 18:56:39 +0000 Subject: [PATCH 11/18] chore: auto-sort wmn-data.json by schema --- wmn-data.json | 762 +++++++++++++++++++++++++------------------------- 1 file changed, 381 insertions(+), 381 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 6440b8f..80e0e5e 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -191,13 +191,13 @@ { "name": "Airline_Pilot_Life", "uri_check": "https://airlinepilot.life/u/{account}.json", + "uri_pretty": "https://airlinepilot.life/u/{account}", "e_code": 200, "e_string": "primary_group_name", "m_string": "he requested URL or resource could not be found.", "m_code": 404, "known": ["hannah", "addison"], - "cat": "social", - "uri_pretty": "https://airlinepilot.life/u/{account}" + "cat": "social" }, { "name": "Airliners", @@ -222,13 +222,13 @@ { "name": "Albicla", "uri_check": "https://albicla.com/{account}/post/1", + "uri_pretty": "https://albicla.com/{account}", "e_code": 500, "e_string": "500 Post tymczasowo niedostępny", "m_string": "404 Nie znaleziono użytkownika", "m_code": 200, "known": ["GazetaPolska", "GPCodziennie"], - "cat": "social", - "uri_pretty": "https://albicla.com/{account}" + "cat": "social" }, { "name": "alik", @@ -283,14 +283,14 @@ { "name": "AniList", "uri_check": "https://graphql.anilist.co", + "uri_pretty": "https://anilist.co/user/{account}", + "post_body": "{\"query\":\"query{User(name:\\\"{account}\\\"){id name}}\"}", "e_code": 200, "e_string": "\"id\":", "m_string": "Not Found", "m_code": 404, "known": ["test", "johndoe"], "cat": "social", - "uri_pretty": "https://anilist.co/user/{account}", - "post_body": "{\"query\":\"query{User(name:\\\"{account}\\\"){id name}}\"}", "headers": { "accept": "application/json", "Content-Type": "application/json" @@ -299,18 +299,18 @@ { "name": "Anime-Planet", "uri_check": "https://www.anime-planet.com/api/validation/username", + "uri_pretty": "https://www.anime-planet.com/users/{account}", + "post_body": "{\"username\":\"{account}\"}", "e_code": 400, "e_string": "\"msg\":\"Username is unavailable\"", "m_string": "\"status\":\"ok\"", "m_code": 200, "known": ["zala", "lindapearl"], "cat": "social", - "uri_pretty": "https://www.anime-planet.com/users/{account}", - "post_body": "{\"username\":\"{account}\"}", + "protection": ["cloudflare"], "headers": { "Content-Type": "application/json" - }, - "protection": ["cloudflare"] + } }, { "name": "anonup", @@ -336,13 +336,13 @@ { "name": "Apex Legends", "uri_check": "https://api.tracker.gg/api/v2/apex/standard/profile/origin/{account}", + "uri_pretty": "https://apex.tracker.gg/apex/profile/origin/{account}/overview", "e_code": 200, "e_string": "platformInfo", "m_string": "CollectorResultStatus::NotFound", "m_code": 404, "known": ["tttcheekyttt", "RollsRoyce_Dawn"], "cat": "gaming", - "uri_pretty": "https://apex.tracker.gg/apex/profile/origin/{account}/overview", "headers": { "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", "Accept-Language": "en-US,en;q=0.5", @@ -364,13 +364,13 @@ { "name": "Arch Linux GitLab", "uri_check": "https://gitlab.archlinux.org/api/v4/users?username={account}", + "uri_pretty": "https://gitlab.archlinux.org/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "[]", "m_code": 200, "known": ["morganamilo", "nl6720"], - "cat": "social", - "uri_pretty": "https://gitlab.archlinux.org/{account}" + "cat": "social" }, { "name": "Archive Of Our Own Account", @@ -385,13 +385,13 @@ { "name": "ArchWiki", "uri_check": "https://wiki.archlinux.org/api.php?action=query&format=json&list=users&ususers={account}&usprop=cancreate&formatversion=2&errorformat=html&errorsuselocal=true&uselang=en", + "uri_pretty": "https://wiki.archlinux.org/title/User:{account}", "e_code": 200, "e_string": "\"userid\":", "m_string": "\"missing\":true", "m_code": 200, "known": ["Lahwaacz", "Erus_Iluvatar"], - "cat": "social", - "uri_pretty": "https://wiki.archlinux.org/title/User:{account}" + "cat": "social" }, { "name": "Arduino", @@ -512,13 +512,13 @@ { "name": "BabyPips", "uri_check": "https://forums.babypips.com/u/{account}.json", + "uri_pretty": "https://forums.babypips.com/u/{account}/summary", "e_code": 200, "e_string": "user_badges", "m_string": "The requested URL or resource could not be found", "m_code": 404, "known": ["baemax023", "scottycarsonmvp"], - "cat": "social", - "uri_pretty": "https://forums.babypips.com/u/{account}/summary" + "cat": "social" }, { "name": "Bandcamp", @@ -533,13 +533,13 @@ { "name": "Bandlab", "uri_check": "https://www.bandlab.com/api/v1.3/users/{account}", + "uri_pretty": "https://www.bandlab.com/{account}", "e_code": 200, "e_string": "about", "m_string": "Couldn't find any matching element, it might be deleted", "m_code": 404, "known": ["rave_flawless", "delutaya"], - "cat": "music", - "uri_pretty": "https://www.bandlab.com/{account}" + "cat": "music" }, { "name": "bblog_ru", @@ -554,13 +554,13 @@ { "name": "BDSMLR", "uri_check": "https://{account}.bdsmlr.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "login", "m_string": "This blog doesn't exist.", "m_code": 200, "known": ["themunch", "shibari4all"], - "cat": "xx NSFW xx", - "strip_bad_char": "." + "cat": "xx NSFW xx" }, { "name": "bdsmsingles", @@ -666,25 +666,25 @@ { "name": "Bitbucket", "uri_check": "https://bitbucket.org/!api/2.0/repositories/{account}?page=1&pagelen=25&sort=-updated_on&q=&fields=-values.owner%2C-values.workspace", + "uri_pretty": "https://bitbucket.org/{account}/workspace/repositories/", "e_code": 200, "e_string": "full_name", "m_string": "No workspace with identifier", "m_code": 404, "known": ["LaNMaSteR53", "osamahalisawi"], - "cat": "coding", - "uri_pretty": "https://bitbucket.org/{account}/workspace/repositories/" + "cat": "coding" }, { "name": "Bitchute", "uri_check": "https://api.bitchute.com/api/beta/channel", + "uri_pretty": "https://www.bitchute.com/channel/{account}/", + "post_body": "{\"channel_id\":\"{account}\"}", "e_code": 200, "e_string": "\"channel_id\":", "m_string": "\"errors\":", "m_code": 404, "known": ["simon_parkes", "americafloats", "daindor"], "cat": "political", - "uri_pretty": "https://www.bitchute.com/channel/{account}/", - "post_body": "{\"channel_id\":\"{account}\"}", "headers": { "Content-Type": "application/json" } @@ -722,13 +722,13 @@ { "name": "Blogspot", "uri_check": "http://{account}.blogspot.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "Blogger Template Style", "m_string": "Blog not found", "m_code": 404, "known": ["test"], - "cat": "blog", - "strip_bad_char": "." + "cat": "blog" }, { "name": "Bluesky 1", @@ -743,35 +743,35 @@ { "name": "Bluesky 2", "uri_check": "https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor={account}.bsky.social", + "uri_pretty": "https://bsky.app/profile/{account}.bsky.social", "e_code": 200, "e_string": "\"handle\":\"", "m_string": "\"message\":\"Profile not found\"", "m_code": 400, "known": ["john", "mark"], - "cat": "social", - "uri_pretty": "https://bsky.app/profile/{account}.bsky.social" + "cat": "social" }, { "name": "BoardGameGeek", "uri_check": "https://api.geekdo.com/api/accounts/validate/username?username={account}", + "uri_pretty": "https://boardgamegeek.com/user/{account}", "e_code": 200, "e_string": "\"message\":\"Sorry, this username is already taken.\"", "m_string": "\"isValid\":true", "m_code": 200, "known": ["ntrautner", "Petdoc"], - "cat": "gaming", - "uri_pretty": "https://boardgamegeek.com/user/{account}" + "cat": "gaming" }, { "name": "BodyBuilding.com", "uri_check": "http://api.bodybuilding.com/api-proxy/bbc/get?slug={account}", + "uri_pretty": "http://bodyspace.bodybuilding.com/{account}/", "e_code": 200, "e_string": "username", "m_string": "data\" :\"\"", "m_code": 200, "known": ["mike"], - "cat": "health", - "uri_pretty": "http://bodyspace.bodybuilding.com/{account}/" + "cat": "health" }, { "name": "bonga_cams", @@ -816,13 +816,13 @@ { "name": "Booth", "uri_check": "https://{account}.booth.pm/", + "strip_bad_char": ".", "e_code": 200, "e_string": "- BOOTH", "m_string": "BOOTH - The International Indie Art Marketplace", "m_code": 302, "known": ["monoliorder", "hasya"], - "cat": "shopping", - "strip_bad_char": "." + "cat": "shopping" }, { "name": "Brickset", @@ -837,13 +837,13 @@ { "name": "BugCrowd", "uri_check": "https://bugcrowd.com/{account}/profile_widgets", + "uri_pretty": "https://bugcrowd.com/{account}", "e_code": 200, "e_string": "\"widgets\":", "m_string": "class='cc-error-page__msg'", "m_code": 404, "known": ["lopseg", "Ebrietas"], - "cat": "tech", - "uri_pretty": "https://bugcrowd.com/{account}" + "cat": "tech" }, { "name": "Bunpro", @@ -858,14 +858,14 @@ { "name": "Buy Me a Coffee", "uri_check": "https://app.buymeacoffee.com/api/v1/check_availability", + "uri_pretty": "https://buymeacoffee.com/{account}", + "post_body": "{\"project_slug\":\"{account}\"}", "e_code": 200, "e_string": "\"available\":false", "m_string": "\"available\":true", "m_code": 200, "known": ["freebird", "robinwong"], "cat": "finance", - "uri_pretty": "https://buymeacoffee.com/{account}", - "post_body": "{\"project_slug\":\"{account}\"}", "protection": ["cloudflare"], "headers": { "Content-Type": "application/json" @@ -914,13 +914,13 @@ { "name": "Carbonmade", "uri_check": "https://{account}.carbonmade.com/", + "strip_bad_char": ".", "e_code": 200, "e_string": "s online portfolio", "m_string": "site not found", "m_code": 404, "known": ["jenny", "bob"], - "cat": "hobby", - "strip_bad_char": "." + "cat": "hobby" }, { "name": "Career.habr", @@ -935,13 +935,13 @@ { "name": "carrd.co", "uri_check": "https://{account}.carrd.co", + "strip_bad_char": ".", "e_code": 200, "e_string": "( Made with Carrd )", "m_string": "Sorry, the requested page could not be found.", "m_code": 404, "known": ["liam", "peter"], - "cat": "business", - "strip_bad_char": "." + "cat": "business" }, { "name": "CastingCallClub", @@ -976,24 +976,24 @@ { "name": "Cent", "uri_check": "https://beta.cent.co/data/user/profile?userHandles={account}", + "uri_pretty": "https://beta.cent.co/{account}/", "e_code": 200, "e_string": "\"id\":", "m_string": "\"results\":[]", "m_code": 200, "known": ["alex", "ben"], - "cat": "social", - "uri_pretty": "https://beta.cent.co/{account}/" + "cat": "social" }, { "name": "cfx.re", "uri_check": "https://forum.cfx.re/u/{account}.json", + "uri_pretty": "https://forum.cfx.re/u/{account}/summary", "e_code": 200, "e_string": "created_at", "m_string": "The requested URL or resource could not be found.", "m_code": 404, "known": ["masiball", "anel_hadzyc", "kiminaze"], - "cat": "gaming", - "uri_pretty": "https://forum.cfx.re/u/{account}/summary" + "cat": "gaming" }, { "name": "championat", @@ -1048,13 +1048,13 @@ { "name": "Chess.com", "uri_check": "https://api.chess.com/pub/player/{account}", + "uri_pretty": "https://www.chess.com/member/{account}", "e_code": 200, "e_string": "player_id", "m_string": "not found", "m_code": 404, "known": ["john", "peter", "josh"], - "cat": "gaming", - "uri_pretty": "https://www.chess.com/member/{account}" + "cat": "gaming" }, { "name": "Chomikuj.pl", @@ -1079,13 +1079,13 @@ { "name": "Cloudflare", "uri_check": "https://community.cloudflare.com/u/{account}/card.json", + "uri_pretty": "https://community.cloudflare.com/u/{account}", "e_code": 200, "e_string": "user_avatar", "m_string": "The requested URL or resource could not be found", "m_code": 404, "known": ["carl", "morten"], - "cat": "tech", - "uri_pretty": "https://community.cloudflare.com/u/{account}" + "cat": "tech" }, { "name": "Clubhouse", @@ -1160,13 +1160,13 @@ { "name": "Codeforces", "uri_check": "https://codeforces.com/api/user.info?handles={account}", + "uri_pretty": "https://codeforces.com/profile/{account}", "e_code": 200, "e_string": "\"status\":\"OK\"", "m_string": "\"status\":\"FAILED\"", "m_code": 400, "known": ["Abdul01", "Abdullah"], - "cat": "coding", - "uri_pretty": "https://codeforces.com/profile/{account}" + "cat": "coding" }, { "name": "codementor", @@ -1241,13 +1241,13 @@ { "name": "Coub", "uri_check": "https://coub.com/api/v2/channels/{account}", + "uri_pretty": "https://coub.com/{account}/", "e_code": 200, "e_string": "\"user_id\":", "m_string": "\"error\":\"Unhandled exception\"", "m_code": 404, "known": ["djantidog", "mcnorington"], - "cat": "social", - "uri_pretty": "https://coub.com/{account}/" + "cat": "social" }, { "name": "Coub", @@ -1295,13 +1295,13 @@ { "name": "crevado", "uri_check": "https://{account}.crevado.com/", + "strip_bad_char": ".", "e_code": 200, "e_string": "Portfolio", "m_string": "Site not found :-(", "m_code": 404, "known": ["john", "red"], - "cat": "images", - "strip_bad_char": "." + "cat": "images" }, { "name": "Crowdin", @@ -1416,13 +1416,13 @@ { "name": "destream", "uri_check": "https://api.destream.net/siteapi/v2/live/details/{account}", + "uri_pretty": "https://destream.net/live/{account}", "e_code": 200, "e_string": "\"userName\":", "m_string": "\"errorMessage\":\"Error happened.\"", "m_code": 400, "known": ["skromnuy_fifa", "wudjer"], - "cat": "finance", - "uri_pretty": "https://destream.net/live/{account}" + "cat": "finance" }, { "name": "Destructoid", @@ -1508,46 +1508,46 @@ { "name": "diigo", "uri_check": "https://www.diigo.com/interact_api/load_profile_info?name={account}", + "uri_pretty": "https://www.diigo.com/profile/{account}", "e_code": 200, "e_string": "regist_at", "m_string": "{}", "m_code": 200, "known": ["whoami", "johndoe"], - "cat": "images", - "uri_pretty": "https://www.diigo.com/profile/{account}" + "cat": "images" }, { "name": "Discogs", "uri_check": "https://api.discogs.com/users/{account}", + "uri_pretty": "https://www.discogs.com/user/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "\"message\": \"User does not exist or may have been deleted.\"", "m_code": 404, "known": ["damiano84", "bernadette69"], - "cat": "music", - "uri_pretty": "https://www.discogs.com/user/{account}" + "cat": "music" }, { "name": "Discord Invites", "uri_check": "https://discord.com/api/v9/invites/{account}?with_counts=true&with_expiration=true", + "uri_pretty": "https://discord.com/invite/{account}", "e_code": 200, "e_string": "\"channel\":", "m_string": "\"message\": \"Unknown Invite\"", "m_code": 404, "known": ["test", "web"], - "cat": "social", - "uri_pretty": "https://discord.com/invite/{account}" + "cat": "social" }, { "name": "Discord Users", "uri_check": "https://discord.com/api/v9/unique-username/username-attempt-unauthed", + "post_body": "{\"username\": \"{account}\"}", "e_code": 200, "e_string": "\"taken\":true", "m_string": "\"taken\":false", "m_code": 200, "known": ["test", "web"], "cat": "social", - "post_body": "{\"username\": \"{account}\"}", "headers": { "Content-Type": "application/json" } @@ -1555,13 +1555,13 @@ { "name": "Discourse", "uri_check": "https://meta.discourse.org/u/{account}/summary.json", + "uri_pretty": "https://meta.discourse.org/u/{account}", "e_code": 200, "e_string": "topics", "m_string": "The requested URL or resource could not be found.", "m_code": 404, "known": ["ndalliard", "gerhard"], - "cat": "misc", - "uri_pretty": "https://meta.discourse.org/u/{account}" + "cat": "misc" }, { "name": "discuss.elastic.co", @@ -1576,13 +1576,13 @@ { "name": "Disqus", "uri_check": "https://disqus.com/api/3.0/users/details?user=username:{account}&api_key=E8Uh5l5fHZ6gD8U3KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F", + "uri_pretty": "https://disqus.com/by/{account}/", "e_code": 200, "e_string": "\"code\":0", "m_string": "\"code\":2", "m_code": 400, "known": ["Aristotelian1", "50calibercat"], - "cat": "social", - "uri_pretty": "https://disqus.com/by/{account}/" + "cat": "social" }, { "name": "Dissenter", @@ -1597,24 +1597,24 @@ { "name": "Docker Hub Organizations", "uri_check": "https://hub.docker.com/v2/orgs/{account}/", + "uri_pretty": "https://hub.docker.com/u/{account}", "e_code": 200, "e_string": "\"uuid\":", "m_string": "\"orgname\":[\"", "m_code": 404, "known": ["bitnami", "tensorflow"], - "cat": "coding", - "uri_pretty": "https://hub.docker.com/u/{account}" + "cat": "coding" }, { "name": "Docker Hub Users", "uri_check": "https://hub.docker.com/v2/users/{account}/", + "uri_pretty": "https://hub.docker.com/u/{account}", "e_code": 200, "e_string": "\"uuid\":", "m_string": "\"message\":\"User not found\"", "m_code": 404, "known": ["dannapierskitoptal", "torvalds"], - "cat": "coding", - "uri_pretty": "https://hub.docker.com/u/{account}" + "cat": "coding" }, { "name": "Dojoverse", @@ -1629,36 +1629,36 @@ { "name": "donate.stream", "uri_check": "https://donate.stream/api/v1/streamer.get?path={account}&app=9f4e793cec820015d511dbc77b20c5c1", + "uri_pretty": "https://donate.stream/{account}", "e_code": 200, "e_string": "\"response\":", "m_string": "\"message\":\"Not found\"", "m_code": 200, "known": ["requiemzxc_komaru", "hexttr"], "cat": "finance", - "uri_pretty": "https://donate.stream/{account}", "protection": ["cloudflare"] }, { "name": "Donation Alerts", "uri_check": "https://www.donationalerts.com/api/v1/user/{account}/donationpagesettings", + "uri_pretty": "https://www.donationalerts.com/r/{account}", "e_code": 200, "e_string": "\"data\":", "m_string": "\"success\":false", "m_code": 202, "known": ["gorou", "saku"], - "cat": "finance", - "uri_pretty": "https://www.donationalerts.com/r/{account}" + "cat": "finance" }, { "name": "Donatty", "uri_check": "https://api.donatty.com/users/find/{account}", + "uri_pretty": "https://donatty.com/{account}", "e_code": 200, "e_string": "\"response\":", "m_string": "\"error\":\"internal error\"", "m_code": 404, "known": ["takaisekai", "fordmac"], "cat": "business", - "uri_pretty": "https://donatty.com/{account}", "protection": ["cloudflare"] }, { @@ -1724,13 +1724,13 @@ { "name": "Duolingo", "uri_check": "https://www.duolingo.com/2017-06-30/users?username={account}&_=1628308619574", + "uri_pretty": "https://www.duolingo.com/profile/{account}", "e_code": 200, "e_string": "joinedClassroomIds", "m_string": "\"users\" : []", "m_code": 200, "known": ["sdfsdf", "duolingo"], - "cat": "hobby", - "uri_pretty": "https://www.duolingo.com/profile/{account}" + "cat": "hobby" }, { "name": "easyen", @@ -1765,14 +1765,14 @@ { "name": "Electrobel", "uri_check": "https://be.electrobel.org/register.ajax", + "uri_pretty": "https://be.electrobel.org/{account}", + "post_body": "action=checkUsername&username={account}", "e_code": 200, "e_string": "\"html\":\"Username existsPlease choose another\"", "m_string": "\"html\":\"Name is available\"", "m_code": 200, "known": ["wixel", "Gloomer"], "cat": "social", - "uri_pretty": "https://be.electrobel.org/{account}", - "post_body": "action=checkUsername&username={account}", "headers": { "Content-Type": "application/x-www-form-urlencoded" } @@ -1820,13 +1820,13 @@ { "name": "Expressional.social (Mastodon Instance)", "uri_check": "https://expressional.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://expressional.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["jippi", "poolesen"], - "cat": "social", - "uri_pretty": "https://expressional.social/@{account}" + "cat": "social" }, { "name": "Eyeem", @@ -1871,13 +1871,13 @@ { "name": "FACEIT", "uri_check": "https://www.faceit.com/api/users/v1/nicknames/{account}", + "uri_pretty": "https://www.faceit.com/en/players/{account}", "e_code": 200, "e_string": "\"result\":\"OK\"", "m_string": "\"message\":\"user not found\"", "m_code": 404, "known": ["s1mple", "w0nderful"], - "cat": "gaming", - "uri_pretty": "https://www.faceit.com/en/players/{account}" + "cat": "gaming" }, { "name": "Faktopedia", @@ -1892,13 +1892,13 @@ { "name": "FanCentro", "uri_check": "https://fancentro.com/api/profile.get?profileAlias={account}&limit=1", + "uri_pretty": "https://fancentro.com/{account}/", "e_code": 200, "e_string": "\"status\":true", "m_string": "\"status\":false", "m_code": 200, "known": ["medroxy", "miaaamador"], - "cat": "xx NSFW xx", - "uri_pretty": "https://fancentro.com/{account}/" + "cat": "xx NSFW xx" }, { "name": "Fandom", @@ -1923,13 +1923,13 @@ { "name": "fansly", "uri_check": "https://apiv2.fansly.com/api/v1/account?usernames={account}", + "uri_pretty": "https://fansly.com/{account}/posts", "e_code": 200, "e_string": "username", "m_string": "response: []", "m_code": 200, "known": ["Mikomin", "test"], - "cat": "xx NSFW xx", - "uri_pretty": "https://fansly.com/{account}/posts" + "cat": "xx NSFW xx" }, { "name": "Fark", @@ -1954,13 +1954,13 @@ { "name": "Federated.press (Mastodon Instance)", "uri_check": "https://federated.press/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://federated.press/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["wood", "cliffcheney"], - "cat": "social", - "uri_pretty": "https://federated.press/@{account}" + "cat": "social" }, { "name": "figma", @@ -2076,13 +2076,13 @@ { "name": "Folkd", "uri_check": "https://www.folkd.com/?app=core&module=system&controller=ajax&do=usernameExists&input={account}", + "uri_pretty": "https://www.folkd.com/search/?q={account}&quick=1&type=core_members", "e_code": 200, "e_string": "\"message\":\"That display name is in use by another member.\"", "m_string": "\"result\":\"ok\"", "m_code": 200, "known": ["smartplayapk", "abdulmerfantz"], "cat": "social", - "uri_pretty": "https://www.folkd.com/search/?q={account}&quick=1&type=core_members", "protection": ["other"] }, { @@ -2108,35 +2108,35 @@ { "name": "Fosstodon.org (Mastodon Instance)", "uri_check": "https://fosstodon.org/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://fosstodon.org/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["linux", "Phil35"], - "cat": "social", - "uri_pretty": "https://fosstodon.org/@{account}" + "cat": "social" }, { "name": "fotka", "uri_check": "https://api.fotka.com/v2/user/dataStatic?login={account}", + "uri_pretty": "https://fotka.com/profil/{account}", "e_code": 200, "e_string": "profil", "m_string": "ERROR", "m_code": 200, "known": ["test", "test2"], - "cat": "social", - "uri_pretty": "https://fotka.com/profil/{account}" + "cat": "social" }, { "name": "Fotolog Archived Profile", "uri_check": "https://archive.org/wayback/available?url=https://www.fotolog.com/{account}", + "uri_pretty": "https://web.archive.org/web/2/fotolog.com/{account}", "e_code": 200, "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, "known": ["x_zudex_x", "angelito"], - "cat": "archived", - "uri_pretty": "https://web.archive.org/web/2/fotolog.com/{account}" + "cat": "archived" }, { "name": "Foursquare", @@ -2151,13 +2151,13 @@ { "name": "freeCodeCamp", "uri_check": "https://api.freecodecamp.org/api/users/get-public-profile?username={account}", + "uri_pretty": "https://www.freecodecamp.org/{account}", "e_code": 200, "e_string": "\"user\":", "m_string": "\"error\":\"User not found\"", "m_code": 404, "known": ["zaira", "CaesarSage"], "cat": "coding", - "uri_pretty": "https://www.freecodecamp.org/{account}", "protection": ["cloudflare"] }, { @@ -2205,13 +2205,13 @@ { "name": "Freelancer", "uri_check": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={account}&compact=true", + "uri_pretty": "https://www.freelancer.com/u/{account}", "e_code": 200, "e_string": "\"users\":{\"", "m_string": "\"users\":{}", "m_code": 200, "known": ["desiaunty", "creatvmind"], - "cat": "business", - "uri_pretty": "https://www.freelancer.com/u/{account}" + "cat": "business" }, { "name": "freesound", @@ -2266,24 +2266,24 @@ { "name": "Gab", "uri_check": "https://gab.com/api/v1/account_by_username/{account}", + "uri_pretty": "https://gab.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "\"error\":\"Record not found\"", "m_code": 404, "known": ["RealMarjorieGreene", "LaurenBoebert"], - "cat": "political", - "uri_pretty": "https://gab.com/{account}" + "cat": "political" }, { "name": "Game Jolt", "uri_check": "https://gamejolt.com/site-api/web/profile/@{account}/", + "uri_pretty": "https://gamejolt.com/@{account}", "e_code": 200, "e_string": "created_on", "m_string": "null,", "m_code": 404, "known": ["nilllzz", "KorbloxTeams"], - "cat": "gaming", - "uri_pretty": "https://gamejolt.com/@{account}" + "cat": "gaming" }, { "name": "game_debate", @@ -2308,13 +2308,13 @@ { "name": "Gamespot", "uri_check": "https://www.gamespot.com/profile/{account}/summary/activity/?ajax", + "uri_pretty": "https://www.gamespot.com/profile/{account}/", "e_code": 200, "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, "known": ["alice", "bob"], "cat": "gaming", - "uri_pretty": "https://www.gamespot.com/profile/{account}/", "protection": ["cloudflare"] }, { @@ -2330,24 +2330,24 @@ { "name": "GDBrowser", "uri_check": "https://gdbrowser.com/api/profile/{account}", + "uri_pretty": "https://gdbrowser.com/u/{account}", "e_code": 200, "e_string": "\"accountID\":", "m_string": "-1", "m_code": 500, "known": ["SorkoPiko", "Subwoofer"], - "cat": "gaming", - "uri_pretty": "https://gdbrowser.com/u/{account}" + "cat": "gaming" }, { "name": "GeeksForGeeks", "uri_check": "https://authapi.geeksforgeeks.org/api-get/user-profile-info/?handle={account}", + "uri_pretty": "https://www.geeksforgeeks.org/user/{account}/", "e_code": 200, "e_string": "\"message\":\"data retrieved successfully\"", "m_string": "\"message\":\"User not found!\"", "m_code": 400, "known": ["nath_789", "harshrajsinghsiwan", "igovindindia"], - "cat": "coding", - "uri_pretty": "https://www.geeksforgeeks.org/user/{account}/" + "cat": "coding" }, { "name": "Geocaching", @@ -2372,13 +2372,13 @@ { "name": "Gettr", "uri_check": "https://api.gettr.com/s/user/{account}/exist", + "uri_pretty": "https://gettr.com/user/{account}", "e_code": 200, "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, "known": ["gettr", "support"], - "cat": "social", - "uri_pretty": "https://gettr.com/user/{account}" + "cat": "social" }, { "name": "Gigapan", @@ -2434,13 +2434,13 @@ { "name": "GitHub", "uri_check": "https://api.github.com/users/{account}", + "uri_pretty": "https://github.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "\"status\": \"404\"", "m_code": 404, "known": ["test", "WebBreacher"], "cat": "coding", - "uri_pretty": "https://github.com/{account}", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" } @@ -2448,13 +2448,13 @@ { "name": "GitHub Gists", "uri_check": "https://api.github.com/users/{account}/gists", + "uri_pretty": "https://gits.github.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "\"status\": \"404\"", "m_code": 404, "known": ["teymurgahramanov", "WebBreacher"], "cat": "coding", - "uri_pretty": "https://gits.github.com/{account}", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" } @@ -2462,13 +2462,13 @@ { "name": "GitLab", "uri_check": "https://gitlab.com/users/{account}/exists", + "uri_pretty": "https://gitlab.com/{account}", "e_code": 200, "e_string": "\"exists\":true", "m_string": "\"exists\":false", "m_code": 200, "known": ["skennedy", "KennBro"], - "cat": "coding", - "uri_pretty": "https://gitlab.com/{account}" + "cat": "coding" }, { "name": "gloria.tv", @@ -2483,13 +2483,13 @@ { "name": "GNOME GitLab", "uri_check": "https://gitlab.gnome.org/api/v4/users?username={account}", + "uri_pretty": "https://gitlab.gnome.org/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "[]", "m_code": 200, "known": ["MystikNinja", "0xMRTT"], "cat": "coding", - "uri_pretty": "https://gitlab.gnome.org/{account}", "protection": ["other"] }, { @@ -2545,24 +2545,24 @@ { "name": "Graphics.social (Mastodon Instance)", "uri_check": "https://graphics.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://graphics.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["brian", "moonpotato"], - "cat": "social", - "uri_pretty": "https://graphics.social/@{account}" + "cat": "social" }, { "name": "Gravatar", "uri_check": "https://en.gravatar.com/{account}.json", + "uri_pretty": "https://en.gravatar.com/{account}", "e_code": 200, "e_string": "entry", "m_string": "User not found", "m_code": 404, "known": ["test"], - "cat": "images", - "uri_pretty": "https://en.gravatar.com/{account}" + "cat": "images" }, { "name": "GTAinside.com", @@ -2577,112 +2577,112 @@ { "name": "gumroad", "uri_check": "https://{account}.gumroad.com/", + "strip_bad_char": ".", "e_code": 200, "e_string": "s profile picture", "m_string": "Page not found", "m_code": 404, "known": ["ellietalksmoney", "reallyniceimages"], - "cat": "shopping", - "strip_bad_char": "." + "cat": "shopping" }, { "name": "Habbo.com", "uri_check": " https://www.habbo.com/api/public/users?name={account}", + "uri_pretty": " https://www.habbo.com/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["john", "michelle"], - "cat": "gaming", - "uri_pretty": " https://www.habbo.com/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.com.br", "uri_check": "https://www.habbo.com.br/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.com.br/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["jeaniucas", "cellao"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.com.br/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.com.tr", "uri_check": "https://www.habbo.com.tr/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.com.tr/profile/{account}", "e_code": 200, "e_string": "currentLevel", "m_string": "error\": \"not-found", "m_code": 404, "known": ["fatma9180", "elektrikci"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.com.tr/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.de", "uri_check": "https://www.habbo.de/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.de/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["klaus", "angelinaa"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.de/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.es", "uri_check": " https://www.habbo.es/api/public/users?name={account}", + "uri_pretty": " https://www.habbo.es/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "not-found", "m_code": 404, "known": ["juan", "michelle"], - "cat": "gaming", - "uri_pretty": " https://www.habbo.es/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.fi", "uri_check": "https://www.habbo.fi/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.fi/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["cucumberz", "Yasline"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.fi/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.fr", "uri_check": "https://www.habbo.fr/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.fr/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["2006", "sicilienne"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.fr/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.it", "uri_check": "https://www.habbo.it/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.it/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["samsebek", "papablu"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.it/profile/{account}" + "cat": "gaming" }, { "name": "Habbo.nl", "uri_check": "https://www.habbo.nl/api/public/users?name={account}", + "uri_pretty": "https://www.habbo.nl/profile/{account}", "e_code": 200, "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, "known": ["XOTWOD.xx", "xoSorxo"], - "cat": "gaming", - "uri_pretty": "https://www.habbo.nl/profile/{account}" + "cat": "gaming" }, { "name": "Habr", @@ -2737,13 +2737,13 @@ { "name": "Hackaday.io", "uri_check": "https://hackaday.io/{account}", + "strip_bad_char": "-", "e_code": 200, "e_string": "class=\"following-container \"", "m_string": "class=\"error-nav\"", "m_code": 404, "known": ["john", "adam"], - "cat": "hobby", - "strip_bad_char": "-" + "cat": "hobby" }, { "name": "Hacker News", @@ -2768,25 +2768,25 @@ { "name": "Hackernoon", "uri_check": "https://hackernoon.com/_next/data/foL6JC7ro2FEEMD-gMKgQ/u/{account}.json", + "uri_pretty": "https://hackernoon.com/u/{account}", "e_code": 200, "e_string": "\"profile\"", "m_string": "__N_REDIRECT", "m_code": 200, "known": ["john", "alex"], - "cat": "tech", - "uri_pretty": "https://hackernoon.com/u/{account}" + "cat": "tech" }, { "name": "HackerOne", "uri_check": "https://hackerone.com/graphql", + "uri_pretty": "https://hackerone.com/{account}", + "post_body": "{\"query\":\"query($url: URI!) {\\n resource(url: $url) {\\n ... on User { username }\\n }\\n }\",\"variables\":{\"url\":\"{account}\"}}", "e_code": 200, "e_string": "\"username\":", "m_string": "\"type\":\"NOT_FOUND\"", "m_code": 200, "known": ["born2hack", "godiego"], "cat": "tech", - "uri_pretty": "https://hackerone.com/{account}", - "post_body": "{\"query\":\"query($url: URI!) {\\n resource(url: $url) {\\n ... on User { username }\\n }\\n }\",\"variables\":{\"url\":\"{account}\"}}", "headers": { "Content-Type": "application/json" } @@ -2794,26 +2794,26 @@ { "name": "HackerRank", "uri_check": "https://www.hackerrank.com/rest/contests/master/hackers/{account}/profile", + "uri_pretty": "https://www.hackerrank.com/profile/{account}", "e_code": 200, "e_string": "\"model\":", "m_string": "\"error\":\"Not Found\"", "m_code": 404, "known": ["FMota", "adepanges"], "cat": "tech", - "uri_pretty": "https://www.hackerrank.com/profile/{account}", "protection": ["other"] }, { "name": "hackrocks", "uri_check": "https://hackrocks.com/api/users/profile", + "uri_pretty": "https://hackrocks.com/id/{account}", + "post_body": "{\"username\":\"{account}\"}", "e_code": 200, "e_string": "\"username\":", "m_string": "\"error_data\":\"USER_NOT_FOUND\"", "m_code": 404, "known": ["mespejo", "NeoWaveCode"], "cat": "tech", - "uri_pretty": "https://hackrocks.com/id/{account}", - "post_body": "{\"username\":\"{account}\"}", "headers": { "Accept": "application/json, text/plain, */*", "Content-Type": "application/json" @@ -2852,13 +2852,13 @@ { "name": "Hcommons.social (Mastodon Instance)", "uri_check": "https://hcommons.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://hcommons.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["hello", "iuulaio"], - "cat": "social", - "uri_pretty": "https://hcommons.social/@{account}" + "cat": "social" }, { "name": "Heylink", @@ -2893,13 +2893,13 @@ { "name": "Historians.social (Mastodon Instance)", "uri_check": "https://historians.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://historians.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["lizcovart", "Ejoiner"], - "cat": "social", - "uri_pretty": "https://historians.social/@{account}" + "cat": "social" }, { "name": "Holopin", @@ -2924,13 +2924,13 @@ { "name": "Hometech.social (Mastodon Instance)", "uri_check": "https://hometech.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://hometech.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["one4ll", "seth"], - "cat": "social", - "uri_pretty": "https://hometech.social/@{account}" + "cat": "social" }, { "name": "hoo.be", @@ -2945,13 +2945,13 @@ { "name": "Hostux.social (Mastodon Instance)", "uri_check": "https://hostux.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://hostux.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["alarig", "rsmela"], - "cat": "social", - "uri_pretty": "https://hostux.social/@{account}" + "cat": "social" }, { "name": "Houzz", @@ -3106,13 +3106,13 @@ { "name": "imgur", "uri_check": "https://api.imgur.com/account/v1/accounts/{account}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions", + "uri_pretty": "https://imgur.com/user/{account}/about", "e_code": 200, "e_string": "created_at", "m_string": "unable to find account", "m_code": 404, "known": ["OliverClothesoff70", "DadOnTheInternet"], - "cat": "images", - "uri_pretty": "https://imgur.com/user/{account}/about" + "cat": "images" }, { "name": "inaturalist", @@ -3147,24 +3147,24 @@ { "name": "InsaneJournal", "uri_check": "https://{account}.insanejournal.com/profile", + "strip_bad_char": ".", "e_code": 200, "e_string": "User:", "m_string": "The requested URL /profile was not found on this server", "m_code": 200, "known": ["test", "pint-sized", "acroamatica"], - "cat": "social", - "strip_bad_char": "." + "cat": "social" }, { "name": "Instagram", "uri_check": "https://www.picuki.com/profile/{account}", + "uri_pretty": "https://instagram.com/{account}", "e_code": 200, "e_string": "Instagram public profile with posts", "m_string": "Nothing found!", "m_code": 404, "known": ["katyperry", "kirbstr"], - "cat": "social", - "uri_pretty": "https://instagram.com/{account}" + "cat": "social" }, { "name": "Instagram (Imginn)", @@ -3190,35 +3190,35 @@ { "name": "Instagram2", "uri_check": "https://dumpoir.com/v/{account}", + "uri_pretty": "https://instagram.com/{account}", "e_code": 200, "e_string": "Instagram Stories, Profile, Posts and Followers View Anonymous", "m_string": "We are sorry. Should we search anything else?", "m_code": 404, "known": ["katyperry", "kirbstr"], - "cat": "social", - "uri_pretty": "https://instagram.com/{account}" + "cat": "social" }, { "name": "Instructables", "uri_check": "https://www.instructables.com/json-api/showAuthorExists?screenName={account}", + "uri_pretty": "https://www.instructables.com/member/{account}/", "e_code": 200, "e_string": "\"exists\": true", "m_string": "\"error\": \"Sorry, we couldn't find that one!\"", "m_code": 404, "known": ["davidandora", "test"], - "cat": "hobby", - "uri_pretty": "https://www.instructables.com/member/{account}/" + "cat": "hobby" }, { "name": "Internet Archive User Search", "uri_check": "https://archive.org/advancedsearch.php?q={account}&output=json", + "uri_pretty": "https://archive.org/search.php?query={account}", "e_code": 200, "e_string": "backup_location", "m_string": "numFound\":0", "m_code": 200, "known": ["test", "mubix"], - "cat": "misc", - "uri_pretty": "https://archive.org/search.php?query={account}" + "cat": "misc" }, { "name": "interpals", @@ -3233,35 +3233,35 @@ { "name": "Intigriti", "uri_check": "https://app.intigriti.com/api/user/public/profile/{account}", + "uri_pretty": "https://app.intigriti.com/profile/{account}", "e_code": 200, "e_string": "\"userName\":", "m_string": "class=\"error-page-container\"", "m_code": 404, "known": ["vampire01", "kenshiin"], - "cat": "tech", - "uri_pretty": "https://app.intigriti.com/profile/{account}" + "cat": "tech" }, { "name": "isMyGirl", "uri_check": "https://ismygirl.com/api/model/getModel?slug={account}", + "uri_pretty": "https://ismygirl.com/models/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "detail\": \"Model not found.", "m_code": 404, "known": ["summer", "littlelanta"], - "cat": "xx NSFW xx", - "uri_pretty": "https://ismygirl.com/models/{account}" + "cat": "xx NSFW xx" }, { "name": "Issuu", "uri_check": "https://issuu.com/call/signup/v2/check-username/{account}", + "uri_pretty": "https://issuu.com/{account}", "e_code": 200, "e_string": "\"status\":\"unavailable\"", "m_string": "\"status\":\"available\"", "m_code": 200, "known": ["letsplayhockey", "the_anchor"], - "cat": "social", - "uri_pretty": "https://issuu.com/{account}" + "cat": "social" }, { "name": "itch.io", @@ -3326,14 +3326,14 @@ { "name": "joinDOTA", "uri_check": "https://www.joindota.com/ajax/search", + "uri_pretty": "https://www.joindota.com/search?m=edb_player&q={account}", + "post_body": "search={account}&module=edb_player&language=en", "e_code": 200, "e_string": "\"items\":[{", "m_string": "\"count\":0", "m_code": 200, "known": ["AngryTestie", "amddota2"], "cat": "gaming", - "uri_pretty": "https://www.joindota.com/search?m=edb_player&q={account}", - "post_body": "search={account}&module=edb_player&language=en", "headers": { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" } @@ -3371,14 +3371,14 @@ { "name": "kashipara", "uri_check": "https://www.kashipara.com/ajax/checkNewUser.php", + "uri_pretty": "https://www.kashipara.com/profile/user/{account}", + "post_body": "id=UserName&value={account}", "e_code": 200, "e_string": "\"message\":\"UserName already Exist\"", "m_string": "\"message\":\"UserName avalible\"", "m_code": 200, "known": ["lopalopa", "westde123"], "cat": "tech", - "uri_pretty": "https://www.kashipara.com/profile/user/{account}", - "post_body": "id=UserName&value={account}", "headers": { "Content-Type": "application/x-www-form-urlencoded" } @@ -3386,24 +3386,24 @@ { "name": "Keybase", "uri_check": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={account}", + "uri_pretty": "https://keybase.io/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "\"them\":[null]", "m_code": 200, "known": ["test", "mubix"], - "cat": "social", - "uri_pretty": "https://keybase.io/{account}" + "cat": "social" }, { "name": "Kick", "uri_check": "https://kick.com/api/v2/channels/{account}", + "uri_pretty": "https://kick.com/{account}", "e_code": 200, "e_string": "\"id\"", "m_string": "Not Found", "m_code": 404, "known": ["deepak", "anthonyz"], "cat": "social", - "uri_pretty": "https://kick.com/{account}", "protection": ["cloudflare"] }, { @@ -3460,13 +3460,13 @@ { "name": "komi", "uri_check": "https://api.komi.io/api/talent/usernames/{account}", + "uri_pretty": "https://{account}.komi.io", "e_code": 200, "e_string": "accountStatus\":\"active", "m_string": "The talent profile was not found", "m_code": 404, "known": ["abbysage", "iamdsprings"], - "cat": "social", - "uri_pretty": "https://{account}.komi.io" + "cat": "social" }, { "name": "Kongregate", @@ -3511,14 +3511,14 @@ { "name": "Kwork", "uri_check": "https://kwork.ru/user_kworks/{account}", + "uri_pretty": "https://kwork.ru/user/{account}", + "post_body": "{\"username\":\"{account}\",\"offset\":0,\"limit\":10}", "e_code": 200, "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, "known": ["ilkarkarakurt", "sergeymeshiy"], "cat": "social", - "uri_pretty": "https://kwork.ru/user/{account}", - "post_body": "{\"username\":\"{account}\",\"offset\":0,\"limit\":10}", "headers": { "Content-Type": "application/json" } @@ -3547,14 +3547,14 @@ { "name": "LeetCode", "uri_check": "https://leetcode.com/graphql/", + "uri_pretty": "https://leetcode.com/u/{account}/", + "post_body": "{\"query\":\"query userPublicProfile($username: String!) { matchedUser(username: $username) { username } }\",\"variables\":{\"username\":\"{account}\"},\"operationName\":\"userPublicProfile\"}", "e_code": 200, "e_string": "\"username\":", "m_string": "\"matchedUser\":null", "m_code": 200, "known": ["aku_2000", "wengh"], "cat": "coding", - "uri_pretty": "https://leetcode.com/u/{account}/", - "post_body": "{\"query\":\"query userPublicProfile($username: String!) { matchedUser(username: $username) { username } }\",\"variables\":{\"username\":\"{account}\"},\"operationName\":\"userPublicProfile\"}", "headers": { "Content-Type": "application/json" } @@ -3582,13 +3582,13 @@ { "name": "LevelBlue", "uri_check": "https://otx.alienvault.com/otxapi/auth/validate?username={account}", + "uri_pretty": "https://otx.alienvault.com/user/{account}/pulses", "e_code": 400, "e_string": "\"username\": [\"This username is already taken\"]", "m_string": "{}", "m_code": 200, "known": ["BotnetExposer", "jamesbrine"], - "cat": "social", - "uri_pretty": "https://otx.alienvault.com/user/{account}/pulses" + "cat": "social" }, { "name": "Liberapay", @@ -3614,24 +3614,24 @@ { "name": "Libretooth.gr (Mastodon Instance)", "uri_check": "https://libretooth.gr/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://libretooth.gr/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["infolibre", "tzinalilik"], - "cat": "social", - "uri_pretty": "https://libretooth.gr/@{account}" + "cat": "social" }, { "name": "lichess.org", "uri_check": "https://lichess.org/api/player/autocomplete?term={account}&exists=1", + "uri_pretty": "https://lichess.org/@/{account}", "e_code": 200, "e_string": "true", "m_string": "false", "m_code": 200, "known": ["mohammed01", "mohammed03"], - "cat": "gaming", - "uri_pretty": "https://lichess.org/@/{account}" + "cat": "gaming" }, { "name": "LINE", @@ -3666,13 +3666,13 @@ { "name": "Livejournal", "uri_check": "https://{account}.livejournal.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "Unknown Journal", "m_code": 404, "known": ["jill", "john"], - "cat": "blog", - "strip_bad_char": "." + "cat": "blog" }, { "name": "livemaster.ru", @@ -3707,13 +3707,13 @@ { "name": "Lor.sh (Mastodon Instance)", "uri_check": "https://lor.sh/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://lor.sh/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["dump_stack", "lamountain"], - "cat": "social", - "uri_pretty": "https://lor.sh/@{account}" + "cat": "social" }, { "name": "lowcygier.pl", @@ -3768,13 +3768,13 @@ { "name": "Mapstodon.space (Mastodon Instance)", "uri_check": "https://mapstodon.space/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://mapstodon.space/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["Autumnhussar", "jeremy"], - "cat": "social", - "uri_pretty": "https://mapstodon.space/@{account}" + "cat": "social" }, { "name": "Maroc_nl", @@ -3829,24 +3829,24 @@ { "name": "Masto.nyc (Mastodon Instance)", "uri_check": "https://masto.nyc/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://masto.nyc/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["seano", "jayjay718"], - "cat": "social", - "uri_pretty": "https://masto.nyc/@{account}" + "cat": "social" }, { "name": "Mastodon API", "uri_check": "https://mastodon.social/api/v2/search?q={account}&limit=1&type=accounts", + "uri_pretty": "https://mastodon.social/api/v2/search?q={account}&type=accounts", "e_code": 200, "e_string": "display_name", "m_string": "\"accounts\":[]", "m_code": 404, "known": ["Richard_Littler", "webbreacher"], - "cat": "social", - "uri_pretty": "https://mastodon.social/api/v2/search?q={account}&type=accounts" + "cat": "social" }, { "name": "Mastodon-101010.pl", @@ -3881,13 +3881,13 @@ { "name": "Mastodon-climatejustice.rocks", "uri_check": "https://climatejustice.rocks/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://climatejustice.rocks/@{account}", "e_code": 200, "e_string": "username\":", "m_string": "Record not found", "m_code": 404, "known": ["paula", "PaulaToThePeople"], - "cat": "social", - "uri_pretty": "https://climatejustice.rocks/@{account}" + "cat": "social" }, { "name": "Mastodon-Defcon", @@ -3982,13 +3982,13 @@ { "name": "Mastodonbooks.net (Mastodon Instance)", "uri_check": "https://mastodonbooks.net/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://mastodonbooks.net/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["RogerRemacle", "eugnick"], - "cat": "social", - "uri_pretty": "https://mastodonbooks.net/@{account}" + "cat": "social" }, { "name": "MCName (Minecraft)", @@ -4003,24 +4003,24 @@ { "name": "MCUUID (Minecraft)", "uri_check": "https://playerdb.co/api/player/minecraft/{account}", + "uri_pretty": "https://mcuuid.net/?q={account}", "e_code": 200, "e_string": "Successfully found player by given ID.", "m_string": "minecraft.api_failure", "m_code": 200, "known": ["smithy", "bob"], - "cat": "gaming", - "uri_pretty": "https://mcuuid.net/?q={account}" + "cat": "gaming" }, { "name": "Medium", "uri_check": "https://{account}.medium.com/about", + "strip_bad_char": ".", "e_code": 200, "e_string": "Medium member since", "m_string": "Out of nothing, something", "m_code": 404, "known": ["zulie", "jessicalexicus"], - "cat": "news", - "strip_bad_char": "." + "cat": "news" }, { "name": "medyczka.pl", @@ -4065,13 +4065,13 @@ { "name": "Minds", "uri_check": "https://www.minds.com/api/v3/register/validate?username={account}", + "uri_pretty": "https://www.minds.com/{account}/", "e_code": 200, "e_string": "\"valid\":false", "m_string": "\"valid\":true", "m_code": 200, "known": ["gigan996", "mindsgaming"], - "cat": "social", - "uri_pretty": "https://www.minds.com/{account}/" + "cat": "social" }, { "name": "Minecraft List", @@ -4116,13 +4116,13 @@ { "name": "Mixcloud", "uri_check": "https://api.mixcloud.com/{account}/", + "uri_pretty": "https://www.mixcloud.com/{account}/", "e_code": 200, "e_string": "\"username\":", "m_string": "\"error\":", "m_code": 404, "known": ["DjHunnyBee", "vegarecords"], - "cat": "music", - "uri_pretty": "https://www.mixcloud.com/{account}/" + "cat": "music" }, { "name": "Mixi", @@ -4137,13 +4137,13 @@ { "name": "Mixlr", "uri_check": "https://api.mixlr.com/users/{account}", + "uri_pretty": "https://mixlr.com/{account}/", "e_code": 200, "e_string": "\"id\":", "m_string": "\"error\":\"Resource not found\"", "m_code": 404, "known": ["test", "john"], - "cat": "music", - "uri_pretty": "https://mixlr.com/{account}/" + "cat": "music" }, { "name": "Mmorpg", @@ -4188,13 +4188,13 @@ { "name": "Monkeytype", "uri_check": "https://api.monkeytype.com/users/{account}/profile", + "uri_pretty": "https://monkeytype.com/profile/{account}", "e_code": 200, "e_string": "\"message\":\"Profile retrieved\"", "m_string": "\"message\":\"User not found\"", "m_code": 404, "known": ["rocket", "risenrelic"], - "cat": "coding", - "uri_pretty": "https://monkeytype.com/profile/{account}" + "cat": "coding" }, { "name": "Moto Trip", @@ -4239,13 +4239,13 @@ { "name": "Musician.social (Mastodon Instance)", "uri_check": "https://musician.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://musician.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["Alizar", "weisjohan"], - "cat": "social", - "uri_pretty": "https://musician.social/@{account}" + "cat": "social" }, { "name": "musictraveler", @@ -4350,13 +4350,13 @@ { "name": "myportfolio", "uri_check": "https://{account}.myportfolio.com/work", + "strip_bad_char": ".", "e_code": 200, "e_string": "class=\"page-title", "m_string": "Adobe Portfolio | Build your own personalized website", "m_code": 302, "known": ["artkonina", "fox"], - "cat": "misc", - "strip_bad_char": "." + "cat": "misc" }, { "name": "MySpace", @@ -4371,13 +4371,13 @@ { "name": "Myspreadshop", "uri_check": "https://myspreadshop.de/{account}/shopData/list", + "uri_pretty": "https://{account}.myspreadshop.com", "e_code": 200, "e_string": "siteName", "m_string": "not found", "m_code": 404, "known": ["arukori", "honey"], - "cat": "business", - "uri_pretty": "https://{account}.myspreadshop.com" + "cat": "business" }, { "name": "myWishBoard", @@ -4452,13 +4452,13 @@ { "name": "Newgrounds", "uri_check": "https://{account}.newgrounds.com/", + "strip_bad_char": ".", "e_code": 200, "e_string": "user-header-name", "m_string": "Whoops, that's a swing and a miss!", "m_code": 404, "known": ["john", "bob"], - "cat": "gaming", - "strip_bad_char": "." + "cat": "gaming" }, { "name": "newmeet", @@ -4473,13 +4473,13 @@ { "name": "Nightbot", "uri_check": "https://api.nightbot.tv/1/channels/t/{account}", + "uri_pretty": "https://nightbot.tv/t/{account}/commands", "e_code": 200, "e_string": "\"status\":200", "m_string": "\"status\":404", "m_code": 404, "known": ["saevid", "proxyfox"], - "cat": "social", - "uri_pretty": "https://nightbot.tv/t/{account}/commands" + "cat": "social" }, { "name": "nihbuatjajan", @@ -4494,24 +4494,24 @@ { "name": "Nitecrew (Mastodon Instance)", "uri_check": "https://nitecrew.rip/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://nitecrew.rip/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["Myxx", "honey"], - "cat": "social", - "uri_pretty": "https://nitecrew.rip/@{account}" + "cat": "social" }, { "name": "nnru", "uri_check": "https://{account}.www.nn.ru", + "strip_bad_char": ".", "e_code": 200, "e_string": " ", "m_string": "<title>Ошибка 404 -", "m_code": 404, "known": ["lena", "slava"], - "cat": "social", - "strip_bad_char": "." + "cat": "social" }, { "name": "NotABug", @@ -4576,25 +4576,25 @@ { "name": "omg.lol", "uri_check": "https://api.omg.lol/address/{account}/info", + "uri_pretty": "https://{account}.omg.lol", + "strip_bad_char": "@.", "e_code": 200, "e_string": "\"success\": true", "m_string": "\"success\": false", "m_code": 200, "known": ["cwa", "adam"], - "cat": "social", - "uri_pretty": "https://{account}.omg.lol", - "strip_bad_char": "@." + "cat": "social" }, { "name": "OnlySearch (OnlyFans)", "uri_check": "https://onlysearch.co/api/search?keyword={account}", + "uri_pretty": "https://onlysearch.co/profiles?keyword={account}", "e_code": 200, "e_string": "\"hits\":[{", "m_string": "\"hits\":[]", "m_code": 200, "known": ["miaimani", "milaamour"], - "cat": "xx NSFW xx", - "uri_pretty": "https://onlysearch.co/profiles?keyword={account}" + "cat": "xx NSFW xx" }, { "name": "Opencollective", @@ -4729,24 +4729,24 @@ { "name": "Parler archived posts", "uri_check": "http://archive.org/wayback/available?url=https://parler.com/profile/{account}/posts", + "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts", "e_code": 200, "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, "known": ["JoePags", "dineshdsouza"], - "cat": "archived", - "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}/posts" + "cat": "archived" }, { "name": "Parler archived profile", "uri_check": "http://archive.org/wayback/available?url=https://parler.com/profile/{account}", + "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}", "e_code": 200, "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, "known": ["JoePags", "dineshdsouza"], - "cat": "archived", - "uri_pretty": "https://web.archive.org/web/2/https://parler.com/profile/{account}" + "cat": "archived" }, { "name": "Pastebin", @@ -4931,13 +4931,13 @@ { "name": "Playstation Network", "uri_check": "https://psnprofiles.com/xhr/search/users?q={account}", + "uri_pretty": "https://psnprofiles.com/{account}", "e_code": 200, "e_string": "<div class=\"progress-bar small level\">", "m_string": "We couldn't find anything ", "m_code": 200, "known": ["SlimShaggy18", "ikemenzi"], - "cat": "gaming", - "uri_pretty": "https://psnprofiles.com/{account}" + "cat": "gaming" }, { "name": "Plink", @@ -5002,13 +5002,13 @@ { "name": "Polarsteps", "uri_check": "https://api.polarsteps.com/users/byusername/{account}", + "uri_pretty": "https://www.polarsteps.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "<title>404 Not Found", "m_code": 404, "known": ["EngelBos", "GunnarEndlich"], - "cat": "hobby", - "uri_pretty": "https://www.polarsteps.com/{account}" + "cat": "hobby" }, { "name": "Polchat.pl", @@ -5033,13 +5033,13 @@ { "name": "Poll Everywhere", "uri_check": "https://pollev.com/proxy/api/users/{account}", + "uri_pretty": "https://pollev.com/{account}", "e_code": 200, "e_string": "name", "m_string": "ResourceNotFound", "m_code": 404, "known": ["josh", "jsmith"], - "cat": "tech", - "uri_pretty": "https://pollev.com/{account}" + "cat": "tech" }, { "name": "polygon", @@ -5104,24 +5104,24 @@ { "name": "Poweredbygay.social (Mastodon Instance)", "uri_check": "https://poweredbygay.social/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://poweredbygay.social/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["aggiepm", "eplumley1976"], - "cat": "social", - "uri_pretty": "https://poweredbygay.social/@{account}" + "cat": "social" }, { "name": "Pr0gramm", "uri_check": "https://pr0gramm.com/api/profile/info?name={account}", + "uri_pretty": "https://pr0gramm.com/user/{account}", "e_code": 200, "e_string": "\"user\":", "m_string": "\"code\":404", "m_code": 404, "known": ["kaizernero", "Giga1337"], "cat": "social", - "uri_pretty": "https://pr0gramm.com/user/{account}", "protection": ["cloudflare"] }, { @@ -5137,13 +5137,13 @@ { "name": "Privacy Guides", "uri_check": "https://discuss.privacyguides.net/u/{account}.json", + "uri_pretty": "https://discuss.privacyguides.net/u/{account}/summary", "e_code": 200, "e_string": "assign_path", "m_string": "The requested URL or resource could not be found.", "m_code": 404, "known": ["jonah", "dngray"], - "cat": "tech", - "uri_pretty": "https://discuss.privacyguides.net/u/{account}/summary" + "cat": "tech" }, { "name": "Producthunt", @@ -5158,14 +5158,14 @@ { "name": "PromoDJ", "uri_check": "https://promodj.com/ajax/register.html?lang=en", + "uri_pretty": "https://promodj.com/{account}", + "post_body": "kind=nick&value={account}", "e_code": 200, "e_string": "Address you entered is already taken", "m_string": "The address is free, it's great;)", "m_code": 200, "known": ["sekoy", "vovasmallny"], "cat": "music", - "uri_pretty": "https://promodj.com/{account}", - "post_body": "kind=nick&value={account}", "headers": { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" } @@ -5173,24 +5173,24 @@ { "name": "Pronouns.Page", "uri_check": "https://pronouns.page/api/profile/get/{account}?version=2", + "uri_pretty": "https://pronouns.page/@{account}", "e_code": 200, "e_string": "username", "m_string": "\"profiles\": {}", "m_code": 304, "known": ["cannabis_cervi", "user"], - "cat": "social", - "uri_pretty": "https://pronouns.page/@{account}" + "cat": "social" }, { "name": "Pronouny", "uri_check": "https://pronouny.xyz/api/users/profile/username/{account}", + "uri_pretty": "https://pronouny.xyz/users/{account}", "e_code": 200, "e_string": "\"username\":", "m_string": "That user doesn't exist", "m_code": 400, "known": ["donna", "honey"], - "cat": "social", - "uri_pretty": "https://pronouny.xyz/users/{account}" + "cat": "social" }, { "name": "Prose", @@ -5245,24 +5245,24 @@ { "name": "quitter.pl", "uri_check": "https://quitter.pl/api/v1/accounts/{account}", + "uri_pretty": "https://quitter.pl/users/{account}", "e_code": 200, "e_string": "avatar_static", "m_string": "\"error\":", "m_code": 404, "known": ["smok", "mik"], - "cat": "social", - "uri_pretty": "https://quitter.pl/users/{account}" + "cat": "social" }, { "name": "Quizlet", "uri_check": "https://quizlet.com/webapi/3.2/users/check-username?username={account}", + "uri_pretty": "https://quizlet.com/user/{account}/sets", "e_code": 200, "e_string": "\"identifier\":\"username_is_taken\"", "m_string": "\"success\":true", "m_code": 200, "known": ["Rita426", "Muyao_531"], "cat": "hobby", - "uri_pretty": "https://quizlet.com/user/{account}/sets", "protection": ["cloudflare"] }, { @@ -5308,24 +5308,24 @@ { "name": "Rarible", "uri_check": "https://rarible.com/marketplace/api/v4/urls/{account}", + "uri_pretty": "https://rarible.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "\"success\":false", "m_code": 404, "known": ["lokikot", "vintagemozart"], - "cat": "tech", - "uri_pretty": "https://rarible.com/{account}" + "cat": "tech" }, { "name": "RblxTrade", "uri_check": "https://rblx.trade/api/v1/user/get-by-username?username={account}", + "uri_pretty": "https://rblx.trade/p/{account}", "e_code": 200, "e_string": "\"userId\":", "m_string": "\"success\":false", "m_code": 400, "known": ["webbreacher", "SonOfSevenless"], - "cat": "gaming", - "uri_pretty": "https://rblx.trade/p/{account}" + "cat": "gaming" }, { "name": "redbubble", @@ -5340,24 +5340,24 @@ { "name": "Reddit", "uri_check": "https://www.reddit.com/user/{account}/about/.json", + "uri_pretty": "https://www.reddit.com/user/{account}", "e_code": 200, "e_string": "total_karma", "m_string": "Not Found", "m_code": 404, "known": ["koavf", "alabasterheart"], - "cat": "social", - "uri_pretty": "https://www.reddit.com/user/{account}" + "cat": "social" }, { "name": "REDGIFS", "uri_check": "https://api.redgifs.com/v1/users/{account}", + "uri_pretty": "https://www.redgifs.com/users/{account}", "e_code": 200, "e_string": "followers", "m_string": "user account not found for ", "m_code": 404, "known": ["alexbreecooper", "Jose-Roberto-Rasi"], - "cat": "xx NSFW xx", - "uri_pretty": "https://www.redgifs.com/users/{account}" + "cat": "xx NSFW xx" }, { "name": "Refsheet", @@ -5402,13 +5402,13 @@ { "name": "Revolut", "uri_check": "https://revolut.me/api/web-profile/{account}", + "uri_pretty": "https://revolut.me/{account}", "e_code": 200, "e_string": "\"firstName\"", "m_string": "\"User not found\"", "m_code": 404, "known": ["theaswdc", "honey"], - "cat": "finance", - "uri_pretty": "https://revolut.me/{account}" + "cat": "finance" }, { "name": "risk.ru", @@ -5423,13 +5423,13 @@ { "name": "Roblox", "uri_check": "https://auth.roblox.com/v1/usernames/validate?username={account}&birthday=2019-12-31T23:00:00.000Z", + "uri_pretty": "https://www.roblox.com/search/users?keyword={account}", "e_code": 200, "e_string": "Username is already in use", "m_string": "Username is valid", "m_code": 200, "known": ["LeetPawn", "elephant459"], - "cat": "gaming", - "uri_pretty": "https://www.roblox.com/search/users?keyword={account}" + "cat": "gaming" }, { "name": "RoutineHub", @@ -5484,13 +5484,13 @@ { "name": "RuneScape", "uri_check": "https://apps.runescape.com/runemetrics/profile/profile?user={account}", + "uri_pretty": "https://apps.runescape.com/runemetrics/app/overview/player/{account}", "e_code": 200, "e_string": "\"name\":", "m_string": "\"error\":\"NO_PROFILE\"", "m_code": 200, "known": ["Thomas", "Wahisietel"], - "cat": "hobby", - "uri_pretty": "https://apps.runescape.com/runemetrics/app/overview/player/{account}" + "cat": "hobby" }, { "name": "RuTracker.org", @@ -5515,13 +5515,13 @@ { "name": "Scammer.info", "uri_check": "https://scammer.info/u/{account}.json", + "uri_pretty": "https://scammer.info/u/{account}", "e_code": 200, "e_string": "avatar_template", "m_string": "The requested URL or resource could not be found", "m_code": 404, "known": ["AngelFat", "lecter"], - "cat": "misc", - "uri_pretty": "https://scammer.info/u/{account}" + "cat": "misc" }, { "name": "ScoutWiki", @@ -5606,13 +5606,13 @@ { "name": "Sexworker", "uri_check": "https://sexworker.com/api/profile/{account}", + "uri_pretty": "https://sexworker.com/{account}", "e_code": 200, "e_string": "profilePictureUrl", "m_string": "This user does not exist.", "m_code": 404, "known": ["sakii_nightshade", "annajean2319"], - "cat": "xx NSFW xx", - "uri_pretty": "https://sexworker.com/{account}" + "cat": "xx NSFW xx" }, { "name": "SFD", @@ -5637,13 +5637,13 @@ { "name": "shopify", "uri_check": "https://{account}.myshopify.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "home", "m_string": "Sorry, this shop is currently unavailable.", "m_code": 404, "known": ["john", "daniel"], - "cat": "shopping", - "strip_bad_char": "." + "cat": "shopping" }, { "name": "Showup.tv", @@ -5751,24 +5751,24 @@ { "name": "SmugMug", "uri_check": "https://{account}.smugmug.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "schema.org/Person", "m_string": "schema.org/Thing", "m_code": 404, "known": ["wow", "jill"], - "cat": "images", - "strip_bad_char": "." + "cat": "images" }, { "name": "smule", "uri_check": "https://www.smule.com/api/profile/?handle={account}", + "uri_pretty": "https://www.smule.com/{account}", "e_code": 200, "e_string": "account_id", "m_string": "code\": 65", "m_code": 400, "known": ["cgrrose", "John___Anish"], - "cat": "music", - "uri_pretty": "https://www.smule.com/{account}" + "cat": "music" }, { "name": "Snapchat", @@ -5823,13 +5823,13 @@ { "name": "sofurry", "uri_check": "https://{account}.sofurry.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "'s Profile | SoFurry", "m_string": "SoFurry - Error | SoFurry", "m_code": 404, "known": ["reeden-landshey", "tigerzero"], - "cat": "art", - "strip_bad_char": "." + "cat": "art" }, { "name": "solo.to", @@ -5864,13 +5864,13 @@ { "name": "Sourceforge", "uri_check": "https://sourceforge.net/user/username/{account}", + "uri_pretty": "https://sourceforge.net/u/{account}/profile", "e_code": 400, "e_string": "\"error\": \"invalid\"", "m_string": "\"success\": 1", "m_code": 200, "known": ["alice", "bob"], "cat": "coding", - "uri_pretty": "https://sourceforge.net/u/{account}/profile", "protection": ["cloudflare"] }, { @@ -5926,13 +5926,13 @@ { "name": "Sports Tracker", "uri_check": "https://api.sports-tracker.com/apiserver/v1/user/name/{account}", + "uri_pretty": "https://sports-tracker.com/view_profile/{account}", "e_code": 200, "e_string": "\"uuid\":", "m_string": "\"code\":\"404\"", "m_code": 200, "known": ["petriola", "adisonthadat"], - "cat": "health", - "uri_pretty": "https://sports-tracker.com/view_profile/{account}" + "cat": "health" }, { "name": "Spotify", @@ -5959,13 +5959,13 @@ { "name": "Statuspage", "uri_check": "https://{account}.statuspage.io/api/v2/status.json", + "uri_pretty": "https://{account}.statuspage.io/", "e_code": 200, "e_string": "updated_at", "m_string": "You are being redirected.", "m_code": 302, "known": ["8713981tpdlg", "gaming", "coinbase"], - "cat": "tech", - "uri_pretty": "https://{account}.statuspage.io/" + "cat": "tech" }, { "name": "Steam", @@ -5990,14 +5990,14 @@ { "name": "Steemit", "uri_check": "https://signup.steemit.com/api/check_username", + "uri_pretty": "https://steemit.com/@{account}", + "post_body": "{\"username\":\"{account}\"}", "e_code": 200, "e_string": "\"type\":\"error_api_username_used\"", "m_string": "\"success\":true", "m_code": 200, "known": ["petlover", "zalat"], "cat": "social", - "uri_pretty": "https://steemit.com/@{account}", - "post_body": "{\"username\":\"{account}\"}", "headers": { "Content-Type": "application/json" } @@ -6025,35 +6025,35 @@ { "name": "StreamElements", "uri_check": "https://api.streamelements.com/kappa/v2/channels/{account}", + "uri_pretty": "https://streamelements.com/{account}", "e_code": 200, "e_string": "\"providerId\"", "m_string": "error", "m_code": 404, "known": ["honey", "dude"], - "cat": "finance", - "uri_pretty": "https://streamelements.com/{account}" + "cat": "finance" }, { "name": "StreamLabs", "uri_check": "https://streamlabs.com/api/v6/user/{account}", + "uri_pretty": "https://streamlabs.com/{account}/tip", "e_code": 200, "e_string": "\"id\":", "m_string": "Unauthorized", "m_code": 401, "known": ["veibae", "cutie_cori"], - "cat": "finance", - "uri_pretty": "https://streamlabs.com/{account}/tip" + "cat": "finance" }, { "name": "Stripchat", "uri_check": "https://stripchat.com/api/front/users/checkUsername?username={account}", + "uri_pretty": "https://stripchat.com/{account}", "e_code": 400, "e_string": "\"error\":\"This username already exists\"", "m_string": "[]", "m_code": 200, "known": ["DulcieRichard", "Katie-Mili"], - "cat": "xx NSFW xx", - "uri_pretty": "https://stripchat.com/{account}" + "cat": "xx NSFW xx" }, { "name": "Subscribestar", @@ -6148,24 +6148,24 @@ { "name": "TAPiTAG", "uri_check": "https://account.tapitag.co/tapitag/api/v1/{account}", + "uri_pretty": "https://account.tapitag.co/{account}", "e_code": 200, "e_string": "User details are Showing", "m_string": "The rf number is not valid", "m_code": 200, "known": ["JonathanWallace", "gearoidconsidine"], - "cat": "business", - "uri_pretty": "https://account.tapitag.co/{account}" + "cat": "business" }, { "name": "Tappy", "uri_check": "https://api.tappy.tech/api/profile/username/{account}", + "uri_pretty": "https://www.tappy.tech/{account}", "e_code": 200, "e_string": "user_id", "m_string": "Profile of username Not Found", "m_code": 200, "known": ["alexborrelli", "domocann"], - "cat": "business", - "uri_pretty": "https://www.tappy.tech/{account}" + "cat": "business" }, { "name": "Taringa", @@ -6180,13 +6180,13 @@ { "name": "Taringa Archived Profile", "uri_check": "https://archive.org/wayback/available?url=https://www.taringa.net/{account}", + "uri_pretty": "https://web.archive.org/web/2/taringa.net/{account}", "e_code": 200, "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, "known": ["farantic", "elrubius"], - "cat": "archived", - "uri_pretty": "https://web.archive.org/web/2/taringa.net/{account}" + "cat": "archived" }, { "name": "taskrabbit", @@ -6221,13 +6221,13 @@ { "name": "Teespring", "uri_check": "https://commerce.teespring.com/v1/stores?slug={account}", + "uri_pretty": "https://{account}.creator-spring.com", "e_code": 200, "e_string": "sellerToken", "m_string": "{\"errors\":{\"store\":[\"not found\"]}}", "m_code": 404, "known": ["missmoonified", "honey"], - "cat": "business", - "uri_pretty": "https://{account}.creator-spring.com" + "cat": "business" }, { "name": "Teknik", @@ -6282,13 +6282,13 @@ { "name": "TETR.IO", "uri_check": "https://ch.tetr.io/api/users/{account}", + "uri_pretty": "https://ch.tetr.io/u/{account}", "e_code": 200, "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 404, "known": ["icly", "5han"], - "cat": "gaming", - "uri_pretty": "https://ch.tetr.io/u/{account}" + "cat": "gaming" }, { "name": "TF2 Backpack Examiner", @@ -6363,24 +6363,24 @@ { "name": "TikTok", "uri_check": "https://www.tiktok.com/oembed?url=https://www.tiktok.com/@{account}", + "uri_pretty": "https://www.tiktok.com/@{account}?lang=en", "e_code": 200, "e_string": "author_url", "m_string": "Something went wrong", "m_code": 400, "known": ["gordonramsayofficial", "pookiebear73"], - "cat": "social", - "uri_pretty": "https://www.tiktok.com/@{account}?lang=en" + "cat": "social" }, { "name": "Tilde.zone (Mastodon Instance)", "uri_check": "https://tilde.zone/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://tilde.zone/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["ben", "lunatic"], - "cat": "social", - "uri_pretty": "https://tilde.zone/@{account}" + "cat": "social" }, { "name": "Tinder", @@ -6395,14 +6395,14 @@ { "name": "Tindie", "uri_check": "https://www.tindie.com/accounts/check_username/", + "uri_pretty": "https://www.tindie.com/stores/{account}/", + "post_body": "username={account}", "e_code": 200, "e_string": "\"errors\": [\"Username taken!\"]", "m_string": "\"valid\": true", "m_code": 200, "known": ["tehrabbitt", "dekunukem"], "cat": "shopping", - "uri_pretty": "https://www.tindie.com/stores/{account}/", - "post_body": "username={account}", "headers": { "Content-Type": "application/x-www-form-urlencoded" } @@ -6410,24 +6410,24 @@ { "name": "Tooting.ch (Mastodon Instance)", "uri_check": "https://tooting.ch/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://tooting.ch/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["mikebeganyi", "Zugi"], - "cat": "social", - "uri_pretty": "https://tooting.ch/@{account}" + "cat": "social" }, { "name": "Topcoder", "uri_check": "https://api.topcoder.com/v5/members/{account}", + "uri_pretty": "https://profiles.topcoder.com/{account}", "e_code": 200, "e_string": "\"userId\":", "m_string": "\"message\":\"Member with handle:", "m_code": 404, "known": ["chinvib66", "mwakanosya"], - "cat": "coding", - "uri_pretty": "https://profiles.topcoder.com/{account}" + "cat": "coding" }, { "name": "toyhou.se", @@ -6462,13 +6462,13 @@ { "name": "Trello", "uri_check": "https://trello.com/1/Members/{account}", + "uri_pretty": "https://trello.com/{account}", "e_code": 200, "e_string": "\"id\":", "m_string": "

Oh no! 404!

", "m_code": 404, "known": ["naranjasan", "jane"], "cat": "social", - "uri_pretty": "https://trello.com/{account}", "protection": ["other"] }, { @@ -6514,13 +6514,13 @@ { "name": "TryHackMe", "uri_check": "https://tryhackme.com/api/user/exist/{account}", + "uri_pretty": "https://tryhackme.com/r/p/{account}", "e_code": 200, "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, "known": ["user", "goyalyuval15"], - "cat": "tech", - "uri_pretty": "https://tryhackme.com/r/p/{account}" + "cat": "tech" }, { "name": "Tryst", @@ -6535,24 +6535,24 @@ { "name": "tumblr", "uri_check": "https://{account}.tumblr.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "avatar", "m_string": "There's nothing here", "m_code": 404, "known": ["test", "test1"], - "cat": "images", - "strip_bad_char": "." + "cat": "images" }, { "name": "tunefind", "uri_check": "https://www.tunefind.com/api-request/account/profile?userName={account}", + "uri_pretty": "https://www.tunefind.com/user/profile/{account}", "e_code": 200, "e_string": "user-stats-engagement", "m_string": "User not found:", "m_code": 404, "known": ["baywolfmusic", "mrcerny18"], - "cat": "music", - "uri_pretty": "https://www.tunefind.com/user/profile/{account}" + "cat": "music" }, { "name": "Twitcasting", @@ -6567,47 +6567,47 @@ { "name": "Twitch", "uri_check": "https://twitchtracker.com/{account}", + "uri_pretty": "https://twitch.tv/{account}/", "e_code": 200, "e_string": "Overview", "m_string": "404 Page Not Found", "m_code": 404, "known": ["summit1g", "cohhcarnage"], - "cat": "gaming", - "uri_pretty": "https://twitch.tv/{account}/" + "cat": "gaming" }, { "name": "Twitter archived profile", "uri_check": "http://archive.org/wayback/available?url=https://twitter.com/{account}", + "uri_pretty": "https://web.archive.org/web/2/https://twitter.com/{account}", "e_code": 200, "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, "known": ["jack", "dineshdsouza"], - "cat": "archived", - "uri_pretty": "https://web.archive.org/web/2/https://twitter.com/{account}" + "cat": "archived" }, { "name": "Twitter archived tweets", "uri_check": "http://archive.org/wayback/available?url=https://twitter.com/{account}/status/*", + "uri_pretty": "https://web.archive.org/web/*/https://twitter.com/{account}/status/*", "e_code": 200, "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, "known": ["jack", "dineshdsouza"], - "cat": "archived", - "uri_pretty": "https://web.archive.org/web/*/https://twitter.com/{account}/status/*" + "cat": "archived" }, { "name": "twoplustwo", "uri_check": "https://forumserver.twoplustwo.com/ajax.php?do=usersearch", + "uri_pretty": "https://forumserver.twoplustwo.com/search.php", + "post_body": "securitytoken=guest&do=usersearch&fragment={account}", "e_code": 200, "e_string": "userid=", "m_string": "", "m_code": 404, "known": ["redsox", "adam"], - "cat": "hobby", - "uri_pretty": "https://forumserver.twoplustwo.com/search.php", - "post_body": "securitytoken=guest&do=usersearch&fragment={account}" + "cat": "hobby" }, { "name": "twpro", @@ -6722,24 +6722,24 @@ { "name": "utip.io", "uri_check": "https://utip.io/creator/profile/{account}", + "uri_pretty": "https://utip.io/{account}", "e_code": 200, "e_string": "\"userName\"", "m_string": "Not a valid web service key", "m_code": 404, "known": ["honey", "chloe"], - "cat": "finance", - "uri_pretty": "https://utip.io/{account}" + "cat": "finance" }, { "name": "uwu.ai", "uri_check": "https://{account}.uwu.ai/", + "strip_bad_char": ".", "e_code": 200, "e_string": "property=\"twitter:card\"", "m_string": "Sorry, the requested page could not be found.", "m_code": 404, "known": ["elite", "citruciel"], - "cat": "social", - "strip_bad_char": "." + "cat": "social" }, { "name": "Uwumarket", @@ -6824,35 +6824,35 @@ { "name": "Vine", "uri_check": "https://vine.co/api/users/profiles/vanity/{account}", + "uri_pretty": "https://vine.co/{account}", "e_code": 200, "e_string": "userId", "m_string": "That record does not exist", "m_code": 404, "known": ["TomHarlock", "Seks"], - "cat": "video", - "uri_pretty": "https://vine.co/{account}" + "cat": "video" }, { "name": "VIP-blog", "uri_check": "http://{account}.vip-blog.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "blog : ", "m_string": "Blog inexistant", "m_code": 200, "known": ["sarah", "brahim01"], - "cat": "blog", - "strip_bad_char": "." + "cat": "blog" }, { "name": "VirusTotal", "uri_check": "https://www.virustotal.com/ui/users/{account}", + "uri_pretty": "https://www.virustotal.com/gui/user/{account}", "e_code": 200, "e_string": "\"data\"", "m_string": "\"code\": \"NotFoundError\"", "m_code": 404, "known": ["cyber", "cybersecstu"], "cat": "misc", - "uri_pretty": "https://www.virustotal.com/gui/user/{account}", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", "X-Tool": "vt-ui-main", @@ -6863,13 +6863,13 @@ { "name": "visnesscard", "uri_check": "https://my.visnesscard.com/Home/GetCard/{account}", + "uri_pretty": "https://my.visnesscard.com/{account}", "e_code": 200, "e_string": "end_point", "m_string": "card_id\": 0", "m_code": 200, "known": ["Lisa-Gordon", "Bill-Schaeffer"], - "cat": "business", - "uri_pretty": "https://my.visnesscard.com/{account}" + "cat": "business" }, { "name": "Vivino", @@ -6897,35 +6897,35 @@ { "name": "Vkl.world (Mastodon Instance)", "uri_check": "https://vkl.world/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://vkl.world/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["king", "aniver"], - "cat": "social", - "uri_pretty": "https://vkl.world/@{account}" + "cat": "social" }, { "name": "Vmst.io (Mastodon Instance)", "uri_check": "https://vmst.io/api/v1/accounts/lookup?acct={account}", + "uri_pretty": "https://vmst.io/@{account}", "e_code": 200, "e_string": "display_name", "m_string": "Record not found", "m_code": 404, "known": ["vmstan", "honestdave"], - "cat": "social", - "uri_pretty": "https://vmst.io/@{account}" + "cat": "social" }, { "name": "Voice123", "uri_check": "https://voice123.com/api/providers/search/{account}", + "uri_pretty": "https://voice123.com/{account}", "e_code": 200, "e_string": "user_id", "m_string": "[]", "m_code": 200, "known": ["dottovuu", "maheshsaha1992"], - "cat": "hobby", - "uri_pretty": "https://voice123.com/{account}" + "cat": "hobby" }, { "name": "Voices.com", @@ -6993,13 +6993,13 @@ { "name": "watchmemore.com", "uri_check": "https://api.watchmemore.com/api4/profile/{account}/", + "uri_pretty": "https://watchmemore.com/{account}/", "e_code": 200, "e_string": "displayName", "m_string": "notExists", "m_code": 400, "known": ["medroxy", "nodjev"], - "cat": "xx NSFW xx", - "uri_pretty": "https://watchmemore.com/{account}/" + "cat": "xx NSFW xx" }, { "name": "Watchmyfeed", @@ -7014,13 +7014,13 @@ { "name": "Wattpad", "uri_check": "https://www.wattpad.com/api/v3/users/{account}", + "uri_pretty": "https://www.wattpad.com/user/{account}", "e_code": 200, "e_string": "\"username\":", "m_string": "\"error_code\":", "m_code": 400, "known": ["newadult", "Test123"], "cat": "social", - "uri_pretty": "https://www.wattpad.com/user/{account}", "protection": ["other"] }, { @@ -7059,13 +7059,13 @@ { "name": "weebly", "uri_check": "https://{account}.weebly.com/", + "strip_bad_char": ".", "e_code": 200, "e_string": "<div id=\"navigation\">", "m_string": "<title>404 - Page Not Found", "m_code": 404, "known": ["dave", "john"], - "cat": "misc", - "strip_bad_char": "." + "cat": "misc" }, { "name": "wego", @@ -7100,13 +7100,13 @@ { "name": "WeTransfer", "uri_check": "https://{account}.wetransfer.com", + "strip_bad_char": ".", "e_code": 200, "e_string": "workspaceName", "m_string": "", "m_code": 307, "known": ["mark", "joe"], - "cat": "misc", - "strip_bad_char": "." + "cat": "misc" }, { "name": "Wikidot", @@ -7121,24 +7121,24 @@ { "name": "Wikimapia", "uri_check": "https://wikimapia.org/user/register/?check=username&value={account}", + "uri_pretty": "https://wikimapia.org/user/tools/users_rating/?username={account}", "e_code": 200, "e_string": "\"ok\":false", "m_string": "\"ok\":true", "m_code": 200, "known": ["bubnilka", "Teresa"], - "cat": "social", - "uri_pretty": "https://wikimapia.org/user/tools/users_rating/?username={account}" + "cat": "social" }, { "name": "Wikipedia", "uri_check": "https://meta.wikimedia.org/w/api.php?action=query&format=json&list=globalallusers&aguprefix={account}&agulimit=100", + "uri_pretty": "https://en.wikipedia.org/wiki/User:{account}", "e_code": 200, "e_string": "{\"id\":", "m_string": ":[]}}", "m_code": 200, "known": ["sector051", "webbreacher"], - "cat": "news", - "uri_pretty": "https://en.wikipedia.org/wiki/User:{account}" + "cat": "news" }, { "name": "Wimkin-PublicProfile", @@ -7164,13 +7164,13 @@ { "name": "Wishlistr", "uri_check": "https://www.wishlistr.com/sign-up/?rs=checkUserName&rsargs[]={account}", + "uri_pretty": "https://www.wishlistr.com/{account}/", "e_code": 200, "e_string": "+:var res = \"", "m_string": "+:var res = parseInt(0);", "m_code": 200, "known": ["bodymodgrrrl", "kethistle"], - "cat": "shopping", - "uri_pretty": "https://www.wishlistr.com/{account}/" + "cat": "shopping" }, { "name": "wordnik", @@ -7225,13 +7225,13 @@ { "name": "X", "uri_check": "https://api.x.com/i/users/username_available.json?username={account}", + "uri_pretty": "https://x.com/{account}", "e_code": 200, "e_string": "\"reason\":\"taken\"", "m_string": "\"reason\":\"available\"", "m_code": 200, "known": ["WebBreacher", "OSINT_Tactical"], - "cat": "social", - "uri_pretty": "https://x.com/{account}" + "cat": "social" }, { "name": "Xakep.ru", @@ -7246,13 +7246,13 @@ { "name": "Xanga", "uri_check": "http://{account}.xanga.com/", + "strip_bad_char": ".", "e_code": 200, "e_string": "s Xanga Site | Just", "m_string": "", "m_code": 302, "known": ["john"], - "cat": "blog", - "strip_bad_char": "." + "cat": "blog" }, { "name": "Xbox Gamertag", @@ -7347,24 +7347,24 @@ { "name": "YesWeHack", "uri_check": "https://api.yeswehack.com/hunters/{account}", + "uri_pretty": "https://yeswehack.com/hunters/{account}", "e_code": 200, "e_string": "\"username\":", "m_string": "\"code\":404", "m_code": 404, "known": ["xel", "rabhi"], - "cat": "tech", - "uri_pretty": "https://yeswehack.com/hunters/{account}" + "cat": "tech" }, { "name": "YouNow", "uri_check": "https://api.younow.com/php/api/broadcast/info/user={account}", + "uri_pretty": "https://www.younow.com/{account}", "e_code": 200, "e_string": "\"userId\":", "m_string": "\"errorMsg\":\"No users found\"", "m_code": 200, "known": ["lydia_tan33", "RavJagz"], "cat": "social", - "uri_pretty": "https://www.younow.com/{account}", "protection": ["other"] }, { @@ -7433,24 +7433,24 @@ { "name": "Zepeto", "uri_check": "https://gw-napi.zepeto.io/profiles/{account}", + "uri_pretty": "https://web.zepeto.me/share/user/profile/{account}?language=en", "e_code": 200, "e_string": "zepetoId\":", "m_string": "errorCode\":", "m_code": 200, "known": ["joe", "james"], - "cat": "social", - "uri_pretty": "https://web.zepeto.me/share/user/profile/{account}?language=en" + "cat": "social" }, { "name": "zhihu", "uri_check": "https://api.zhihu.com/books/people/{account}/publications?offset=0&limit=5", + "uri_pretty": "https://www.zhihu.com/people/{account}", "e_code": 200, "e_string": "\"is_start\": true", "m_string": "\"name\": \"NotFoundException\"", "m_code": 404, "known": ["lushnis", "kan-shu-jiao-hua-shai-tai-yang"], - "cat": "social", - "uri_pretty": "https://www.zhihu.com/people/{account}" + "cat": "social" }, { "name": "Zillow", From 1f407de617db398073ac0f161a2fc270064e75a7 Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 23:38:27 +0300 Subject: [PATCH 12/18] Refactor: Rewrite in Python with headers sorting and scheme formatting --- .github/workflows/sort-format-json.yml | 83 ++++---------------------- scripts/sort_format_json.py | 71 ++++++++++++++++++++++ 2 files changed, 81 insertions(+), 73 deletions(-) create mode 100644 scripts/sort_format_json.py diff --git a/.github/workflows/sort-format-json.yml b/.github/workflows/sort-format-json.yml index cfb13e2..1d616fd 100644 --- a/.github/workflows/sort-format-json.yml +++ b/.github/workflows/sort-format-json.yml @@ -1,4 +1,4 @@ -name: Sort and Format wmn-data.json +name: Sort and Format JSON Files on: push: @@ -7,88 +7,25 @@ on: - 'wmn-data-schema.json' jobs: - sort-json: + sort-and-format-json: + name: Sort and Format JSON Files runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 + - name: Set up Python + uses: actions/setup-python@v5 with: - node-version: '20' + python-version: '3.11' - - name: Create sorting script - run: | - cat << 'EOF' > sort-wmn-data.js - const fs = require('fs'); - - const dataPath = 'wmn-data.json'; - const schemaPath = 'wmn-data-schema.json'; - - const original = fs.readFileSync(dataPath, 'utf8'); - const data = JSON.parse(original); - const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8')); - - // ---------- Sorting Helpers ---------- - function sortArrayAlphabetically(arr) { - return arr.sort((a, b) => a.localeCompare(b)); - } - - function reorderObjectKeys(obj, keyOrder) { - const reordered = {}; - keyOrder.forEach(key => { - if (key in obj) reordered[key] = obj[key]; - }); - Object.keys(obj).forEach(key => { - if (!keyOrder.includes(key)) reordered[key] = obj[key]; - }); - return reordered; - } - - // ---------- Extract Schema Key Order ---------- - const siteSchema = schema.properties?.sites?.items; - const keyOrder = siteSchema?.properties ? Object.keys(siteSchema.properties) : []; - - // ---------- Sort authors and categories ---------- - if (Array.isArray(data.authors)) { - data.authors = sortArrayAlphabetically(data.authors); - } - - if (Array.isArray(data.categories)) { - data.categories = sortArrayAlphabetically(data.categories); - } - - // ---------- Sort and Reorder Sites ---------- - if (Array.isArray(data.sites)) { - data.sites.sort((a, b) => a.name.localeCompare(b.name)); - data.sites = data.sites.map(site => reorderObjectKeys(site, keyOrder)); - } - - // Convert to JSON with 2-space indentation - const updated = JSON.stringify(data, null, 2); - - // Only write if content has changed - if (original !== updated) { - fs.writeFileSync(dataPath, updated); - console.log('wmn-data.json updated and reordered.'); - } else { - console.log('wmn-data.json is already sorted and formatted.'); - } - EOF - - - name: Install Prettier - run: npm install --global prettier - - - name: Run sorting script and format - run: | - node sort-wmn-data.js - prettier --write wmn-data.json + - name: Run Python sorting script + run: python scripts/sort_wmn_data.py - name: Commit if changed run: | git config --global user.name "github-actions" git config --global user.email "github-actions@github.com" - git add wmn-data.json - git diff --cached --quiet || git commit -m "chore: auto-sort wmn-data.json by schema" + git add wmn-data.json wmn-data-schema.json + git diff --cached --quiet || git commit -m "chore: auto-sort and format JSON files" git push diff --git a/scripts/sort_format_json.py b/scripts/sort_format_json.py new file mode 100644 index 0000000..ead1dcb --- /dev/null +++ b/scripts/sort_format_json.py @@ -0,0 +1,71 @@ +import json + +data_path = 'wmn-data.json' +schema_path = 'wmn-data-schema.json' + +def sort_array_alphabetically(arr): + return sorted(arr, key=str.lower) + +def reorder_object_keys(obj, key_order): + reordered = {k: obj[k] for k in key_order if k in obj} + for k in obj: + if k not in key_order: + reordered[k] = obj[k] + return reordered + +def sort_headers(site): + headers = site.get("headers") + if isinstance(headers, dict): + site["headers"] = dict(sorted(headers.items(), key=lambda item: item[0].lower())) + +def load_and_format_json(path): + with open(path, 'r', encoding='utf-8') as f: + raw_content = f.read() + data = json.loads(raw_content) + formatted = json.dumps(data, indent=2, ensure_ascii=False) + return data, raw_content, formatted + +data, data_raw, data_formatted = load_and_format_json(data_path) +schema, schema_raw, schema_formatted = load_and_format_json(schema_path) + +changed = False + +# Sort authors and categories +if isinstance(data.get('authors'), list): + data['authors'] = sort_array_alphabetically(data['authors']) + +if isinstance(data.get('categories'), list): + data['categories'] = sort_array_alphabetically(data['categories']) + +# Sort and reorder sites +site_schema = schema.get('properties', {}).get('sites', {}).get('items', {}) +key_order = list(site_schema.get('properties', {}).keys()) + +if isinstance(data.get('sites'), list): + data['sites'].sort(key=lambda site: site.get('name', '').lower()) + for site in data['sites']: + sort_headers(site) + data['sites'] = [reorder_object_keys(site, key_order) for site in data['sites']] + +updated_data_formatted = json.dumps(data, indent=2, ensure_ascii=False) + +# Write wmn-data.json if changed +if data_raw.strip() != updated_data_formatted.strip(): + with open(data_path, 'w', encoding='utf-8') as f: + f.write(updated_data_formatted) + print("Updated and sorted wmn-data.json.") + changed = True +else: + print("wmn-data.json already formatted.") + +# Write formatted wmn-data-schema.json if changed +if schema_raw.strip() != schema_formatted.strip(): + with open(schema_path, 'w', encoding='utf-8') as f: + f.write(schema_formatted) + print("Formatted wmn-data-schema.json.") + changed = True +else: + print("wmn-data-schema.json already formatted.") + +if not changed: + print("No changes made.") From 67201c73b0a196f620f26924a53bfba81b4d42eb Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 23:40:22 +0300 Subject: [PATCH 13/18] Test --- wmn-data.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 80e0e5e..41616da 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -512,13 +512,13 @@ { "name": "BabyPips", "uri_check": "https://forums.babypips.com/u/{account}.json", - "uri_pretty": "https://forums.babypips.com/u/{account}/summary", "e_code": 200, "e_string": "user_badges", "m_string": "The requested URL or resource could not be found", "m_code": 404, "known": ["baemax023", "scottycarsonmvp"], - "cat": "social" + "cat": "social", + "uri_pretty": "https://forums.babypips.com/u/{account}/summary" }, { "name": "Bandcamp", From df235a4719e92adc605c2108ad0f680337d20855 Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 23:41:25 +0300 Subject: [PATCH 14/18] Workflow fix --- .github/workflows/sort-format-json.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sort-format-json.yml b/.github/workflows/sort-format-json.yml index 1d616fd..4c86f90 100644 --- a/.github/workflows/sort-format-json.yml +++ b/.github/workflows/sort-format-json.yml @@ -20,7 +20,7 @@ jobs: python-version: '3.11' - name: Run Python sorting script - run: python scripts/sort_wmn_data.py + run: python scripts/sort_format_json.py - name: Commit if changed run: | From b0b1219ae5a858931d115f1d5ece5cf002aaf04b Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Mon, 2 Jun 2025 23:42:09 +0300 Subject: [PATCH 15/18] Test --- wmn-data.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 41616da..80e0e5e 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -512,13 +512,13 @@ { "name": "BabyPips", "uri_check": "https://forums.babypips.com/u/{account}.json", + "uri_pretty": "https://forums.babypips.com/u/{account}/summary", "e_code": 200, "e_string": "user_badges", "m_string": "The requested URL or resource could not be found", "m_code": 404, "known": ["baemax023", "scottycarsonmvp"], - "cat": "social", - "uri_pretty": "https://forums.babypips.com/u/{account}/summary" + "cat": "social" }, { "name": "Bandcamp", From 0e3a416b675c82be95ce9feba2042d0a1e8fbfc5 Mon Sep 17 00:00:00 2001 From: github-actions <github-actions@github.com> Date: Mon, 2 Jun 2025 20:42:21 +0000 Subject: [PATCH 16/18] chore: auto-sort and format JSON files --- wmn-data-schema.json | 488 +++--- wmn-data.json | 3724 +++++++++++++++++++++++++++++++++--------- 2 files changed, 3203 insertions(+), 1009 deletions(-) diff --git a/wmn-data-schema.json b/wmn-data-schema.json index e404d60..6585985 100644 --- a/wmn-data-schema.json +++ b/wmn-data-schema.json @@ -1,244 +1,246 @@ { - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1658520065.json", - "title": "Root", - "type": "object", - "required": [ - "license", - "authors", - "categories", - "sites" - ], - "properties": { - "license": { - "$id": "#root/license", - "title": "License", - "type": "array", - "default": [], - "items":{ - "$id": "#root/license/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - "Copyright (C) 2025 Micah Hoffman" - ], - "pattern": "^.*$" - } - }, - "authors": { - "$id": "#root/authors", - "title": "Authors", - "type": "array", - "default": [], - "items":{ - "$id": "#root/authors/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - "WebBreacher" - ], - "pattern": "^.*$" - } - }, - "categories": { - "$id": "#root/categories", - "title": "Categories", - "type": "array", - "default": [], - "items":{ - "$id": "#root/categories/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - "archived" - ], - "pattern": "^.*$" - } - }, - "sites": { - "$id": "#root/sites", - "title": "Sites", - "type": "array", - "default": [], - "items":{ - "$id": "#root/sites/items", - "title": "Items", - "type": "object", - "required": [ - "name", - "uri_check", - "e_code", - "e_string", - "m_string", - "m_code", - "known", - "cat" - ], - "properties": { - "name": { - "$id": "#root/sites/items/name", - "title": "Name", - "type": "string", - "default": "", - "examples": [ - "101010.pl" - ], - "pattern": "^.*$" - }, - "uri_check": { - "$id": "#root/sites/items/uri_check", - "title": "Uri_check", - "type": "string", - "default": "", - "examples": [ - "https://101010.pl/@{account}" - ], - "pattern": "^.*$" - }, - "uri_pretty": { - "$id": "#root/sites/items/uri_pretty", - "title": "Uri_pretty", - "type": "string", - "default": "", - "examples": [ - "https://101010.pl/@{account}" - ], - "pattern": "^.*$" - }, - "post_body": { - "$id": "#root/sites/items/post_body", - "title": "Post_body", - "type": "string", - "default": "", - "examples": [ - "" - ], - "pattern": "^.*$" - }, - "strip_bad_char": { - "$id": "#root/sites/items/strip_bad_char", - "title": "Strip_bad_char", - "type": "string", - "default": "", - "examples": [ - "." - ], - "pattern": "^.*$" - }, - "e_code": { - "$id": "#root/sites/items/e_code", - "title": "E_code", - "type": "integer", - "default": "", - "examples": [ - 200 - ], - "pattern": "^.*$" - }, - "e_string": { - "$id": "#root/sites/items/e_string", - "title": "E_string", - "type": "string", - "default": "", - "examples": [ - "@101010.pl" - ], - "pattern": "^.*$" - }, - "m_string": { - "$id": "#root/sites/items/m_string", - "title": "M_string", - "type": "string", - "default": "", - "examples": [ - "The page you are looking for isn't here." - ], - "pattern": "^.*$" - }, - "m_code": { - "$id": "#root/sites/items/m_code", - "title": "M_code", - "type": "integer", - "default": "", - "examples": [ - 404 - ], - "pattern": "^.*$" - }, - "known": { - "$id": "#root/sites/items/known", - "title": "Known", - "type": "array", - "default": [], - "items":{ - "$id": "#root/sites/items/known/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - "szekspir" - ], - "pattern": "^.*$" - } - }, - "cat": { - "$id": "#root/sites/items/cat", - "title": "Cat", - "type": "string", - "default": "", - "examples": [ - "social" - ], - "pattern": "^.*$" - }, - "valid": { - "$id": "#root/sites/items/valid", - "title": "Valid", - "type": "boolean", - "examples": [ - true - ], - "default": "" - }, - "protection": { - "$id": "#root/sites/items/protection", - "title": "Protection", - "type": "array", - "default": [], - "items":{ - "$id": "#root/sites/items/protection/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - "cloudflare", "captcha" - ], - "pattern": "^.*$" - } - }, - "headers": { - "$id": "#root/sites/items/headers", - "title": "Headers", - "type": "object", - "default": [], - "items":{ - "$id": "#root/sites/items/headers/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - {"accept": "text/html"} - ], - "pattern": "^.*$" - } - } - } - } - - } - } -} + "definitions": {}, + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://example.com/object1658520065.json", + "title": "Root", + "type": "object", + "required": [ + "license", + "authors", + "categories", + "sites" + ], + "properties": { + "license": { + "$id": "#root/license", + "title": "License", + "type": "array", + "default": [], + "items": { + "$id": "#root/license/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + "Copyright (C) 2025 Micah Hoffman" + ], + "pattern": "^.*$" + } + }, + "authors": { + "$id": "#root/authors", + "title": "Authors", + "type": "array", + "default": [], + "items": { + "$id": "#root/authors/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + "WebBreacher" + ], + "pattern": "^.*$" + } + }, + "categories": { + "$id": "#root/categories", + "title": "Categories", + "type": "array", + "default": [], + "items": { + "$id": "#root/categories/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + "archived" + ], + "pattern": "^.*$" + } + }, + "sites": { + "$id": "#root/sites", + "title": "Sites", + "type": "array", + "default": [], + "items": { + "$id": "#root/sites/items", + "title": "Items", + "type": "object", + "required": [ + "name", + "uri_check", + "e_code", + "e_string", + "m_string", + "m_code", + "known", + "cat" + ], + "properties": { + "name": { + "$id": "#root/sites/items/name", + "title": "Name", + "type": "string", + "default": "", + "examples": [ + "101010.pl" + ], + "pattern": "^.*$" + }, + "uri_check": { + "$id": "#root/sites/items/uri_check", + "title": "Uri_check", + "type": "string", + "default": "", + "examples": [ + "https://101010.pl/@{account}" + ], + "pattern": "^.*$" + }, + "uri_pretty": { + "$id": "#root/sites/items/uri_pretty", + "title": "Uri_pretty", + "type": "string", + "default": "", + "examples": [ + "https://101010.pl/@{account}" + ], + "pattern": "^.*$" + }, + "post_body": { + "$id": "#root/sites/items/post_body", + "title": "Post_body", + "type": "string", + "default": "", + "examples": [ + "" + ], + "pattern": "^.*$" + }, + "strip_bad_char": { + "$id": "#root/sites/items/strip_bad_char", + "title": "Strip_bad_char", + "type": "string", + "default": "", + "examples": [ + "." + ], + "pattern": "^.*$" + }, + "e_code": { + "$id": "#root/sites/items/e_code", + "title": "E_code", + "type": "integer", + "default": "", + "examples": [ + 200 + ], + "pattern": "^.*$" + }, + "e_string": { + "$id": "#root/sites/items/e_string", + "title": "E_string", + "type": "string", + "default": "", + "examples": [ + "@101010.pl" + ], + "pattern": "^.*$" + }, + "m_string": { + "$id": "#root/sites/items/m_string", + "title": "M_string", + "type": "string", + "default": "", + "examples": [ + "The page you are looking for isn't here." + ], + "pattern": "^.*$" + }, + "m_code": { + "$id": "#root/sites/items/m_code", + "title": "M_code", + "type": "integer", + "default": "", + "examples": [ + 404 + ], + "pattern": "^.*$" + }, + "known": { + "$id": "#root/sites/items/known", + "title": "Known", + "type": "array", + "default": [], + "items": { + "$id": "#root/sites/items/known/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + "szekspir" + ], + "pattern": "^.*$" + } + }, + "cat": { + "$id": "#root/sites/items/cat", + "title": "Cat", + "type": "string", + "default": "", + "examples": [ + "social" + ], + "pattern": "^.*$" + }, + "valid": { + "$id": "#root/sites/items/valid", + "title": "Valid", + "type": "boolean", + "examples": [ + true + ], + "default": "" + }, + "protection": { + "$id": "#root/sites/items/protection", + "title": "Protection", + "type": "array", + "default": [], + "items": { + "$id": "#root/sites/items/protection/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + "cloudflare", + "captcha" + ], + "pattern": "^.*$" + } + }, + "headers": { + "$id": "#root/sites/items/headers", + "title": "Headers", + "type": "object", + "default": [], + "items": { + "$id": "#root/sites/items/headers/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + { + "accept": "text/html" + } + ], + "pattern": "^.*$" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/wmn-data.json b/wmn-data.json index 80e0e5e..06b5a09 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -65,7 +65,11 @@ "e_string": "profile-info__profile-data__name", "m_string": "This is not the page you're looking for", "m_code": 404, - "known": ["patricialmendro", "ginamariahoffmann", "espeworkout"], + "known": [ + "patricialmendro", + "ginamariahoffmann", + "espeworkout" + ], "cat": "social" }, { @@ -75,7 +79,10 @@ "e_string": "<meta property=", "m_string": "<title>247Sports", "m_code": 404, - "known": ["bob", "john"], + "known": [ + "bob", + "john" + ], "cat": "hobby" }, { @@ -85,7 +92,10 @@ "e_string": "Ошибка / 7dach.ru", "m_code": 404, - "known": ["lana", "svetlana"], + "known": [ + "lana", + "svetlana" + ], "cat": "social" }, { @@ -135,7 +157,10 @@ "e_string": " | about.me", "m_string": "about.me", "m_code": 404, - "known": ["john", "jill"], + "known": [ + "john", + "jill" + ], "cat": "social" }, { @@ -145,7 +170,10 @@ "e_string": "ACF Support", "m_string": "Page Not Found", "m_code": 200, - "known": ["mike", "greg"], + "known": [ + "mike", + "greg" + ], "cat": "coding" }, { @@ -155,7 +183,10 @@ "e_string": "creator-stat subscriber", "m_string": "<title>Page Not Found |", "m_code": 404, - "known": ["justjessicarabbit", "savannah250xo"], + "known": [ + "justjessicarabbit", + "savannah250xo" + ], "cat": "xx NSFW xx" }, { @@ -165,7 +196,10 @@ "e_string": "Glamour Escorts ", "m_string": "Page not found - Adult Forum Gr", "m_code": 404, - "known": ["nastya3", "ekaterina"], + "known": [ + "nastya3", + "ekaterina" + ], "cat": "xx NSFW xx" }, { @@ -175,7 +209,10 @@ "e_string": "Last login:", "m_string": "<title> Not Found", "m_code": 404, - "known": ["laura", "sara"], + "known": [ + "laura", + "sara" + ], "cat": "xx NSFW xx" }, { @@ -185,7 +222,10 @@ "e_string": "Profile | ADVFN", "m_string": "ADVFN ERROR - Page Not Found", "m_code": 404, - "known": ["crypto", "crypto1"], + "known": [ + "crypto", + "crypto1" + ], "cat": "finance" }, { @@ -196,7 +236,10 @@ "e_string": "primary_group_name", "m_string": "he requested URL or resource could not be found.", "m_code": 404, - "known": ["hannah", "addison"], + "known": [ + "hannah", + "addison" + ], "cat": "social" }, { @@ -206,7 +249,10 @@ "e_string": "'s Profile | Airliners Members | Airliners.net", "m_string": "An Error Occurred", "m_code": 404, - "known": ["pilot", "pilota"], + "known": [ + "pilot", + "pilota" + ], "cat": "social" }, { @@ -216,7 +262,10 @@ "e_string": " - Аудиокниги Клуб</title", "m_string": "К сожалению, такой страницы не существует. Вероятно, она была удалена с сервера, либо ее здесь никогда не было.", "m_code": 200, - "known": ["bob", "blue"], + "known": [ + "bob", + "blue" + ], "cat": "hobby" }, { @@ -227,7 +276,10 @@ "e_string": "500 Post tymczasowo niedostępny", "m_string": "404 Nie znaleziono użytkownika", "m_code": 200, - "known": ["GazetaPolska", "GPCodziennie"], + "known": [ + "GazetaPolska", + "GPCodziennie" + ], "cat": "social" }, { @@ -237,7 +289,10 @@ "e_string": "Vizitka – Alík.cz", "m_string": "Vizitka nenalezena", "m_code": 404, - "known": ["igor", "pavel"], + "known": [ + "igor", + "pavel" + ], "cat": "social" }, { @@ -247,7 +302,10 @@ "e_string": "message", "m_string": "Page not found", "m_code": 404, - "known": ["blue", "goddessbecca"], + "known": [ + "blue", + "goddessbecca" + ], "cat": "social" }, { @@ -257,7 +315,10 @@ "e_string": "Perfil de", "m_string": "\"error\":\"Not Found\"", "m_code": 404, - "known": ["edmilson", "jonathan"], + "known": [ + "edmilson", + "jonathan" + ], "cat": "tech" }, { @@ -267,7 +328,10 @@ "e_string": "画像一覧", "m_string": "削除された可能性がございます。", "m_code": 404, - "known": ["ereko-blog", "senpai"], + "known": [ + "ereko-blog", + "senpai" + ], "cat": "blog" }, { @@ -277,7 +341,10 @@ "e_string": "Articles &", "m_string": "American Thinker", "m_code": 301, - "known": ["terrypaulding", "monicashowalter"], + "known": [ + "terrypaulding", + "monicashowalter" + ], "cat": "political" }, { @@ -289,7 +356,10 @@ "e_string": "\"id\":", "m_string": "Not Found", "m_code": 404, - "known": ["test", "johndoe"], + "known": [ + "test", + "johndoe" + ], "cat": "social", "headers": { "accept": "application/json", @@ -305,9 +375,14 @@ "e_string": "\"msg\":\"Username is unavailable\"", "m_string": "\"status\":\"ok\"", "m_code": 200, - "known": ["zala", "lindapearl"], + "known": [ + "zala", + "lindapearl" + ], "cat": "social", - "protection": ["cloudflare"], + "protection": [ + "cloudflare" + ], "headers": { "Content-Type": "application/json" } @@ -319,7 +394,10 @@ "e_string": "Show followings", "m_string": "Page not found!", "m_code": 302, - "known": ["john", "peter"], + "known": [ + "john", + "peter" + ], "cat": "social" }, { @@ -330,7 +408,10 @@ "e_string": "\"id\":", "m_string": "class=\"error-body\"", "m_code": 404, - "known": ["abolfazlxmaster", "siahkolah"], + "known": [ + "abolfazlxmaster", + "siahkolah" + ], "cat": "social" }, { @@ -341,14 +422,17 @@ "e_string": "platformInfo", "m_string": "CollectorResultStatus::NotFound", "m_code": 404, - "known": ["tttcheekyttt", "RollsRoyce_Dawn"], + "known": [ + "tttcheekyttt", + "RollsRoyce_Dawn" + ], "cat": "gaming", "headers": { - "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", "Accept-Language": "en-US,en;q=0.5", "Origin": "https://apex.tracker.gg", "Referer": "https://apex.tracker.gg/", - "TE": "trailers" + "TE": "trailers", + "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" } }, { @@ -358,7 +442,10 @@ "e_string": "User Profile", "m_string": "Go back to our", "m_code": 301, - "known": ["mikec", "varunkumarb0001"], + "known": [ + "mikec", + "varunkumarb0001" + ], "cat": "tech" }, { @@ -369,7 +456,10 @@ "e_string": "\"id\":", "m_string": "[]", "m_code": 200, - "known": ["morganamilo", "nl6720"], + "known": [ + "morganamilo", + "nl6720" + ], "cat": "social" }, { @@ -379,7 +469,10 @@ "e_string": "class=\"user home\"", "m_string": "class=\"system errors error-404 region\"", "m_code": 404, - "known": ["test", "john"], + "known": [ + "test", + "john" + ], "cat": "hobby" }, { @@ -390,7 +483,10 @@ "e_string": "\"userid\":", "m_string": "\"missing\":true", "m_code": 200, - "known": ["Lahwaacz", "Erus_Iluvatar"], + "known": [ + "Lahwaacz", + "Erus_Iluvatar" + ], "cat": "social" }, { @@ -400,7 +496,10 @@ "e_string": "| Arduino Project Hub", "m_string": "Arduino Project Hub", "m_code": 404, - "known": ["peter", "john"], + "known": [ + "peter", + "john" + ], "cat": "tech" }, { @@ -410,7 +509,10 @@ "e_string": "about", "m_string": "404: Oh Noes!", "m_code": 302, - "known": ["john", "sammy"], + "known": [ + "john", + "sammy" + ], "cat": "gaming" }, { @@ -420,7 +522,10 @@ "e_string": "", "m_string": "Not found:", "m_code": 404, - "known": ["dolores", "cyborghyena"], + "known": [ + "dolores", + "cyborghyena" + ], "cat": "art" }, { @@ -430,7 +535,10 @@ "e_string": "Member Since", "m_string": "The page you requested wasn't there when we tried to get it for you. What a bother!", "m_code": 404, - "known": ["luluc0", "MuraArts"], + "known": [ + "luluc0", + "MuraArts" + ], "cat": "art" }, { @@ -440,7 +548,10 @@ "e_string": "Portfolio", "m_string": "Page not found", "m_code": 404, - "known": ["kongaxl_design", "alex_pi"], + "known": [ + "kongaxl_design", + "alex_pi" + ], "cat": "art" }, { @@ -450,7 +561,10 @@ "e_string": "class=\"profile-page\"", "m_string": "<h1>404 Not Found</h1>", "m_code": 404, - "known": ["john", "red"], + "known": [ + "john", + "red" + ], "cat": "coding" }, { @@ -460,7 +574,10 @@ "e_string": "<h3>Contest Status</h3>", "m_string": ">404 Page Not Found</h1>", "m_code": 404, - "known": ["apiad", "kotatsugame"], + "known": [ + "apiad", + "kotatsugame" + ], "cat": "coding" }, { @@ -470,7 +587,10 @@ "e_string": "Лоты пользователя ", "m_string": "Пользователь не найден", "m_code": 404, - "known": ["Svetlana7", "nastya"], + "known": [ + "Svetlana7", + "nastya" + ], "cat": "misc" }, { @@ -480,7 +600,10 @@ "e_string": "s profile on AudioJungle", "m_string": "404 - Nothing to see here", "m_code": 404, - "known": ["john", "reds"], + "known": [ + "john", + "reds" + ], "cat": "music" }, { @@ -490,13 +613,16 @@ "e_string": "My Activity", "m_string": "The user you requested cannot be found.", "m_code": 302, - "known": ["Thayne", "Admin"], + "known": [ + "Thayne", + "Admin" + ], "cat": "music", "headers": { - "Host": "community.avid.com", - "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8", - "Cache-Control": "no-cache" + "Cache-Control": "no-cache", + "Host": "community.avid.com", + "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" } }, { @@ -506,7 +632,10 @@ "e_string": "'s Page", "m_string": "Profile not found", "m_code": 404, - "known": ["cherry", "betty"], + "known": [ + "cherry", + "betty" + ], "cat": "xx NSFW xx" }, { @@ -517,7 +646,10 @@ "e_string": "user_badges", "m_string": "The requested URL or resource could not be found", "m_code": 404, - "known": ["baemax023", "scottycarsonmvp"], + "known": [ + "baemax023", + "scottycarsonmvp" + ], "cat": "social" }, { @@ -527,7 +659,10 @@ "e_string": " collection | Bandcamp", "m_string": "

Sorry, that something isn’t here.

", "m_code": 404, - "known": ["alice", "bob"], + "known": [ + "alice", + "bob" + ], "cat": "music" }, { @@ -538,7 +673,10 @@ "e_string": "about", "m_string": "Couldn't find any matching element, it might be deleted", "m_code": 404, - "known": ["rave_flawless", "delutaya"], + "known": [ + "rave_flawless", + "delutaya" + ], "cat": "music" }, { @@ -548,7 +686,10 @@ "e_string": ") — дневник на Babyblog.ru", "m_string": "БэбиБлог - беременность, календарь беременности, дневники", "m_code": 200, - "known": ["joyfitnessdance1", "bobkokatya94"], + "known": [ + "joyfitnessdance1", + "bobkokatya94" + ], "cat": "misc" }, { @@ -559,7 +700,10 @@ "e_string": "login", "m_string": "This blog doesn't exist.", "m_code": 200, - "known": ["themunch", "shibari4all"], + "known": [ + "themunch", + "shibari4all" + ], "cat": "xx NSFW xx" }, { @@ -569,7 +713,10 @@ "e_string": "Profile", "m_string": "BDSM Singles", "m_code": 302, - "known": ["GoddessBlueDiamo", "aalama"], + "known": [ + "GoddessBlueDiamo", + "aalama" + ], "cat": "xx NSFW xx" }, { @@ -579,9 +726,15 @@ "e_string": " - Link in Bio & Creator Tools | Beacons", "m_string": "The page you are looking for does not seem to exist anymore", "m_code": 200, - "known": ["rafaballerini", "lexaloco", "jardred"], + "known": [ + "rafaballerini", + "lexaloco", + "jardred" + ], "cat": "social", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Bentbox", @@ -590,7 +743,11 @@ "e_string": "
", "m_string": "This user is currently not available", "m_code": 200, - "known": ["brockdoom", "witchhouse", "hotoptics"], + "known": [ + "brockdoom", + "witchhouse", + "hotoptics" + ], "cat": "xx NSFW xx" }, { @@ -600,7 +757,10 @@ "e_string": "href=\"https://bento.me/explore\"", "m_string": ">Available!
", "m_code": 404, - "known": ["carlito", "taylor"], + "known": [ + "carlito", + "taylor" + ], "cat": "social" }, { @@ -610,7 +770,10 @@ "e_string": "| BiggerPockets", "m_string": "Page not found", "m_code": 404, - "known": ["trustgreene", "chasel9"], + "known": [ + "trustgreene", + "chasel9" + ], "cat": "finance" }, { @@ -620,7 +783,10 @@ "e_string": "userInfo:{nickName", "m_string": "userInfo:{}", "m_code": 200, - "known": ["treasdior", "Jacin19"], + "known": [ + "treasdior", + "Jacin19" + ], "cat": "gaming" }, { @@ -630,7 +796,10 @@ "e_string": "- 🚲 Bikemap", "m_string": "Page not found - Error 404 ", "m_code": 404, - "known": ["mike", "greg"], + "known": [ + "mike", + "greg" + ], "cat": "health" }, { @@ -640,7 +809,10 @@ "e_string": "<title>User ", "m_string": "Page not found", "m_code": 404, - "known": ["john", "db"], + "known": [ + "john", + "db" + ], "cat": "tech" }, { @@ -650,7 +822,10 @@ "e_string": "section\":{\"handles", "m_string": "This site no longer exists", "m_code": 404, - "known": ["leticiabufoni", "kayurkaRhea"], + "known": [ + "leticiabufoni", + "kayurkaRhea" + ], "cat": "social" }, { @@ -660,7 +835,10 @@ "e_string": "profile:username", "m_string": "The page you’re looking for doesn’t exist", "m_code": 404, - "known": ["adli_hm", "jake"], + "known": [ + "adli_hm", + "jake" + ], "cat": "misc" }, { @@ -671,7 +849,10 @@ "e_string": "full_name", "m_string": "No workspace with identifier", "m_code": 404, - "known": ["LaNMaSteR53", "osamahalisawi"], + "known": [ + "LaNMaSteR53", + "osamahalisawi" + ], "cat": "coding" }, { @@ -683,7 +864,11 @@ "e_string": "\"channel_id\":", "m_string": "\"errors\":", "m_code": 404, - "known": ["simon_parkes", "americafloats", "daindor"], + "known": [ + "simon_parkes", + "americafloats", + "daindor" + ], "cat": "political", "headers": { "Content-Type": "application/json" @@ -696,7 +881,10 @@ "e_string": "shadow-light user-stats", "m_string": "Sorry, the blog you were looking for does not exist.", "m_code": 405, - "known": ["07333944864481878697", "05941544278367416980"], + "known": [ + "07333944864481878697", + "05941544278367416980" + ], "cat": "blog" }, { @@ -706,7 +894,10 @@ "e_string": "Informacje ogólne", "m_string": "Niepoprawny adres.", "m_code": 200, - "known": ["naukowa", "izkpaw"], + "known": [ + "naukowa", + "izkpaw" + ], "cat": "blog" }, { @@ -716,7 +907,10 @@ "e_string": "class=\"mark\"", "m_string": "", "m_code": 200, - "known": ["test", "mike"], + "known": [ + "test", + "mike" + ], "cat": "misc" }, { @@ -727,7 +921,9 @@ "e_string": "Blogger Template Style", "m_string": "Blog not found", "m_code": 404, - "known": ["test"], + "known": [ + "test" + ], "cat": "blog" }, { @@ -737,7 +933,10 @@ "e_string": "on Bluesky", "m_string": "<p id=\"bsky_did\"></p>", "m_code": 200, - "known": ["bsky.app", "safety.bsky.app"], + "known": [ + "bsky.app", + "safety.bsky.app" + ], "cat": "social" }, { @@ -748,7 +947,10 @@ "e_string": "\"handle\":\"", "m_string": "\"message\":\"Profile not found\"", "m_code": 400, - "known": ["john", "mark"], + "known": [ + "john", + "mark" + ], "cat": "social" }, { @@ -759,7 +961,10 @@ "e_string": "\"message\":\"Sorry, this username is already taken.\"", "m_string": "\"isValid\":true", "m_code": 200, - "known": ["ntrautner", "Petdoc"], + "known": [ + "ntrautner", + "Petdoc" + ], "cat": "gaming" }, { @@ -770,7 +975,9 @@ "e_string": "username", "m_string": "data\" :\"\"", "m_code": 200, - "known": ["mike"], + "known": [ + "mike" + ], "cat": "health" }, { @@ -780,7 +987,10 @@ "e_string": "Chat público ao vivo de", "m_string": "Câmaras de sexo free: chat pornô ao vivo", "m_code": 404, - "known": ["prettykatea", "milaowens"], + "known": [ + "prettykatea", + "milaowens" + ], "cat": "xx NSFW xx" }, { @@ -790,7 +1000,10 @@ "e_string": "Recent Book Activity", "m_string": "Sorry, we were unable to locate the content that you requested.", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "hobby" }, { @@ -800,7 +1013,10 @@ "e_string": "<title>Profil de", "m_string": "<title>Page non trouvée", "m_code": 404, - "known": ["Paraffine", "chanoa"], + "known": [ + "Paraffine", + "chanoa" + ], "cat": "hobby" }, { @@ -810,7 +1026,10 @@ "e_string": "- exclusive content on Boosty", "m_string": "Blog not found", "m_code": 200, - "known": ["evdokia", "lana"], + "known": [ + "evdokia", + "lana" + ], "cat": "social" }, { @@ -821,7 +1040,10 @@ "e_string": "- BOOTH", "m_string": "BOOTH - The International Indie Art Marketplace", "m_code": 302, - "known": ["monoliorder", "hasya"], + "known": [ + "monoliorder", + "hasya" + ], "cat": "shopping" }, { @@ -831,7 +1053,10 @@ "e_string": "Member since:", "m_string": "{name}

", "m_code": 200, - "known": ["lowlead", "vwong19"], + "known": [ + "lowlead", + "vwong19" + ], "cat": "hobby" }, { @@ -842,7 +1067,10 @@ "e_string": "\"widgets\":", "m_string": "class='cc-error-page__msg'", "m_code": 404, - "known": ["lopseg", "Ebrietas"], + "known": [ + "lopseg", + "Ebrietas" + ], "cat": "tech" }, { @@ -852,7 +1080,10 @@ "e_string": "username", "m_string": "The requested URL or resource could not be found.", "m_code": 404, - "known": ["blacktide", "honey"], + "known": [ + "blacktide", + "honey" + ], "cat": "social" }, { @@ -864,9 +1095,14 @@ "e_string": "\"available\":false", "m_string": "\"available\":true", "m_code": 200, - "known": ["freebird", "robinwong"], + "known": [ + "freebird", + "robinwong" + ], "cat": "finance", - "protection": ["cloudflare"], + "protection": [ + "cloudflare" + ], "headers": { "Content-Type": "application/json" } @@ -878,7 +1114,10 @@ "e_string": " on BuzzFeed", "m_string": "Es posible que el enlace que seleccionaste esté roto o que se haya eliminado la página", "m_code": 404, - "known": ["braftty", "guillermo"], + "known": [ + "braftty", + "guillermo" + ], "cat": "misc" }, { @@ -898,7 +1140,10 @@ "e_string": "og:author", "m_string": "Sorry, but the page you were looking for could not be found.", "m_code": 404, - "known": ["honey", "roger"], + "known": [ + "honey", + "roger" + ], "cat": "misc" }, { @@ -908,7 +1153,10 @@ "e_string": "aggregateRating", "m_string": "", "m_code": 301, - "known": ["michael_owen10", "sarahall3"], + "known": [ + "michael_owen10", + "sarahall3" + ], "cat": "shopping" }, { @@ -919,7 +1167,10 @@ "e_string": "s online portfolio", "m_string": "site not found", "m_code": 404, - "known": ["jenny", "bob"], + "known": [ + "jenny", + "bob" + ], "cat": "hobby" }, { @@ -929,7 +1180,10 @@ "e_string": "— Хабр Карьера", "m_string": "Ошибка 404", "m_code": 404, - "known": ["alex", "bob"], + "known": [ + "alex", + "bob" + ], "cat": "business" }, { @@ -940,7 +1194,10 @@ "e_string": "( Made with Carrd )", "m_string": "Sorry, the requested page could not be found.", "m_code": 404, - "known": ["liam", "peter"], + "known": [ + "liam", + "peter" + ], "cat": "business" }, { @@ -950,7 +1207,10 @@ "e_string": "| Casting Call Club", "m_string": "404: This is not the page you were looking for. In the future, our AI robot overlords will be able to better predict exactly what you were looking for.", "m_code": 302, - "known": ["Lindz", "Danye"], + "known": [ + "Lindz", + "Danye" + ], "cat": "hobby" }, { @@ -960,7 +1220,10 @@ "e_string": "Lista gier:", "m_string": "Coś się popsuło...", "m_code": 404, - "known": ["saczuan", "cormac"], + "known": [ + "saczuan", + "cormac" + ], "cat": "gaming" }, { @@ -970,7 +1233,10 @@ "e_string": "Foldery", "m_string": "Strona na którą chcesz wejść nie istnieje", "m_code": 200, - "known": ["test2", "janek"], + "known": [ + "test2", + "janek" + ], "cat": "video" }, { @@ -981,7 +1247,10 @@ "e_string": "\"id\":", "m_string": "\"results\":[]", "m_code": 200, - "known": ["alex", "ben"], + "known": [ + "alex", + "ben" + ], "cat": "social" }, { @@ -992,7 +1261,11 @@ "e_string": "created_at", "m_string": "The requested URL or resource could not be found.", "m_code": 404, - "known": ["masiball", "anel_hadzyc", "kiminaze"], + "known": [ + "masiball", + "anel_hadzyc", + "kiminaze" + ], "cat": "gaming" }, { @@ -1002,7 +1275,10 @@ "e_string": "Личный профил", "m_string": "Извините, запрашиваемая страница не найдена", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "news" }, { @@ -1012,7 +1288,10 @@ "e_string": "W serwisie od", "m_string": "Strona nie istnieje.", "m_code": 404, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "images" }, { @@ -1022,7 +1301,12 @@ "e_string": "Chatango!", "m_string": "<title>Unknown User!", "m_code": 200, - "known": ["7nights", "merbailey", "steakomura", "equicentric"], + "known": [ + "7nights", + "merbailey", + "steakomura", + "equicentric" + ], "cat": "social" }, { @@ -1032,7 +1316,10 @@ "e_string": "'s Bio and Free Webcam", "m_string": "It's probably just a broken link", "m_code": 404, - "known": ["pussylovekate", "kemii"], + "known": [ + "pussylovekate", + "kemii" + ], "cat": "xx NSFW xx" }, { @@ -1042,7 +1329,9 @@ "e_string": "profile-header", "m_string": "<title>Home - ", "m_code": 302, - "known": ["john"], + "known": [ + "john" + ], "cat": "hobby" }, { @@ -1053,7 +1342,11 @@ "e_string": "player_id", "m_string": "not found", "m_code": 404, - "known": ["john", "peter", "josh"], + "known": [ + "john", + "peter", + "josh" + ], "cat": "gaming" }, { @@ -1063,7 +1356,10 @@ "e_string": "Foldery", "m_string": "Chomik o takiej nazwie nie istnieje", "m_code": 404, - "known": ["test", "test2"], + "known": [ + "test", + "test2" + ], "cat": "misc" }, { @@ -1073,7 +1369,10 @@ "e_string": "When I'm not reading erotica I like to read", "m_string": "Sorry, I got distracted...", "m_code": 404, - "known": ["joe", "carlos01"], + "known": [ + "joe", + "carlos01" + ], "cat": "xx NSFW xx" }, { @@ -1084,7 +1383,10 @@ "e_string": "user_avatar", "m_string": "The requested URL or resource could not be found", "m_code": 404, - "known": ["carl", "morten"], + "known": [ + "carl", + "morten" + ], "cat": "tech" }, { @@ -1094,7 +1396,10 @@ "e_string": "\"user\":", "m_string": "404", "m_code": 404, - "known": ["kirbyplessas", "rohan"], + "known": [ + "kirbyplessas", + "rohan" + ], "cat": "social" }, { @@ -1104,7 +1409,10 @@ "e_string": "Member Since:", "m_string": "Page Not Found (404) - CNET", "m_code": 301, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "news" }, { @@ -1114,7 +1422,10 @@ "e_string": "- Coda Profile", "m_string": "Coda | Page not found - Coda", "m_code": 404, - "known": ["huizer", "kennywong"], + "known": [ + "huizer", + "kennywong" + ], "cat": "hobby" }, { @@ -1124,7 +1435,10 @@ "e_string": "Member since", "m_string": "Unable to load the requested member's information", "m_code": 200, - "known": ["WmCraig", "Rick-York"], + "known": [ + "WmCraig", + "Rick-York" + ], "cat": "coding" }, { @@ -1134,7 +1448,10 @@ "e_string": "Joined on", "m_string": "The page you are trying to reach either", "m_code": 404, - "known": ["dachary", "happy"], + "known": [ + "dachary", + "happy" + ], "cat": "coding" }, { @@ -1144,7 +1461,10 @@ "e_string": " Profile - ", "m_string": "Oops! That page doesn’t exist", "m_code": 404, - "known": ["doctypeme", "ocean.war"], + "known": [ + "doctypeme", + "ocean.war" + ], "cat": "coding" }, { @@ -1154,7 +1474,10 @@ "e_string": "class=\"user-profile-container\"", "m_string": "", "m_code": 302, - "known": ["maroonrk", "lyrically"], + "known": [ + "maroonrk", + "lyrically" + ], "cat": "coding" }, { @@ -1165,7 +1488,10 @@ "e_string": "\"status\":\"OK\"", "m_string": "\"status\":\"FAILED\"", "m_code": 400, - "known": ["Abdul01", "Abdullah"], + "known": [ + "Abdul01", + "Abdullah" + ], "cat": "coding" }, { @@ -1175,7 +1501,10 @@ "e_string": "ABOUT ME", "m_string": "404/favicon.png", "m_code": 404, - "known": ["e4c5", "juanelfers"], + "known": [ + "e4c5", + "juanelfers" + ], "cat": "coding" }, { @@ -1185,7 +1514,10 @@ "e_string": "s profile |", "m_string": "404! Our feels when that url is used", "m_code": 404, - "known": ["john", "test"], + "known": [ + "john", + "test" + ], "cat": "coding" }, { @@ -1195,7 +1527,10 @@ "e_string": "| Codewars", "m_string": "Whoops! The page you were looking for doesn't seem to exist.", "m_code": 404, - "known": ["john", "reds"], + "known": [ + "john", + "reds" + ], "cat": "coding" }, { @@ -1205,7 +1540,10 @@ "e_string": "Color lovin' since", "m_string": "Lover has gone missing", "m_code": 410, - "known": ["amorremanet", "bezzalopoly"], + "known": [ + "amorremanet", + "bezzalopoly" + ], "cat": "hobby" }, { @@ -1215,7 +1553,10 @@ "e_string": "UserSearchItemContainer", "m_string": "No search results found.", "m_code": 200, - "known": ["test", "janet"], + "known": [ + "test", + "janet" + ], "cat": "tech" }, { @@ -1225,7 +1566,10 @@ "e_string": "Información Personal", "m_string": "Desde 2001 conectando gente!", "m_code": 302, - "known": ["danijak", "darkfox"], + "known": [ + "danijak", + "darkfox" + ], "cat": "xx NSFW xx" }, { @@ -1235,7 +1579,10 @@ "e_string": "portfolio", "m_string": "Looking for something?", "m_code": 404, - "known": ["john", "blue"], + "known": [ + "john", + "blue" + ], "cat": "art" }, { @@ -1246,7 +1593,10 @@ "e_string": "\"user_id\":", "m_string": "\"error\":\"Unhandled exception\"", "m_code": 404, - "known": ["djantidog", "mcnorington"], + "known": [ + "djantidog", + "mcnorington" + ], "cat": "social" }, { @@ -1256,7 +1606,10 @@ "e_string": "- Channel on Coub", "m_string": "Sorry, that page doesn't exist.", "m_code": 404, - "known": ["dmitry.kozhevnikov", "idesignking"], + "known": [ + "dmitry.kozhevnikov", + "idesignking" + ], "cat": "misc", "headers": { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" @@ -1269,7 +1622,10 @@ "e_string": " - Cowboys 4 Angels", "m_string": "Error Page not found", "m_code": 404, - "known": ["jaxjames", "jordan-2"], + "known": [ + "jaxjames", + "jordan-2" + ], "cat": "xx NSFW xx" }, { @@ -1279,7 +1635,10 @@ "e_string": "Member Since", "m_string": "", "m_code": 302, - "known": ["mbattagl", "Hatchback"], + "known": [ + "mbattagl", + "Hatchback" + ], "cat": "social" }, { @@ -1289,7 +1648,10 @@ "e_string": "Cracked.io - Profile of", "m_string": "The member you specified is either invalid or doesn't exist", "m_code": 404, - "known": ["RealPsycho", "SamWinchester"], + "known": [ + "RealPsycho", + "SamWinchester" + ], "cat": "social" }, { @@ -1300,7 +1662,10 @@ "e_string": "Portfolio", "m_string": "Site not found :-(", "m_code": 404, - "known": ["john", "red"], + "known": [ + "john", + "red" + ], "cat": "images" }, { @@ -1310,7 +1675,10 @@ "e_string": "id=\"profile-page\"", "m_string": "class=\"error-page\"", "m_code": 404, - "known": ["erga", "peter"], + "known": [ + "erga", + "peter" + ], "cat": "hobby" }, { @@ -1320,7 +1688,10 @@ "e_string": "All the 3D models of", "m_string": "Oh dear, this page is not working!", "m_code": 404, - "known": ["Bstar3Dart", "john"], + "known": [ + "Bstar3Dart", + "john" + ], "cat": "hobby" }, { @@ -1330,7 +1701,10 @@ "e_string": "Joined", "m_string": "Profile not found", "m_code": 404, - "known": ["nyala", "speedymlg7"], + "known": [ + "nyala", + "speedymlg7" + ], "cat": "gaming" }, { @@ -1340,7 +1714,10 @@ "e_string": "id=\"userData\"", "m_string": "Page not found! (404)", "m_code": 404, - "known": ["msouza", "kos"], + "known": [ + "msouza", + "kos" + ], "cat": "news" }, { @@ -1350,7 +1727,10 @@ "e_string": ". Дарудар", "m_string": "404. Дару~дар: миру~мир!", "m_code": 404, - "known": ["svetlana7", "igor"], + "known": [ + "svetlana7", + "igor" + ], "cat": "misc" }, { @@ -1360,7 +1740,10 @@ "e_string": "About me", "m_string": "The page you are looking for does not exist", "m_code": 404, - "known": ["shime", "janeferater"], + "known": [ + "shime", + "janeferater" + ], "cat": "dating" }, { @@ -1370,7 +1753,10 @@ "e_string": "profile_status", "m_string": "404: page not found", "m_code": 200, - "known": ["maniektwist", "carllos"], + "known": [ + "maniektwist", + "carllos" + ], "cat": "xx NSFW xx" }, { @@ -1380,7 +1766,10 @@ "e_string": "| dating.ru", "m_string": "Такой страницы не существует.", "m_code": 404, - "known": ["john", "blue"], + "known": [ + "john", + "blue" + ], "cat": "dating" }, { @@ -1390,7 +1779,10 @@ "e_string": "Z nami od:", "m_string": "Użytkownik o podanym pseudonimie nie istnieje.", "m_code": 200, - "known": ["test", "test2"], + "known": [ + "test", + "test2" + ], "cat": "images" }, { @@ -1400,7 +1792,10 @@ "e_string": "s Shop - Depop", "m_string": "Sorry, that page doesn't exist", "m_code": 404, - "known": ["sara", "susan"], + "known": [ + "sara", + "susan" + ], "cat": "shopping" }, { @@ -1410,7 +1805,10 @@ "e_string": "has discovered on Designspiration", "m_string": "Content Not Found", "m_code": 404, - "known": ["sam", "smith"], + "known": [ + "sam", + "smith" + ], "cat": "art" }, { @@ -1421,7 +1819,10 @@ "e_string": "\"userName\":", "m_string": "\"errorMessage\":\"Error happened.\"", "m_code": 400, - "known": ["skromnuy_fifa", "wudjer"], + "known": [ + "skromnuy_fifa", + "wudjer" + ], "cat": "finance" }, { @@ -1431,7 +1832,11 @@ "e_string": "Follow", "m_string": "Error in query", "m_code": 200, - "known": ["john", "alice", "bob"], + "known": [ + "john", + "alice", + "bob" + ], "cat": "social" }, { @@ -1441,9 +1846,14 @@ "e_string": "\"@id\":", "m_string": "class=\"not-found-page base-background-color\"", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "coding", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "DeviantArt", @@ -1452,7 +1862,10 @@ "e_string": " | DeviantArt", "m_string": "DeviantArt: 404", "m_code": 404, - "known": ["rattybike", "john"], + "known": [ + "rattybike", + "john" + ], "cat": "images" }, { @@ -1462,7 +1875,10 @@ "e_string": "Joined devRant on", "m_string": "", "m_code": 302, - "known": ["dfox", "trogus"], + "known": [ + "dfox", + "trogus" + ], "cat": "coding" }, { @@ -1472,7 +1888,10 @@ "e_string": "Reputa", "m_string": "404 Not Found", "m_code": 404, - "known": ["carlos01", "eduardo"], + "known": [ + "carlos01", + "eduardo" + ], "cat": "gaming" }, { @@ -1482,7 +1901,10 @@ "e_string": "Viewing profile - ", "m_string": "The requested user does not exist", "m_code": 404, - "known": ["Mike01", "John"], + "known": [ + "Mike01", + "John" + ], "cat": "gaming" }, { @@ -1492,7 +1914,10 @@ "e_string": "Add to contacts", "m_string": "An Error Has Occurred", "m_code": 404, - "known": ["fractalhue", "rid"], + "known": [ + "fractalhue", + "rid" + ], "cat": "business" }, { @@ -1502,7 +1927,10 @@ "e_string": "About", "m_string": "User not found", "m_code": 404, - "known": ["JeffG1", "Maxatoria"], + "known": [ + "JeffG1", + "Maxatoria" + ], "cat": "social" }, { @@ -1513,7 +1941,10 @@ "e_string": "regist_at", "m_string": "{}", "m_code": 200, - "known": ["whoami", "johndoe"], + "known": [ + "whoami", + "johndoe" + ], "cat": "images" }, { @@ -1524,7 +1955,10 @@ "e_string": "\"id\":", "m_string": "\"message\": \"User does not exist or may have been deleted.\"", "m_code": 404, - "known": ["damiano84", "bernadette69"], + "known": [ + "damiano84", + "bernadette69" + ], "cat": "music" }, { @@ -1535,7 +1969,10 @@ "e_string": "\"channel\":", "m_string": "\"message\": \"Unknown Invite\"", "m_code": 404, - "known": ["test", "web"], + "known": [ + "test", + "web" + ], "cat": "social" }, { @@ -1546,7 +1983,10 @@ "e_string": "\"taken\":true", "m_string": "\"taken\":false", "m_code": 200, - "known": ["test", "web"], + "known": [ + "test", + "web" + ], "cat": "social", "headers": { "Content-Type": "application/json" @@ -1560,7 +2000,10 @@ "e_string": "topics", "m_string": "The requested URL or resource could not be found.", "m_code": 404, - "known": ["ndalliard", "gerhard"], + "known": [ + "ndalliard", + "gerhard" + ], "cat": "misc" }, { @@ -1570,7 +2013,10 @@ "e_string": " Profile", "m_string": "Oops!", "m_code": 404, - "known": ["whoami", "johndoe"], + "known": [ + "whoami", + "johndoe" + ], "cat": "tech" }, { @@ -1581,7 +2027,10 @@ "e_string": "\"code\":0", "m_string": "\"code\":2", "m_code": 400, - "known": ["Aristotelian1", "50calibercat"], + "known": [ + "Aristotelian1", + "50calibercat" + ], "cat": "social" }, { @@ -1591,7 +2040,10 @@ "e_string": "Dissenter | The Comment Section of the Internet", "m_string": "That user is not registered here.", "m_code": 404, - "known": ["pryerlee", "archdukeofevil"], + "known": [ + "pryerlee", + "archdukeofevil" + ], "cat": "political" }, { @@ -1602,7 +2054,10 @@ "e_string": "\"uuid\":", "m_string": "\"orgname\":[\"", "m_code": 404, - "known": ["bitnami", "tensorflow"], + "known": [ + "bitnami", + "tensorflow" + ], "cat": "coding" }, { @@ -1613,7 +2068,10 @@ "e_string": "\"uuid\":", "m_string": "\"message\":\"User not found\"", "m_code": 404, - "known": ["dannapierskitoptal", "torvalds"], + "known": [ + "dannapierskitoptal", + "torvalds" + ], "cat": "coding" }, { @@ -1623,7 +2081,10 @@ "e_string": "Joined", "m_string": "Looks like you got lost!.", "m_code": 404, - "known": ["eric", "danielrivera10927"], + "known": [ + "eric", + "danielrivera10927" + ], "cat": "hobby" }, { @@ -1634,9 +2095,14 @@ "e_string": "\"response\":", "m_string": "\"message\":\"Not found\"", "m_code": 200, - "known": ["requiemzxc_komaru", "hexttr"], + "known": [ + "requiemzxc_komaru", + "hexttr" + ], "cat": "finance", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Donation Alerts", @@ -1646,7 +2112,10 @@ "e_string": "\"data\":", "m_string": "\"success\":false", "m_code": 202, - "known": ["gorou", "saku"], + "known": [ + "gorou", + "saku" + ], "cat": "finance" }, { @@ -1657,9 +2126,14 @@ "e_string": "\"response\":", "m_string": "\"error\":\"internal error\"", "m_code": 404, - "known": ["takaisekai", "fordmac"], + "known": [ + "takaisekai", + "fordmac" + ], "cat": "business", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "dot.cards", @@ -1668,7 +2142,10 @@ "e_string": "status\": \"success", "m_string": "status\": \"username_not_found", "m_code": 200, - "known": ["dakmusic", "jhartwell"], + "known": [ + "dakmusic", + "jhartwell" + ], "cat": "business" }, { @@ -1678,7 +2155,10 @@ "e_string": "href=\"/profile/", "m_string": ">No results found</span>", "m_code": 200, - "known": ["DotaCoachApp", "zveen"], + "known": [ + "DotaCoachApp", + "zveen" + ], "cat": "gaming" }, { @@ -1688,7 +2168,10 @@ "e_string": "class=\"page-profile\"", "m_string": "class=\"page-error\"", "m_code": 404, - "known": ["doucommunity", "volodymyrobrizan"], + "known": [ + "doucommunity", + "volodymyrobrizan" + ], "cat": "social" }, { @@ -1698,7 +2181,10 @@ "e_string": " | Dribbble", "m_string": "(404)", "m_code": 404, - "known": ["UI8", "keeplegend"], + "known": [ + "UI8", + "keeplegend" + ], "cat": "art" }, { @@ -1708,7 +2194,10 @@ "e_string": "- Professional Drone Pilot", "m_string": "(404)", "m_code": 302, - "known": ["chriskahn", "swilken"], + "known": [ + "chriskahn", + "swilken" + ], "cat": "hobby" }, { @@ -1718,7 +2207,10 @@ "e_string": "firstName\": \"", "m_string": "Page not found", "m_code": 302, - "known": ["huckcredibleshotz", "thesuccesspalette"], + "known": [ + "huckcredibleshotz", + "thesuccesspalette" + ], "cat": "hobby" }, { @@ -1729,7 +2221,10 @@ "e_string": "joinedClassroomIds", "m_string": "\"users\" : []", "m_code": 200, - "known": ["sdfsdf", "duolingo"], + "known": [ + "sdfsdf", + "duolingo" + ], "cat": "hobby" }, { @@ -1739,7 +2234,9 @@ "e_string": "День рождения", "m_string": "Пользователь не найден", "m_code": 200, - "known": ["wd"], + "known": [ + "wd" + ], "cat": "social" }, { @@ -1749,7 +2246,10 @@ "e_string": "on eBay", "m_string": "The User ID you entered was not found", "m_code": 200, - "known": ["the_gqs", "johnny"], + "known": [ + "the_gqs", + "johnny" + ], "cat": "shopping" }, { @@ -1759,7 +2259,10 @@ "e_string": "| eBay Stores", "m_string": "Sorry, this store was not found.", "m_code": 410, - "known": ["tactical", "tactical-security"], + "known": [ + "tactical", + "tactical-security" + ], "cat": "shopping" }, { @@ -1771,7 +2274,10 @@ "e_string": "\"html\":\"Username existsPlease choose another\"", "m_string": "\"html\":\"Name is available\"", "m_code": 200, - "known": ["wixel", "Gloomer"], + "known": [ + "wixel", + "Gloomer" + ], "cat": "social", "headers": { "Content-Type": "application/x-www-form-urlencoded" @@ -1784,7 +2290,10 @@ "e_string": "\"displayName\"", "m_string": ", - Engadget", "m_code": 200, - "known": ["devindra-hardawar", "kris-holt"], + "known": [ + "devindra-hardawar", + "kris-holt" + ], "cat": "tech" }, { @@ -1794,7 +2303,10 @@ "e_string": "Video/Pics views", "m_string": "Profile not found", "m_code": 404, - "known": ["LAM_2030", "DianaX814"], + "known": [ + "LAM_2030", + "DianaX814" + ], "cat": "xx NSFW xx" }, { @@ -1804,7 +2316,10 @@ "e_string": " favorite items - Etsy", "m_string": "Sorry, the member you are looking for does not exist", "m_code": 404, - "known": ["david", "happiness"], + "known": [ + "david", + "happiness" + ], "cat": "shopping" }, { @@ -1814,7 +2329,10 @@ "e_string": "id=\"user-search\"", "m_string": "", "m_code": 200, - "known": ["Dmi3yy", "Pathologic"], + "known": [ + "Dmi3yy", + "Pathologic" + ], "cat": "tech" }, { @@ -1825,7 +2343,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["jippi", "poolesen"], + "known": [ + "jippi", + "poolesen" + ], "cat": "social" }, { @@ -1835,7 +2356,10 @@ "e_string": "Marketplace", "m_string": "Not Found (404) | EyeEm", "m_code": 301, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "art" }, { @@ -1845,7 +2369,10 @@ "e_string": "@", "m_string": "Page Not Found - F3", "m_code": 404, - "known": ["nick", "john"], + "known": [ + "nick", + "john" + ], "cat": "social" }, { @@ -1855,7 +2382,11 @@ "e_string": "View Profile", "m_string": "The user you tried to view doesn't seem to be on the site any more", "m_code": 200, - "known": ["justusboth2013", "hellfireclub", "fabswingers.com"], + "known": [ + "justusboth2013", + "hellfireclub", + "fabswingers.com" + ], "cat": "dating" }, { @@ -1865,7 +2396,10 @@ "e_string": "__isProfile", "m_string": "<title>Facebook", "m_code": 200, - "known": ["john.miniolic", "adam"], + "known": [ + "john.miniolic", + "adam" + ], "cat": "social" }, { @@ -1876,7 +2410,10 @@ "e_string": "\"result\":\"OK\"", "m_string": "\"message\":\"user not found\"", "m_code": 404, - "known": ["s1mple", "w0nderful"], + "known": [ + "s1mple", + "w0nderful" + ], "cat": "gaming" }, { @@ -1886,7 +2423,10 @@ "e_string": "Zamieszcza fakty od:", "m_string": "Nie znaleziono użytkownika o podanym loginie.", "m_code": 200, - "known": ["janek", "ania"], + "known": [ + "janek", + "ania" + ], "cat": "images" }, { @@ -1897,7 +2437,10 @@ "e_string": "\"status\":true", "m_string": "\"status\":false", "m_code": 200, - "known": ["medroxy", "miaaamador"], + "known": [ + "medroxy", + "miaaamador" + ], "cat": "xx NSFW xx" }, { @@ -1907,7 +2450,10 @@ "e_string": "| Profile | Fandom", "m_string": "Not Found", "m_code": 404, - "known": ["EJacobs94", "Drew_Dietsch"], + "known": [ + "EJacobs94", + "Drew_Dietsch" + ], "cat": "gaming" }, { @@ -1917,7 +2463,10 @@ "e_string": "Fanpopping since", "m_string": "", "m_code": 302, - "known": ["test", "johndoe"], + "known": [ + "test", + "johndoe" + ], "cat": "social" }, { @@ -1928,7 +2477,10 @@ "e_string": "username", "m_string": "response: []", "m_code": 200, - "known": ["Mikomin", "test"], + "known": [ + "Mikomin", + "test" + ], "cat": "xx NSFW xx" }, { @@ -1938,7 +2490,10 @@ "e_string": "Fark account number", "m_string": "Tastes like chicken.", "m_code": 200, - "known": ["bob", "bobby"], + "known": [ + "bob", + "bobby" + ], "cat": "social" }, { @@ -1948,7 +2503,10 @@ "e_string": "- Member", "m_string": "Your Key to Success", "m_code": 302, - "known": ["bob", "bobby"], + "known": [ + "bob", + "bobby" + ], "cat": "health" }, { @@ -1959,7 +2517,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["wood", "cliffcheney"], + "known": [ + "wood", + "cliffcheney" + ], "cat": "social" }, { @@ -1969,7 +2530,10 @@ "e_string": ") on Figma Community", "m_string": "The page you are looking for can't be found.", "m_code": 404, - "known": ["bob", "mike"], + "known": [ + "bob", + "mike" + ], "cat": "tech" }, { @@ -1979,7 +2543,10 @@ "e_string": "Subscribers", "m_string": "No channels found", "m_code": 200, - "known": ["bobicraft", "parodiadoranimado"], + "known": [ + "bobicraft", + "parodiadoranimado" + ], "cat": "archived" }, { @@ -1989,7 +2556,10 @@ "e_string": "clips found", "m_string": "No results", "m_code": 200, - "known": ["holasoygerman", "elrubiusomg"], + "known": [ + "holasoygerman", + "elrubiusomg" + ], "cat": "archived" }, { @@ -1999,7 +2569,10 @@ "e_string": "profil w Filmweb", "m_string": "Varnish 404", "m_code": 200, - "known": ["test", "Marcin_P"], + "known": [ + "test", + "Marcin_P" + ], "cat": "hobby" }, { @@ -2009,7 +2582,10 @@ "e_string": "Shop for artwork by", "m_string": "Browse through millions of independent artists in our extensive", "m_code": 301, - "known": ["scott-norris", "mary-helmreich"], + "known": [ + "scott-norris", + "mary-helmreich" + ], "cat": "shopping" }, { @@ -2019,7 +2595,10 @@ "e_string": "member-since", "m_string": "", "m_code": 302, - "known": ["yellowdd", "samanvay"], + "known": [ + "yellowdd", + "samanvay" + ], "cat": "shopping" }, { @@ -2029,9 +2608,14 @@ "e_string": "class=\"page-profile\"", "m_string": "404 Not Found", "m_code": 404, - "known": ["linig4", "polik100500"], + "known": [ + "linig4", + "polik100500" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "Flickr", @@ -2040,7 +2624,10 @@ "e_string": "| Flickr", "m_string": "", "m_code": 404, - "known": ["glaciernps", "test"], + "known": [ + "glaciernps", + "test" + ], "cat": "images" }, { @@ -2050,7 +2637,10 @@ "e_string": ") on Flipboard", "m_string": "", "m_code": 404, - "known": ["cosmopolitan", "Mashable"], + "known": [ + "cosmopolitan", + "Mashable" + ], "cat": "tech" }, { @@ -2060,7 +2650,10 @@ "e_string": ";s Flowpage", "m_string": "Nobody's reserved this Flowpage yet.", "m_code": 404, - "known": ["evdokia", "irina"], + "known": [ + "evdokia", + "irina" + ], "cat": "social" }, { @@ -2070,7 +2663,10 @@ "e_string": "User Profile | Fodor’s Travel", "m_string": "Plan Your Trip Online", "m_code": 302, - "known": ["jdstraveler", "gooster"], + "known": [ + "jdstraveler", + "gooster" + ], "cat": "social" }, { @@ -2081,9 +2677,14 @@ "e_string": "\"message\":\"That display name is in use by another member.\"", "m_string": "\"result\":\"ok\"", "m_code": 200, - "known": ["smartplayapk", "abdulmerfantz"], + "known": [ + "smartplayapk", + "abdulmerfantz" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "Fortnite Tracker", @@ -2092,7 +2693,10 @@ "e_string": "s Fortnite Stats - Fortnite Tracker", "m_string": "Fortnite Player Stats -", "m_code": 404, - "known": ["steph", "sam"], + "known": [ + "steph", + "sam" + ], "cat": "gaming" }, { @@ -2102,7 +2706,10 @@ "e_string": "Wiadomość", "m_string": "", "m_code": 500, - "known": ["test", "test2"], + "known": [ + "test", + "test2" + ], "cat": "misc" }, { @@ -2113,7 +2720,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["linux", "Phil35"], + "known": [ + "linux", + "Phil35" + ], "cat": "social" }, { @@ -2124,7 +2734,10 @@ "e_string": "profil", "m_string": "ERROR", "m_code": 200, - "known": ["test", "test2"], + "known": [ + "test", + "test2" + ], "cat": "social" }, { @@ -2135,7 +2748,10 @@ "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, - "known": ["x_zudex_x", "angelito"], + "known": [ + "x_zudex_x", + "angelito" + ], "cat": "archived" }, { @@ -2145,7 +2761,10 @@ "e_string": "class=\"userProfile2Page\"", "m_string": "", "m_code": 308, - "known": ["j0hn", "ncyp23"], + "known": [ + "j0hn", + "ncyp23" + ], "cat": "social" }, { @@ -2156,9 +2775,14 @@ "e_string": "\"user\":", "m_string": "\"error\":\"User not found\"", "m_code": 404, - "known": ["zaira", "CaesarSage"], + "known": [ + "zaira", + "CaesarSage" + ], "cat": "coding", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Freelance.RU", @@ -2167,7 +2791,10 @@ "e_string": "class=\" user-top-container user-portfolio\"", "m_string": "class=\"msg_error alert alert-danger\"", "m_code": 404, - "known": ["sunsey", "semanticlan"], + "known": [ + "sunsey", + "semanticlan" + ], "cat": "business" }, { @@ -2177,7 +2804,10 @@ "e_string": "p-profile-avatar", "m_string": "Схоже, дана сторінка не знайдена", "m_code": 404, - "known": ["tkachenkoalex", "oleksandrseo1"], + "known": [ + "tkachenkoalex", + "oleksandrseo1" + ], "cat": "social" }, { @@ -2187,9 +2817,14 @@ "e_string": "\"@id\":\"https://freelancehunt.com/en/employers\"", "m_string": "User not found.", "m_code": 404, - "known": ["vadym1232", "Dekovital"], + "known": [ + "vadym1232", + "Dekovital" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "Freelancehunt Freelancer", @@ -2198,9 +2833,14 @@ "e_string": "\"@id\":\"https://freelancehunt.com/en/freelancers\"", "m_string": "User not found.", "m_code": 404, - "known": ["rhythmdev_top", "Zainka"], + "known": [ + "rhythmdev_top", + "Zainka" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "Freelancer", @@ -2210,7 +2850,10 @@ "e_string": "\"users\":{\"", "m_string": "\"users\":{}", "m_code": 200, - "known": ["desiaunty", "creatvmind"], + "known": [ + "desiaunty", + "creatvmind" + ], "cat": "business" }, { @@ -2220,7 +2863,10 @@ "e_string": "Has been a user for", "m_string": "Page not found", "m_code": 404, - "known": ["test", "JohnDoe"], + "known": [ + "test", + "JohnDoe" + ], "cat": "music" }, { @@ -2230,7 +2876,10 @@ "e_string": "item-header-avatar", "m_string": "error404", "m_code": 404, - "known": ["giveaway-su", "keygenerator"], + "known": [ + "giveaway-su", + "keygenerator" + ], "cat": "gaming" }, { @@ -2240,7 +2889,10 @@ "e_string": "Last Visit:", "m_string": "302 Found", "m_code": 302, - "known": ["alex56", "john"], + "known": [ + "alex56", + "john" + ], "cat": "dating" }, { @@ -2250,7 +2902,9 @@ "e_string": "'s Dating Profile on FriendFinder-x", "m_string": "The document has moved", "m_code": 302, - "known": ["john"], + "known": [ + "john" + ], "cat": "dating" }, { @@ -2260,7 +2914,10 @@ "e_string": "", "m_string": "

System Error

", "m_code": 200, - "known": ["karintina", "mikrogoat"], + "known": [ + "karintina", + "mikrogoat" + ], "cat": "images" }, { @@ -2271,7 +2928,10 @@ "e_string": "\"id\":", "m_string": "\"error\":\"Record not found\"", "m_code": 404, - "known": ["RealMarjorieGreene", "LaurenBoebert"], + "known": [ + "RealMarjorieGreene", + "LaurenBoebert" + ], "cat": "political" }, { @@ -2282,7 +2942,10 @@ "e_string": "created_on", "m_string": "null,", "m_code": 404, - "known": ["nilllzz", "KorbloxTeams"], + "known": [ + "nilllzz", + "KorbloxTeams" + ], "cat": "gaming" }, { @@ -2292,7 +2955,10 @@ "e_string": "| , , GB pc game performance", "m_string": "Not Found", "m_code": 404, - "known": ["Johnboy", "Crazy"], + "known": [ + "Johnboy", + "Crazy" + ], "cat": "gaming" }, { @@ -2302,7 +2968,10 @@ "e_string": "class=\"gamerpic\"", "m_string": "You are being <", "m_code": 302, - "known": ["dnlunger", "punksxe"], + "known": [ + "dnlunger", + "punksxe" + ], "cat": "gaming" }, { @@ -2313,9 +2982,14 @@ "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, - "known": ["alice", "bob"], + "known": [ + "alice", + "bob" + ], "cat": "gaming", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Garmin connect", @@ -2324,7 +2998,10 @@ "e_string": "window.ERROR_VIEW = null", "m_string": "resourceNotFoundRoute", "m_code": 200, - "known": ["tommy", "cderalow"], + "known": [ + "tommy", + "cderalow" + ], "cat": "health" }, { @@ -2335,7 +3012,10 @@ "e_string": "\"accountID\":", "m_string": "-1", "m_code": 500, - "known": ["SorkoPiko", "Subwoofer"], + "known": [ + "SorkoPiko", + "Subwoofer" + ], "cat": "gaming" }, { @@ -2346,7 +3026,11 @@ "e_string": "\"message\":\"data retrieved successfully\"", "m_string": "\"message\":\"User not found!\"", "m_code": 400, - "known": ["nath_789", "harshrajsinghsiwan", "igovindindia"], + "known": [ + "nath_789", + "harshrajsinghsiwan", + "igovindindia" + ], "cat": "coding" }, { @@ -2356,7 +3040,10 @@ "e_string": "Groundspeak - User Profile", "m_string": "Error 404: DNF", "m_code": 404, - "known": ["moun10bike", "niraD"], + "known": [ + "moun10bike", + "niraD" + ], "cat": "social" }, { @@ -2366,7 +3053,10 @@ "e_string": "Monero | User", "m_string": "Monero | Page not found. Error: 404", "m_code": 200, - "known": ["silverfox", "monero"], + "known": [ + "silverfox", + "monero" + ], "cat": "misc" }, { @@ -2377,7 +3067,10 @@ "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, - "known": ["gettr", "support"], + "known": [ + "gettr", + "support" + ], "cat": "social" }, { @@ -2387,7 +3080,10 @@ "e_string": "width=\"100\"", "m_string": "View Gigapans", "m_code": 404, - "known": ["test", "lucahammer"], + "known": [ + "test", + "lucahammer" + ], "cat": "hobby" }, { @@ -2397,9 +3093,14 @@ "e_string": "\\\"user_id\\\"", "m_string": "404 Not Found", "m_code": 404, - "known": ["teddy_99", "LastYear"], + "known": [ + "teddy_99", + "LastYear" + ], "cat": "images", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "Gitea", @@ -2408,7 +3109,10 @@ "e_string": "class=\"page-content user profile\"", "m_string": "class=\"status-page-error\"", "m_code": 404, - "known": ["xin", "dev"], + "known": [ + "xin", + "dev" + ], "cat": "coding" }, { @@ -2418,7 +3122,10 @@ "e_string": "class=\"ui container user_page\"", "m_string": "class=\"container error midCenter\"", "m_code": 404, - "known": ["maxim", "fupengfei"], + "known": [ + "maxim", + "fupengfei" + ], "cat": "coding" }, { @@ -2428,7 +3135,10 @@ "e_string": " - Giters", "m_string": "This page could not be found", "m_code": 404, - "known": ["WebBreacher", "C3n7ral051nt4g3ncy"], + "known": [ + "WebBreacher", + "C3n7ral051nt4g3ncy" + ], "cat": "coding" }, { @@ -2439,7 +3149,10 @@ "e_string": "\"id\":", "m_string": "\"status\": \"404\"", "m_code": 404, - "known": ["test", "WebBreacher"], + "known": [ + "test", + "WebBreacher" + ], "cat": "coding", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" @@ -2453,7 +3166,10 @@ "e_string": "\"id\":", "m_string": "\"status\": \"404\"", "m_code": 404, - "known": ["teymurgahramanov", "WebBreacher"], + "known": [ + "teymurgahramanov", + "WebBreacher" + ], "cat": "coding", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" @@ -2467,7 +3183,10 @@ "e_string": "\"exists\":true", "m_string": "\"exists\":false", "m_code": 200, - "known": ["skennedy", "KennBro"], + "known": [ + "skennedy", + "KennBro" + ], "cat": "coding" }, { @@ -2477,7 +3196,10 @@ "e_string": "Last online", "m_string": "Page unavailable", "m_code": 404, - "known": ["Irapuato", "en.news"], + "known": [ + "Irapuato", + "en.news" + ], "cat": "social" }, { @@ -2488,9 +3210,14 @@ "e_string": "\"id\":", "m_string": "[]", "m_code": 200, - "known": ["MystikNinja", "0xMRTT"], + "known": [ + "MystikNinja", + "0xMRTT" + ], "cat": "coding", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "GNOME Shell Extensions", @@ -2499,7 +3226,10 @@ "e_string": "class=\"user-details\"", "m_string": "

404 - Page not Found

", "m_code": 404, - "known": ["johnny", "dev"], + "known": [ + "johnny", + "dev" + ], "cat": "coding" }, { @@ -2509,7 +3239,10 @@ "e_string": "window.profilesData.profileUser", "m_string": "href=\"http://www.gog.com/404\"", "m_code": 302, - "known": ["user", "Admin"], + "known": [ + "user", + "Admin" + ], "cat": "gaming" }, { @@ -2519,7 +3252,10 @@ "e_string": "channel_id", "m_string": "Такой страницы не существует", "m_code": 400, - "known": ["ejysarmat", "JacksonTV"], + "known": [ + "ejysarmat", + "JacksonTV" + ], "cat": "gaming" }, { @@ -2529,7 +3265,10 @@ "e_string": "mdash; gpodder.net", "m_string": "404 - Not found", "m_code": 404, - "known": ["blue", "red"], + "known": [ + "blue", + "red" + ], "cat": "music" }, { @@ -2539,7 +3278,10 @@ "e_string": "s Profile", "m_string": "Mauvaise pioche", "m_code": 404, - "known": ["mohamed01", "amine"], + "known": [ + "mohamed01", + "amine" + ], "cat": "misc" }, { @@ -2550,7 +3292,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["brian", "moonpotato"], + "known": [ + "brian", + "moonpotato" + ], "cat": "social" }, { @@ -2561,7 +3306,9 @@ "e_string": "entry", "m_string": "User not found", "m_code": 404, - "known": ["test"], + "known": [ + "test" + ], "cat": "images" }, { @@ -2571,7 +3318,10 @@ "e_string": "userpage_user", "m_string": "

404 Not Found", "m_code": 200, - "known": ["daniel", "franco"], + "known": [ + "daniel", + "franco" + ], "cat": "gaming" }, { @@ -2582,7 +3332,10 @@ "e_string": "s profile picture", "m_string": "Page not found", "m_code": 404, - "known": ["ellietalksmoney", "reallyniceimages"], + "known": [ + "ellietalksmoney", + "reallyniceimages" + ], "cat": "shopping" }, { @@ -2593,7 +3346,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["john", "michelle"], + "known": [ + "john", + "michelle" + ], "cat": "gaming" }, { @@ -2604,7 +3360,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["jeaniucas", "cellao"], + "known": [ + "jeaniucas", + "cellao" + ], "cat": "gaming" }, { @@ -2615,7 +3374,10 @@ "e_string": "currentLevel", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["fatma9180", "elektrikci"], + "known": [ + "fatma9180", + "elektrikci" + ], "cat": "gaming" }, { @@ -2626,7 +3388,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["klaus", "angelinaa"], + "known": [ + "klaus", + "angelinaa" + ], "cat": "gaming" }, { @@ -2637,7 +3402,10 @@ "e_string": "uniqueId\":", "m_string": "not-found", "m_code": 404, - "known": ["juan", "michelle"], + "known": [ + "juan", + "michelle" + ], "cat": "gaming" }, { @@ -2648,7 +3416,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["cucumberz", "Yasline"], + "known": [ + "cucumberz", + "Yasline" + ], "cat": "gaming" }, { @@ -2659,7 +3430,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["2006", "sicilienne"], + "known": [ + "2006", + "sicilienne" + ], "cat": "gaming" }, { @@ -2670,7 +3444,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["samsebek", "papablu"], + "known": [ + "samsebek", + "papablu" + ], "cat": "gaming" }, { @@ -2681,7 +3458,10 @@ "e_string": "uniqueId\":", "m_string": "error\": \"not-found", "m_code": 404, - "known": ["XOTWOD.xx", "xoSorxo"], + "known": [ + "XOTWOD.xx", + "xoSorxo" + ], "cat": "gaming" }, { @@ -2691,7 +3471,10 @@ "e_string": "tm-page tm-user", "m_string": "tm-error-message", "m_code": 404, - "known": ["Bo0oM", "AlhimicMan"], + "known": [ + "Bo0oM", + "AlhimicMan" + ], "cat": "social" }, { @@ -2701,7 +3484,10 @@ "e_string": "user-profile profile-blocks", "m_string": "icon_user_locked", "m_code": 404, - "known": ["aufdk", "Danvantariy"], + "known": [ + "aufdk", + "Danvantariy" + ], "cat": "social" }, { @@ -2711,7 +3497,10 @@ "e_string": "user-profile profile-blocks", "m_string": "icon_user_locked", "m_code": 404, - "known": ["Bo0oM", "Akloom"], + "known": [ + "Bo0oM", + "Akloom" + ], "cat": "social" }, { @@ -2721,7 +3510,10 @@ "e_string": "class=\"page-header__info\"", "m_string": "icon_error_404", "m_code": 404, - "known": ["Masthead", "dmitriypur"], + "known": [ + "Masthead", + "dmitriypur" + ], "cat": "coding" }, { @@ -2731,7 +3523,10 @@ "e_string": "
Oops!", "m_code": 404, - "known": ["diegjeremy", "suigetsu"], + "known": [ + "diegjeremy", + "suigetsu" + ], "cat": "gaming" }, { @@ -2742,7 +3537,10 @@ "e_string": "class=\"following-container \"", "m_string": "class=\"error-nav\"", "m_code": 404, - "known": ["john", "adam"], + "known": [ + "john", + "adam" + ], "cat": "hobby" }, { @@ -2752,7 +3550,10 @@ "e_string": "created:", "m_string": "No such user.", "m_code": 200, - "known": ["mubix", "egypt"], + "known": [ + "mubix", + "egypt" + ], "cat": "tech" }, { @@ -2762,7 +3563,10 @@ "e_string": "| Developer Profile on HackerEarth", "m_string": "404 | HackerEarth", "m_code": 200, - "known": ["peter", "liam"], + "known": [ + "peter", + "liam" + ], "cat": "coding" }, { @@ -2773,7 +3577,10 @@ "e_string": "\"profile\"", "m_string": "__N_REDIRECT", "m_code": 200, - "known": ["john", "alex"], + "known": [ + "john", + "alex" + ], "cat": "tech" }, { @@ -2785,7 +3592,10 @@ "e_string": "\"username\":", "m_string": "\"type\":\"NOT_FOUND\"", "m_code": 200, - "known": ["born2hack", "godiego"], + "known": [ + "born2hack", + "godiego" + ], "cat": "tech", "headers": { "Content-Type": "application/json" @@ -2799,9 +3609,14 @@ "e_string": "\"model\":", "m_string": "\"error\":\"Not Found\"", "m_code": 404, - "known": ["FMota", "adepanges"], + "known": [ + "FMota", + "adepanges" + ], "cat": "tech", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "hackrocks", @@ -2812,7 +3627,10 @@ "e_string": "\"username\":", "m_string": "\"error_data\":\"USER_NOT_FOUND\"", "m_code": 404, - "known": ["mespejo", "NeoWaveCode"], + "known": [ + "mespejo", + "NeoWaveCode" + ], "cat": "tech", "headers": { "Accept": "application/json, text/plain, */*", @@ -2826,7 +3644,10 @@ "e_string": "data-hypernova-key=\"UserProfile\"", "m_string": "id=\"error\"", "m_code": 404, - "known": ["hendra", "sologithu"], + "known": [ + "hendra", + "sologithu" + ], "cat": "coding" }, { @@ -2836,7 +3657,10 @@ "e_string": "- трейдинг форекс фьючерсы акции фондовый рынок ", "m_string": "HAMAHA Биткоин форум.", "m_code": 200, - "known": ["oleg", "misha"], + "known": [ + "oleg", + "misha" + ], "cat": "finance" }, { @@ -2846,7 +3670,10 @@ "e_string": "Channel Views", "m_string": "DYNAMIC", "m_code": 302, - "known": ["thecolorred-7902", "arisu-cum-stats-2787"], + "known": [ + "thecolorred-7902", + "arisu-cum-stats-2787" + ], "cat": "xx NSFW xx" }, { @@ -2857,7 +3684,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["hello", "iuulaio"], + "known": [ + "hello", + "iuulaio" + ], "cat": "social" }, { @@ -2867,7 +3697,10 @@ "e_string": "HeyLink.me |", "m_string": "We can't find the page that you're looking for :(", "m_code": 404, - "known": ["mohammed13", "johnny"], + "known": [ + "mohammed13", + "johnny" + ], "cat": "misc" }, { @@ -2877,7 +3710,10 @@ "e_string": "Member since ", "m_string": "Looks like you got lost ", "m_code": 200, - "known": ["Axeman", "Silver01"], + "known": [ + "Axeman", + "Silver01" + ], "cat": "gaming" }, { @@ -2887,7 +3723,10 @@ "e_string": "HiHello Blog Author: ", "m_string": "Well, this is awkward", "m_code": 404, - "known": ["pascal-theriault", "kortnee-paiha"], + "known": [ + "pascal-theriault", + "kortnee-paiha" + ], "cat": "business" }, { @@ -2898,7 +3737,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["lizcovart", "Ejoiner"], + "known": [ + "lizcovart", + "Ejoiner" + ], "cat": "social" }, { @@ -2908,7 +3750,10 @@ "e_string": " | Holopin", "m_string": "Not found
", "m_code": 200, - "known": ["holo", "test"], + "known": [ + "holo", + "test" + ], "cat": "hobby" }, { @@ -2918,7 +3763,10 @@ "e_string": "userspace", "m_string": "An Error Occurred: Internal Server Error", "m_code": 500, - "known": ["carlos01", "paul"], + "known": [ + "carlos01", + "paul" + ], "cat": "hobby" }, { @@ -2929,7 +3777,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["one4ll", "seth"], + "known": [ + "one4ll", + "seth" + ], "cat": "social" }, { @@ -2939,7 +3790,10 @@ "e_string": "--profile-name-color", "m_string": "Page Not Found

", "m_code": 404, - "known": ["chrishemsworth", "alextackie"], + "known": [ + "chrishemsworth", + "alextackie" + ], "cat": "business" }, { @@ -2950,7 +3804,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["alarig", "rsmela"], + "known": [ + "alarig", + "rsmela" + ], "cat": "social" }, { @@ -2960,7 +3817,10 @@ "e_string": "Followers", "m_string": "Page Not Found", "m_code": 404, - "known": ["liam", "alex"], + "known": [ + "liam", + "alex" + ], "cat": "hobby" }, { @@ -2970,7 +3830,10 @@ "e_string": "name\">Followers", "m_string": "Sorry, that user does not exist", "m_code": 404, - "known": ["greeneyes1607", "lmmartin"], + "known": [ + "greeneyes1607", + "lmmartin" + ], "cat": "blog" }, { @@ -2980,7 +3843,10 @@ "e_string": "'s profile", "m_string": "No such user.", "m_code": 200, - "known": ["john", "blue"], + "known": [ + "john", + "blue" + ], "cat": "social" }, { @@ -2990,7 +3856,10 @@ "e_string": "This username is associated with a computer that was infected by an info-stealer", "m_string": "This username is not associated with a computer infected by an info-stealer", "m_code": 200, - "known": ["testadmin", "testadmin1"], + "known": [ + "testadmin", + "testadmin1" + ], "cat": "tech" }, { @@ -3000,7 +3869,10 @@ "e_string": "thumbnails.huggingface.co/social-thumbnails/", "m_string": "Sorry, we can't find the page you are looking for.", "m_code": 404, - "known": ["hack", "dev"], + "known": [ + "hack", + "dev" + ], "cat": "tech" }, { @@ -3010,7 +3882,10 @@ "e_string": "id=\"profile_image\"", "m_string": "Invalid user.", "m_code": 200, - "known": ["djjamesryan", "dxcrew2"], + "known": [ + "djjamesryan", + "dxcrew2" + ], "cat": "social" }, { @@ -3020,7 +3895,10 @@ "e_string": "data-to-user-id=", "m_string": "We couldn't find the page you are looking for.", "m_code": 404, - "known": ["roundicons", "iconfinder"], + "known": [ + "roundicons", + "iconfinder" + ], "cat": "images" }, { @@ -3030,7 +3908,10 @@ "e_string": "Last seen", "m_string": "Oops! We ran into some problems", "m_code": 404, - "known": ["brookenora.54", "bigdaddy.77"], + "known": [ + "brookenora.54", + "bigdaddy.77" + ], "cat": "social" }, { @@ -3040,7 +3921,10 @@ "e_string": "Joined", "m_string": "The requested page or file does not exist", "m_code": 404, - "known": ["nr9992", "sss90"], + "known": [ + "nr9992", + "sss90" + ], "cat": "misc" }, { @@ -3050,7 +3934,10 @@ "e_string": "subscribers", "m_string": "404 - page not found", "m_code": 404, - "known": ["hacker", "john"], + "known": [ + "hacker", + "john" + ], "cat": "misc" }, { @@ -3060,7 +3947,10 @@ "e_string": "Форум Игромании - Просмотр профиля:", "m_string": "Пользователь не зарегистрирован и не имеет профиля для просмотра.", "m_code": 200, - "known": ["bob", "blue"], + "known": [ + "bob", + "blue" + ], "cat": "social" }, { @@ -3070,7 +3960,10 @@ "e_string": " Profile - ", "m_string": "Oops! That page doesn’t exist or is private", "m_code": 404, - "known": ["ILGM.Stacy", "Mosaicmind9x"], + "known": [ + "ILGM.Stacy", + "Mosaicmind9x" + ], "cat": "social" }, { @@ -3080,7 +3973,10 @@ "e_string": "s Profile", "m_string": "Invalid uid", "m_code": 200, - "known": ["lover03", "SecretSide15"], + "known": [ + "lover03", + "SecretSide15" + ], "cat": "xx NSFW xx" }, { @@ -3090,7 +3986,9 @@ "e_string": "s Images", "m_string": "", "m_code": 302, - "known": ["test"], + "known": [ + "test" + ], "cat": "images" }, { @@ -3100,7 +3998,11 @@ "e_string": "Присоединился", "m_string": "", "m_code": 302, - "known": ["natalisn", "andydiamond", "natalyck"], + "known": [ + "natalisn", + "andydiamond", + "natalyck" + ], "cat": "images" }, { @@ -3111,7 +4013,10 @@ "e_string": "created_at", "m_string": "unable to find account", "m_code": 404, - "known": ["OliverClothesoff70", "DadOnTheInternet"], + "known": [ + "OliverClothesoff70", + "DadOnTheInternet" + ], "cat": "images" }, { @@ -3121,7 +4026,10 @@ "e_string": "s Profile", "m_string": "404 Not Found", "m_code": 404, - "known": ["greg", "tom"], + "known": [ + "greg", + "tom" + ], "cat": "hobby" }, { @@ -3131,7 +4039,10 @@ "e_string": "- Academia.edu", "m_string": "Academia.edu", "m_code": 404, - "known": ["peter", "LiamM"], + "known": [ + "peter", + "LiamM" + ], "cat": "hobby" }, { @@ -3141,7 +4052,10 @@ "e_string": "Profile | Inkbunny, the Furry Art Community", "m_string": "Members | Inkbunny, the Furry Art Community", "m_code": 302, - "known": ["AdminBunny", "test"], + "known": [ + "AdminBunny", + "test" + ], "cat": "xx NSFW xx" }, { @@ -3152,7 +4066,11 @@ "e_string": "User:", "m_string": "The requested URL /profile was not found on this server", "m_code": 200, - "known": ["test", "pint-sized", "acroamatica"], + "known": [ + "test", + "pint-sized", + "acroamatica" + ], "cat": "social" }, { @@ -3163,7 +4081,10 @@ "e_string": "Instagram public profile with posts", "m_string": "Nothing found!", "m_code": 404, - "known": ["katyperry", "kirbstr"], + "known": [ + "katyperry", + "kirbstr" + ], "cat": "social" }, { @@ -3173,19 +4094,14 @@ "e_string": "userinfo", "m_string": "page-error notfound", "m_code": 404, - "known": ["therock", "ramarim"], + "known": [ + "therock", + "ramarim" + ], "cat": "social", - "protection": ["cloudflare"] - }, - { - "name": "Instagram_archives", - "uri_check": "https://archive.org/wayback/available?url=https://instagram.com/{account}/", - "e_code": 200, - "e_string": "\"archived_snapshots\": {\"closest\"", - "m_string": "\"archived_snapshots\": {}}", - "m_code": 200, - "known": ["zuck", "jack"], - "cat": "social" + "protection": [ + "cloudflare" + ] }, { "name": "Instagram2", @@ -3195,7 +4111,23 @@ "e_string": "Instagram Stories, Profile, Posts and Followers View Anonymous", "m_string": "We are sorry. Should we search anything else?", "m_code": 404, - "known": ["katyperry", "kirbstr"], + "known": [ + "katyperry", + "kirbstr" + ], + "cat": "social" + }, + { + "name": "Instagram_archives", + "uri_check": "https://archive.org/wayback/available?url=https://instagram.com/{account}/", + "e_code": 200, + "e_string": "\"archived_snapshots\": {\"closest\"", + "m_string": "\"archived_snapshots\": {}}", + "m_code": 200, + "known": [ + "zuck", + "jack" + ], "cat": "social" }, { @@ -3206,7 +4138,10 @@ "e_string": "\"exists\": true", "m_string": "\"error\": \"Sorry, we couldn't find that one!\"", "m_code": 404, - "known": ["davidandora", "test"], + "known": [ + "davidandora", + "test" + ], "cat": "hobby" }, { @@ -3217,7 +4152,10 @@ "e_string": "backup_location", "m_string": "numFound\":0", "m_code": 200, - "known": ["test", "mubix"], + "known": [ + "test", + "mubix" + ], "cat": "misc" }, { @@ -3227,7 +4165,9 @@ "e_string": "Looking for", "m_string": "User not found", "m_code": 200, - "known": ["test"], + "known": [ + "test" + ], "cat": "dating" }, { @@ -3238,7 +4178,10 @@ "e_string": "\"userName\":", "m_string": "class=\"error-page-container\"", "m_code": 404, - "known": ["vampire01", "kenshiin"], + "known": [ + "vampire01", + "kenshiin" + ], "cat": "tech" }, { @@ -3249,7 +4192,10 @@ "e_string": "\"id\":", "m_string": "detail\": \"Model not found.", "m_code": 404, - "known": ["summer", "littlelanta"], + "known": [ + "summer", + "littlelanta" + ], "cat": "xx NSFW xx" }, { @@ -3260,7 +4206,10 @@ "e_string": "\"status\":\"unavailable\"", "m_string": "\"status\":\"available\"", "m_code": 200, - "known": ["letsplayhockey", "the_anchor"], + "known": [ + "letsplayhockey", + "the_anchor" + ], "cat": "social" }, { @@ -3270,7 +4219,10 @@ "e_string": "class=\"user_data\"", "m_string": "class=\"not_found_page page_widget base_widget\"", "m_code": 404, - "known": ["obliviist", "finch"], + "known": [ + "obliviist", + "finch" + ], "cat": "gaming" }, { @@ -3280,7 +4232,10 @@ "e_string": "modern browser", "m_string": "The page you requested could not be found.", "m_code": 404, - "known": ["Yan", "Happy"], + "known": [ + "Yan", + "Happy" + ], "cat": "social" }, { @@ -3290,7 +4245,10 @@ "e_string": "Dzidy użytkownika", "m_string": "Błąd 404", "m_code": 404, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "images" }, { @@ -3300,7 +4258,10 @@ "e_string": "Profil użytkownika", "m_string": "Niepoprawny login", "m_code": 200, - "known": ["kowal", "janek"], + "known": [ + "kowal", + "janek" + ], "cat": "misc" }, { @@ -3310,7 +4271,10 @@ "e_string": "- jeuxvideo.com", "m_string": "rence des gamers", "m_code": 404, - "known": ["jane", "alex"], + "known": [ + "jane", + "alex" + ], "cat": "gaming" }, { @@ -3320,7 +4284,10 @@ "e_string": "jest prywatny", "m_string": "Nie wiem jak ci to powiedzieć", "m_code": 200, - "known": ["dandris", "lasior"], + "known": [ + "dandris", + "lasior" + ], "cat": "misc" }, { @@ -3332,7 +4299,10 @@ "e_string": "\"items\":[{", "m_string": "\"count\":0", "m_code": 200, - "known": ["AngryTestie", "amddota2"], + "known": [ + "AngryTestie", + "amddota2" + ], "cat": "gaming", "headers": { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" @@ -3345,7 +4315,10 @@ "e_string": "Settings - JSFiddle - Code Playground", "m_string": "That page doesn't exist.", "m_code": 404, - "known": ["john", "alex"], + "known": [ + "john", + "alex" + ], "cat": "coding" }, { @@ -3355,7 +4328,10 @@ "e_string": " @ JustFor.Fans", "m_string": "", "m_code": 302, - "known": ["devinfrancoxxx", "RileyChaux"], + "known": [ + "devinfrancoxxx", + "RileyChaux" + ], "cat": "xx NSFW xx" }, { @@ -3365,7 +4341,10 @@ "e_string": "| Kaggle", "m_string": "Kaggle: Your Home for Data Science", "m_code": 404, - "known": ["babyoda", "residentmario"], + "known": [ + "babyoda", + "residentmario" + ], "cat": "coding" }, { @@ -3377,7 +4356,10 @@ "e_string": "\"message\":\"UserName already Exist\"", "m_string": "\"message\":\"UserName avalible\"", "m_code": 200, - "known": ["lopalopa", "westde123"], + "known": [ + "lopalopa", + "westde123" + ], "cat": "tech", "headers": { "Content-Type": "application/x-www-form-urlencoded" @@ -3391,7 +4373,10 @@ "e_string": "\"id\":", "m_string": "\"them\":[null]", "m_code": 200, - "known": ["test", "mubix"], + "known": [ + "test", + "mubix" + ], "cat": "social" }, { @@ -3402,9 +4387,14 @@ "e_string": "\"id\"", "m_string": "Not Found", "m_code": 404, - "known": ["deepak", "anthonyz"], + "known": [ + "deepak", + "anthonyz" + ], "cat": "social", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Kickstarter", @@ -3413,7 +4403,10 @@ "e_string": "projects", "m_string": "Oops, Something went missing", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "shopping" }, { @@ -3423,7 +4416,11 @@ "e_string": "/thumb.jpg\"/>", "m_string": "

", "m_code": 200, - "known": ["adam", "smith", "jones"], + "known": [ + "adam", + "smith", + "jones" + ], "cat": "social" }, { @@ -3433,7 +4430,10 @@ "e_string": "kipin.app/data/photos/resized2/", "m_string": "Page not found. Link expired, broken or wrong.", "m_code": 302, - "known": ["monethica", "asd_fca"], + "known": [ + "monethica", + "asd_fca" + ], "cat": "business" }, { @@ -3443,7 +4443,10 @@ "e_string": "Contributions", "m_string": "404, File Not Found!", "m_code": 400, - "known": ["ayumukasuga", "butterin-yobread"], + "known": [ + "ayumukasuga", + "butterin-yobread" + ], "cat": "social" }, { @@ -3453,9 +4456,14 @@ "e_string": "id=\"profile-header\"", "m_string": "Object moved", "m_code": 302, - "known": ["frank", "marcmakescomics"], + "known": [ + "frank", + "marcmakescomics" + ], "cat": "social", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "komi", @@ -3465,7 +4473,10 @@ "e_string": "accountStatus\":\"active", "m_string": "The talent profile was not found", "m_code": 404, - "known": ["abbysage", "iamdsprings"], + "known": [ + "abbysage", + "iamdsprings" + ], "cat": "social" }, { @@ -3475,7 +4486,9 @@ "e_string": "Member Since", "m_string": "Sorry, no account with that name was found", "m_code": 404, - "known": ["test"], + "known": [ + "test" + ], "cat": "gaming" }, { @@ -3485,7 +4498,10 @@ "e_string": "Zamieszcza kotburgery od:", "m_string": "Nie znaleziono użytkownika o podanym loginie.", "m_code": 200, - "known": ["ania", "janek"], + "known": [ + "ania", + "janek" + ], "cat": "images" }, { @@ -3495,7 +4511,10 @@ "e_string": "name=\"title\"", "m_string": "Kwai", "m_code": 200, - "known": ["carlito", "taylor"], + "known": [ + "carlito", + "taylor" + ], "cat": "social" }, { @@ -3505,7 +4524,10 @@ "e_string": "Kwejki użytkownika", "m_string": "404 - strona nie została znaleziona - KWEJK.pl", "m_code": 404, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "images" }, { @@ -3517,7 +4539,10 @@ "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, - "known": ["ilkarkarakurt", "sergeymeshiy"], + "known": [ + "ilkarkarakurt", + "sergeymeshiy" + ], "cat": "social", "headers": { "Content-Type": "application/json" @@ -3530,7 +4555,10 @@ "e_string": "class=\"header-info\"", "m_string": "

404 - Page Not Found

", "m_code": 404, - "known": ["anne", "alex"], + "known": [ + "anne", + "alex" + ], "cat": "music" }, { @@ -3540,9 +4568,14 @@ "e_string": ">Joined ", "m_string": "LeakIX - Server error", "m_code": 500, - "known": ["Chocapikk", "Hug1337"], + "known": [ + "Chocapikk", + "Hug1337" + ], "cat": "tech", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "LeetCode", @@ -3553,7 +4586,10 @@ "e_string": "\"username\":", "m_string": "\"matchedUser\":null", "m_code": 200, - "known": ["aku_2000", "wengh"], + "known": [ + "aku_2000", + "wengh" + ], "cat": "coding", "headers": { "Content-Type": "application/json" @@ -3566,7 +4602,10 @@ "e_string": "class=\"user-desc-main-info", "m_string": "unavailableReason\": \"not_found", "m_code": 404, - "known": ["phinyamat", "andrianajohnson"], + "known": [ + "phinyamat", + "andrianajohnson" + ], "cat": "social" }, { @@ -3576,7 +4615,10 @@ "e_string": "’s profile on Letterboxd", "m_string": "Sorry, we can’t find the page you’ve requested.", "m_code": 404, - "known": ["serdaraltin", "choi"], + "known": [ + "serdaraltin", + "choi" + ], "cat": "social" }, { @@ -3587,7 +4629,10 @@ "e_string": "\"username\": [\"This username is already taken\"]", "m_string": "{}", "m_code": 200, - "known": ["BotnetExposer", "jamesbrine"], + "known": [ + "BotnetExposer", + "jamesbrine" + ], "cat": "social" }, { @@ -3597,9 +4642,14 @@ "e_string": "class=\"profile-header\"", "m_string": "Response code: 404", "m_code": 404, - "known": ["db0", "bnjbvr"], + "known": [ + "db0", + "bnjbvr" + ], "cat": "finance", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "LibraryThing", @@ -3608,7 +4658,10 @@ "e_string": "
Joined
", "m_string": "Error: This user doesn't exist", "m_code": 200, - "known": ["test", "john"], + "known": [ + "test", + "john" + ], "cat": "hobby" }, { @@ -3619,7 +4672,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["infolibre", "tzinalilik"], + "known": [ + "infolibre", + "tzinalilik" + ], "cat": "social" }, { @@ -3630,7 +4686,10 @@ "e_string": "true", "m_string": "false", "m_code": 200, - "known": ["mohammed01", "mohammed03"], + "known": [ + "mohammed01", + "mohammed03" + ], "cat": "gaming" }, { @@ -3640,7 +4699,10 @@ "e_string": "Add LINE Friends via QR Code", "m_string": "404 Not Found", "m_code": 404, - "known": ["roseareal", "yoasobi"], + "known": [ + "roseareal", + "yoasobi" + ], "cat": "social" }, { @@ -3650,7 +4712,10 @@ "e_string": "\"uuid\":", "m_string": "\"statusCode\":404", "m_code": 404, - "known": ["anne", "alex"], + "known": [ + "anne", + "alex" + ], "cat": "social" }, { @@ -3660,7 +4725,10 @@ "e_string": "Дата регистрации", "m_string": "Пользователя не существует", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "tech" }, { @@ -3671,7 +4739,10 @@ "e_string": "Unknown Journal", "m_code": 404, - "known": ["jill", "john"], + "known": [ + "jill", + "john" + ], "cat": "blog" }, { @@ -3681,7 +4752,10 @@ "e_string": "Магазин мастера", "m_string": "<title>Вы попали на несуществующую страницу", "m_code": 404, - "known": ["redart", "ellentoy"], + "known": [ + "redart", + "ellentoy" + ], "cat": "shopping" }, { @@ -3691,7 +4765,10 @@ "e_string": "Joined", "m_string": "The resource you requested was not found, or the story has been deleted.", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "tech" }, { @@ -3701,7 +4778,10 @@ "e_string": "class=\"content sw\">", "m_string": "We could not find any results, please try again later or check your input.", "m_code": 200, - "known": ["bea", "wild"], + "known": [ + "bea", + "wild" + ], "cat": "gaming" }, { @@ -3712,7 +4792,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["dump_stack", "lamountain"], + "known": [ + "dump_stack", + "lamountain" + ], "cat": "social" }, { @@ -3722,7 +4805,10 @@ "e_string": "Zarejestrowany", "m_string": "Błąd 404 - Podana strona nie istnieje", "m_code": 404, - "known": ["armin", "janek"], + "known": [ + "armin", + "janek" + ], "cat": "gaming" }, { @@ -3732,7 +4818,10 @@ "e_string": "Timeline", "m_string": "", "m_code": 302, - "known": ["KristenSuzanne", "mikeflbmer"], + "known": [ + "KristenSuzanne", + "mikeflbmer" + ], "cat": "social" }, { @@ -3742,7 +4831,10 @@ "e_string": "About me", "m_string": "Page not found", "m_code": 200, - "known": ["baywolfmusic", "johnebaker"], + "known": [ + "baywolfmusic", + "johnebaker" + ], "cat": "music" }, { @@ -3752,7 +4844,10 @@ "e_string": "href=\"/actors\"", "m_string": "Page not Found.", "m_code": 404, - "known": ["USDoD", "AeroBlade"], + "known": [ + "USDoD", + "AeroBlade" + ], "cat": "tech" }, { @@ -3762,7 +4857,10 @@ "e_string": "Daily distance this week", "m_string": "Outside together", "m_code": 302, - "known": ["ulirad", "CBSloan"], + "known": [ + "ulirad", + "CBSloan" + ], "cat": "health" }, { @@ -3773,7 +4871,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["Autumnhussar", "jeremy"], + "known": [ + "Autumnhussar", + "jeremy" + ], "cat": "social" }, { @@ -3783,7 +4884,10 @@ "e_string": "Bekijk Profiel:", "m_string": "Deze gebruiker is niet geregistreerd", "m_code": 200, - "known": ["brahim", "brahim01"], + "known": [ + "brahim", + "brahim01" + ], "cat": "social" }, { @@ -3793,7 +4897,10 @@ "e_string": "さんにメッセージをおくる", "m_string": "For compensation, here are cats for you.", "m_code": 404, - "known": ["yuino_fox", "momo"], + "known": [ + "yuino_fox", + "momo" + ], "cat": "social" }, { @@ -3803,7 +4910,10 @@ "e_string": "twitter:site", "m_string": "Page not found", "m_code": 404, - "known": ["mani-karthik", "james-green"], + "known": [ + "mani-karthik", + "james-green" + ], "cat": "business" }, { @@ -3813,7 +4923,10 @@ "e_string": "<title>MassageAnywhere.com Profile for ", "m_string": "<title>MassageAnywhere.com: Search Results", "m_code": 200, - "known": ["lorilmccluskey", "LomiNYC"], + "known": [ + "lorilmccluskey", + "LomiNYC" + ], "cat": "health" }, { @@ -3823,7 +4936,10 @@ "e_string": "@masto.ai) - Mastodon", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["rbreich", "stux"], + "known": [ + "rbreich", + "stux" + ], "cat": "social" }, { @@ -3834,7 +4950,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["seano", "jayjay718"], + "known": [ + "seano", + "jayjay718" + ], "cat": "social" }, { @@ -3845,7 +4964,10 @@ "e_string": "display_name", "m_string": "\"accounts\":[]", "m_code": 404, - "known": ["Richard_Littler", "webbreacher"], + "known": [ + "Richard_Littler", + "webbreacher" + ], "cat": "social" }, { @@ -3855,7 +4977,10 @@ "e_string": "@101010.pl", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["szekspir", "xaphanpl"], + "known": [ + "szekspir", + "xaphanpl" + ], "cat": "social" }, { @@ -3865,7 +4990,10 @@ "e_string": "@c.im) - C.IM", "m_string": "The page you are looking for isn't here", "m_code": 404, - "known": ["admin", "paidugroup"], + "known": [ + "admin", + "paidugroup" + ], "cat": "social" }, { @@ -3875,7 +5003,10 @@ "e_string": "@chaos.social) - chaos.social", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["dictvm", "sml"], + "known": [ + "dictvm", + "sml" + ], "cat": "social" }, { @@ -3886,7 +5017,10 @@ "e_string": "username\":", "m_string": "Record not found", "m_code": 404, - "known": ["paula", "PaulaToThePeople"], + "known": [ + "paula", + "PaulaToThePeople" + ], "cat": "social" }, { @@ -3896,7 +5030,10 @@ "e_string": "- DEF CON Social", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["defcon", "buttersnatcher"], + "known": [ + "defcon", + "buttersnatcher" + ], "cat": "social" }, { @@ -3906,7 +5043,10 @@ "e_string": "profile:username", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["john", "alex"], + "known": [ + "john", + "alex" + ], "cat": "social" }, { @@ -3916,7 +5056,10 @@ "e_string": "- the mastodon instance for creatures fluffy, scaly and otherwise", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["meow", "novra"], + "known": [ + "meow", + "novra" + ], "cat": "social" }, { @@ -3926,7 +5069,10 @@ "e_string": "@mstdn.io) - Mastodon", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["mike", "greg"], + "known": [ + "mike", + "greg" + ], "cat": "social" }, { @@ -3936,7 +5082,10 @@ "e_string": "@pol.social", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["ftdl", "ducensor"], + "known": [ + "ftdl", + "ducensor" + ], "cat": "social" }, { @@ -3946,7 +5095,10 @@ "e_string": "@rigcz.club", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["blazej", "adam"], + "known": [ + "blazej", + "adam" + ], "cat": "social" }, { @@ -3956,7 +5108,10 @@ "e_string": "profile:username", "m_string": "The page you are looking for isn't here", "m_code": 301, - "known": ["michael", "frank"], + "known": [ + "michael", + "frank" + ], "cat": "social" }, { @@ -3966,7 +5121,10 @@ "e_string": "@toot.community) - toot.community", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["Johnny", "jorijn"], + "known": [ + "Johnny", + "jorijn" + ], "cat": "social" }, { @@ -3976,7 +5134,10 @@ "e_string": "@mastodon.online) - Mastodon", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["Gargron", "RDHale"], + "known": [ + "Gargron", + "RDHale" + ], "cat": "social" }, { @@ -3987,7 +5148,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["RogerRemacle", "eugnick"], + "known": [ + "RogerRemacle", + "eugnick" + ], "cat": "social" }, { @@ -3997,7 +5161,10 @@ "e_string": "card mb-3 text-monospace", "m_string": "alert alert-success px-0 py-1", "m_code": 200, - "known": ["unrevive", "nxtuny"], + "known": [ + "unrevive", + "nxtuny" + ], "cat": "gaming" }, { @@ -4008,7 +5175,10 @@ "e_string": "Successfully found player by given ID.", "m_string": "minecraft.api_failure", "m_code": 200, - "known": ["smithy", "bob"], + "known": [ + "smithy", + "bob" + ], "cat": "gaming" }, { @@ -4019,7 +5189,10 @@ "e_string": "Medium member since", "m_string": "Out of nothing, something", "m_code": 404, - "known": ["zulie", "jessicalexicus"], + "known": [ + "zulie", + "jessicalexicus" + ], "cat": "news" }, { @@ -4029,7 +5202,10 @@ "e_string": "Lista uzytkownikow", "m_string": "This user has not registered and therefore does not have a profile to view.", "m_code": 200, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "health" }, { @@ -4039,7 +5215,10 @@ "e_string": "<title>Meet people like ", "m_string": "<title>MeetMe - Chat and Meet New People</title", "m_code": 302, - "known": ["john", "marsha"], + "known": [ + "john", + "marsha" + ], "cat": "dating" }, { @@ -4049,7 +5228,10 @@ "e_string": "_id", "m_string": "<title>404", "m_code": 404, - "known": ["sue", "david"], + "known": [ + "sue", + "david" + ], "cat": "social" }, { @@ -4059,7 +5241,10 @@ "e_string": "'s Profile - Metacritic", "m_string": "Sign up to get your own profile - Metacritic</", "m_code": 200, - "known": ["dev", "matt"], + "known": [ + "dev", + "matt" + ], "cat": "hobby" }, { @@ -4070,7 +5255,10 @@ "e_string": "\"valid\":false", "m_string": "\"valid\":true", "m_code": 200, - "known": ["gigan996", "mindsgaming"], + "known": [ + "gigan996", + "mindsgaming" + ], "cat": "social" }, { @@ -4080,7 +5268,10 @@ "e_string": "-->was seen on<!--", "m_string": "0 Minecraft servers recently", "m_code": 200, - "known": ["fear837", "dream"], + "known": [ + "fear837", + "dream" + ], "cat": "gaming" }, { @@ -4090,7 +5281,10 @@ "e_string": "token | mintMe", "m_string": "Page not found", "m_code": 404, - "known": ["john", "crypto"], + "known": [ + "john", + "crypto" + ], "cat": "finance" }, { @@ -4100,7 +5294,10 @@ "e_string": "Profil użytkownika", "m_string": "Nie znaleziono użytkownika o podanym loginie.", "m_code": 200, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "images" }, { @@ -4110,7 +5307,10 @@ "e_string": "<title>@", "m_string": "The best content from the open web, personalized.", "m_code": 302, - "known": ["test", "mixpicks"], + "known": [ + "test", + "mixpicks" + ], "cat": "social" }, { @@ -4121,7 +5321,10 @@ "e_string": "\"username\":", "m_string": "\"error\":", "m_code": 404, - "known": ["DjHunnyBee", "vegarecords"], + "known": [ + "DjHunnyBee", + "vegarecords" + ], "cat": "music" }, { @@ -4131,7 +5334,10 @@ "e_string": "| mixiコミュニティ", "m_string": "データがありません", "m_code": 200, - "known": ["2854333", "19123"], + "known": [ + "2854333", + "19123" + ], "cat": "social" }, { @@ -4142,7 +5348,10 @@ "e_string": "\"id\":", "m_string": "\"error\":\"Resource not found\"", "m_code": 404, - "known": ["test", "john"], + "known": [ + "test", + "john" + ], "cat": "music" }, { @@ -4152,7 +5361,10 @@ "e_string": "MMORPG.com Forums", "m_string": "404 Not Not_Found", "m_code": 404, - "known": ["TheDalaiBomba", "MadLovin"], + "known": [ + "TheDalaiBomba", + "MadLovin" + ], "cat": "gaming" }, { @@ -4162,7 +5374,10 @@ "e_string": "userpage_user", "m_string": "

404 Not Found", "m_code": 200, - "known": ["daniel", "franco"], + "known": [ + "daniel", + "franco" + ], "cat": "gaming" }, { @@ -4172,7 +5387,10 @@ "e_string": "joined Profil de ", "m_string": "

Page introuvable

", "m_code": 404, - "known": ["aesthetics", "pif"], + "known": [ + "aesthetics", + "pif" + ], "cat": "hobby" }, { @@ -4213,7 +5440,10 @@ "e_string": "Zamieszcza materiały od:", "m_string": "Nie znaleziono użytkownika o podanym loginie.", "m_code": 200, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "images" }, { @@ -4223,7 +5453,10 @@ "e_string": "Moxfield Profile", "m_string": "No user found ", "m_code": 200, - "known": ["gamer", "Carlos01"], + "known": [ + "gamer", + "Carlos01" + ], "cat": "misc" }, { @@ -4233,7 +5466,9 @@ "e_string": "on Muck Rack", "m_string": "Oh no! Page not found.", "m_code": 404, - "known": ["john"], + "known": [ + "john" + ], "cat": "news" }, { @@ -4244,7 +5479,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["Alizar", "weisjohan"], + "known": [ + "Alizar", + "weisjohan" + ], "cat": "social" }, { @@ -4254,7 +5492,10 @@ "e_string": "on Music Traveler", "m_string": "Page Not found", "m_code": 404, - "known": ["dave", "sarah"], + "known": [ + "dave", + "sarah" + ], "cat": "music" }, { @@ -4264,7 +5505,10 @@ "e_string": "og:title", "m_string": "Error 404", "m_code": 404, - "known": ["anuel", "esteban"], + "known": [ + "anuel", + "esteban" + ], "cat": "xx NSFW xx" }, { @@ -4274,7 +5518,10 @@ "e_string": " | Myinstants", "m_string": "Page not found", "m_code": 404, - "known": ["daniel01", "dave"], + "known": [ + "daniel01", + "dave" + ], "cat": "music" }, { @@ -4284,7 +5531,10 @@ "e_string": "Profile - MyAnimeList.net", "m_string": "404 Not Found", "m_code": 404, - "known": ["test", "admin"], + "known": [ + "test", + "admin" + ], "cat": "social" }, { @@ -4294,7 +5544,10 @@ "e_string": "feedback", "m_string": "Whoops! You broke our site!", "m_code": 404, - "known": ["blue", "john"], + "known": [ + "blue", + "john" + ], "cat": "social" }, { @@ -4304,7 +5557,10 @@ "e_string": "About the Author", "m_string": "<title>Page not found ", "m_code": 404, - "known": ["lauren-krouse", "julia-malacoff"], + "known": [ + "lauren-krouse", + "julia-malacoff" + ], "cat": "health" }, { @@ -4314,7 +5570,10 @@ "e_string": ">Last Active<", "m_string": "User Not Found", "m_code": 404, - "known": ["malibu927", "L1zardQueen"], + "known": [ + "malibu927", + "L1zardQueen" + ], "cat": "health" }, { @@ -4324,7 +5583,9 @@ "e_string": "on myLot", "m_string": " / Whoops!", "m_code": 404, - "known": ["Tampa_girl7"], + "known": [ + "Tampa_girl7" + ], "cat": "social" }, { @@ -4334,7 +5595,10 @@ "e_string": "class=\"page profile\"", "m_string": "class=\"page page-404\"", "m_code": 404, - "known": ["Unmissabl", "Nicolasmauranmedium"], + "known": [ + "Unmissabl", + "Nicolasmauranmedium" + ], "cat": "social" }, { @@ -4344,7 +5608,10 @@ "e_string": "nickname found:

", "m_string": "

Nickname not found. Try searching for similar nicknames.

", "m_code": 200, - "known": ["tw1st", "0xDEFACED"], + "known": [ + "tw1st", + "0xDEFACED" + ], "cat": "misc" }, { @@ -4355,7 +5622,10 @@ "e_string": "class=\"page-title", "m_string": "Adobe Portfolio | Build your own personalized website", "m_code": 302, - "known": ["artkonina", "fox"], + "known": [ + "artkonina", + "fox" + ], "cat": "misc" }, { @@ -4365,7 +5635,10 @@ "e_string": "", "m_string": "", "m_code": 404, - "known": ["alice", "bob"], + "known": [ + "alice", + "bob" + ], "cat": "social" }, { @@ -4376,7 +5649,10 @@ "e_string": "siteName", "m_string": "not found", "m_code": 404, - "known": ["arukori", "honey"], + "known": [ + "arukori", + "honey" + ], "cat": "business" }, { @@ -4386,7 +5662,10 @@ "e_string": "class=\"MwbUserHeader\"", "m_string": "class=\"MwbError\"", "m_code": 404, - "known": ["ke7_2024", "alekseevvasil"], + "known": [ + "ke7_2024", + "alekseevvasil" + ], "cat": "shopping" }, { @@ -4396,7 +5675,10 @@ "e_string": "dating Profile, ", "m_string": "- NaijaPlanet!", "m_code": 200, - "known": ["daniel01", "wales73"], + "known": [ + "daniel01", + "wales73" + ], "cat": "dating" }, { @@ -4406,7 +5688,10 @@ "e_string": "s Profile", "m_string": "404: Page Not Found", "m_code": 301, - "known": ["amakaone", "seun"], + "known": [ + "amakaone", + "seun" + ], "cat": "news" }, { @@ -4416,7 +5701,10 @@ "e_string": "All posts by", "m_string": "The page you are looking for cannot be found or is no longer available.", "m_code": 200, - "known": ["jdheyes", "healthranger"], + "known": [ + "jdheyes", + "healthranger" + ], "cat": "political" }, { @@ -4426,7 +5714,10 @@ "e_string": " : 네이버 블로그", "m_string": "페이지를 찾을 수 없습니다", "m_code": 500, - "known": ["bob", "blue"], + "known": [ + "bob", + "blue" + ], "cat": "social" }, { @@ -4436,7 +5727,10 @@ "e_string": "noindex, follow", "m_string": "- Not Found", "m_code": 404, - "known": ["fauux", "sadgrl"], + "known": [ + "fauux", + "sadgrl" + ], "cat": "social" }, { @@ -4446,7 +5740,10 @@ "e_string": "userId", "m_string": "Page not found", "m_code": 404, - "known": ["nebkacrea", "cdiljda"], + "known": [ + "nebkacrea", + "cdiljda" + ], "cat": "social" }, { @@ -4457,7 +5754,10 @@ "e_string": "user-header-name", "m_string": "Whoops, that's a swing and a miss!", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "gaming" }, { @@ -4467,7 +5767,10 @@ "e_string": "

The profile of", "m_string": "Chat with , , , - ", "m_code": 200, - "known": ["Harmonie06", "Bach007"], + "known": [ + "Harmonie06", + "Bach007" + ], "cat": "dating" }, { @@ -4478,7 +5781,10 @@ "e_string": "\"status\":200", "m_string": "\"status\":404", "m_code": 404, - "known": ["saevid", "proxyfox"], + "known": [ + "saevid", + "proxyfox" + ], "cat": "social" }, { @@ -4488,7 +5794,10 @@ "e_string": ") | Nih buat jajan", "m_string": "Nih Buat Jajan", "m_code": 302, - "known": ["banyusadewa", "danirachmat"], + "known": [ + "banyusadewa", + "danirachmat" + ], "cat": "social" }, { @@ -4499,7 +5808,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["Myxx", "honey"], + "known": [ + "Myxx", + "honey" + ], "cat": "social" }, { @@ -4510,7 +5822,10 @@ "e_string": " ", "m_string": "<title>Ошибка 404 -", "m_code": 404, - "known": ["lena", "slava"], + "known": [ + "lena", + "slava" + ], "cat": "social" }, { @@ -4520,7 +5835,11 @@ "e_string": "class=\"user profile\"", "m_string": "alt=\"404\"", "m_code": 404, - "known": ["notabug", "hp", "zPlus"], + "known": [ + "notabug", + "hp", + "zPlus" + ], "cat": "coding" }, { @@ -4530,7 +5849,10 @@ "e_string": "フォロワー", "m_string": "お探しのページが見つかりません。", "m_code": 404, - "known": ["honey", "yui"], + "known": [ + "honey", + "yui" + ], "cat": "social" }, { @@ -4540,7 +5862,10 @@ "e_string": "\"id\":", "m_string": "<h1>not found</h1>", "m_code": 404, - "known": ["npm", "rich_harris"], + "known": [ + "npm", + "rich_harris" + ], "cat": "coding" }, { @@ -4550,7 +5875,10 @@ "e_string": "Profil użytkownika:", "m_string": "Nieprawidłowy link, w bazie danych nie istnieje użytkownik o podanym loginie", "m_code": 404, - "known": ["kowal", "janek"], + "known": [ + "kowal", + "janek" + ], "cat": "shopping" }, { @@ -4560,7 +5888,10 @@ "e_string": "| OK", "m_string": "class=\"p404_t", "m_code": 404, - "known": ["john", "aleksandrvasillev"], + "known": [ + "john", + "aleksandrvasillev" + ], "cat": "social" }, { @@ -4570,7 +5901,10 @@ "e_string": "Пользователь", "m_string": "Страница не найдена", "m_code": 404, - "known": ["nastya3", "nastya"], + "known": [ + "nastya3", + "nastya" + ], "cat": "misc" }, { @@ -4582,7 +5916,10 @@ "e_string": "\"success\": true", "m_string": "\"success\": false", "m_code": 200, - "known": ["cwa", "adam"], + "known": [ + "cwa", + "adam" + ], "cat": "social" }, { @@ -4593,7 +5930,10 @@ "e_string": "\"hits\":[{", "m_string": "\"hits\":[]", "m_code": 200, - "known": ["miaimani", "milaamour"], + "known": [ + "miaimani", + "milaamour" + ], "cat": "xx NSFW xx" }, { @@ -4603,7 +5943,10 @@ "e_string": "- Open Collective", "m_string": "Not Found", "m_code": 200, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "finance" }, { @@ -4613,7 +5956,10 @@ "e_string": "| Opensource.com", "m_string": "Page not found", "m_code": 404, - "known": ["dave", "mike"], + "known": [ + "dave", + "mike" + ], "cat": "tech" }, { @@ -4623,7 +5969,9 @@ "e_string": "Mapper since:", "m_string": "does not exist", "m_code": 404, - "known": ["kemkim"], + "known": [ + "kemkim" + ], "cat": "social" }, { @@ -4633,7 +5981,10 @@ "e_string": "- Summoner Stats - League of Legends", "m_string": "Guide - OP.GG", "m_code": 200, - "known": ["xin", "carlos01"], + "known": [ + "xin", + "carlos01" + ], "cat": "gaming" }, { @@ -4643,7 +5994,9 @@ "e_string": "profile_user_image", "m_string": "The page you are looking for cannot be found.", "m_code": 404, - "known": ["txmustang302"], + "known": [ + "txmustang302" + ], "cat": "social" }, { @@ -4653,7 +6006,10 @@ "e_string": "uniqueId", "m_string": "not-found", "m_code": 404, - "known": ["john", "jane"], + "known": [ + "john", + "jane" + ], "cat": "gaming" }, { @@ -4663,7 +6019,10 @@ "e_string": "uniqueId", "m_string": "not-found", "m_code": 404, - "known": ["carlos", "pedro"], + "known": [ + "carlos", + "pedro" + ], "cat": "gaming" }, { @@ -4673,7 +6032,10 @@ "e_string": "uniqueId", "m_string": "not-found", "m_code": 404, - "known": ["carlos", "mary"], + "known": [ + "carlos", + "mary" + ], "cat": "gaming" }, { @@ -4683,7 +6045,10 @@ "e_string": "", "m_string": "User not found! ;_;", "m_code": 404, - "known": ["stretches", "spiken8"], + "known": [ + "stretches", + "spiken8" + ], "cat": "gaming" }, { @@ -4693,7 +6058,10 @@ "e_string": "meta property=\"og:", "m_string": "Sorry, page not found", "m_code": 302, - "known": ["DaveLipsky", "StarlaJene"], + "known": [ + "DaveLipsky", + "StarlaJene" + ], "cat": "social" }, { @@ -4703,7 +6071,10 @@ "e_string": "Images", "m_string": "404 error", "m_code": 404, - "known": ["StopAdMedia", "jokervendetti"], + "known": [ + "StopAdMedia", + "jokervendetti" + ], "cat": "social" }, { @@ -4713,7 +6084,10 @@ "e_string": "class=\"profile-cover\"", "m_string": "Unknown user account!", "m_code": 404, - "known": ["trincowski-pt", "anggreklestari"], + "known": [ + "trincowski-pt", + "anggreklestari" + ], "cat": "social" }, { @@ -4723,7 +6097,10 @@ "e_string": "People to Follow", "m_string": "join Parler today", "m_code": 302, - "known": ["DineshDsouza", "SeanHannity"], + "known": [ + "DineshDsouza", + "SeanHannity" + ], "cat": "social" }, { @@ -4734,7 +6111,10 @@ "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, - "known": ["JoePags", "dineshdsouza"], + "known": [ + "JoePags", + "dineshdsouza" + ], "cat": "archived" }, { @@ -4745,7 +6125,10 @@ "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, - "known": ["JoePags", "dineshdsouza"], + "known": [ + "JoePags", + "dineshdsouza" + ], "cat": "archived" }, { @@ -4755,7 +6138,10 @@ "e_string": "'s Pastebin", "m_string": "", "m_code": 404, - "known": ["test", "john"], + "known": [ + "test", + "john" + ], "cat": "tech" }, { @@ -4765,7 +6151,10 @@ "e_string": "<title>Patch User Profile", "m_string": "<title>Page not found", "m_code": 404, - "known": ["dave", "bob"], + "known": [ + "dave", + "bob" + ], "cat": "news" }, { @@ -4775,7 +6164,11 @@ "e_string": "s profile | PatientsLikeMe", "m_string": "", "m_code": 302, - "known": ["thjuland", "Pedro0703", "Hydropioneer"], + "known": [ + "thjuland", + "Pedro0703", + "Hydropioneer" + ], "cat": "health" }, { @@ -4785,7 +6178,10 @@ "e_string": "full_name\":", "m_string": "errorCode\": 404,", "m_code": 404, - "known": ["mubix", "doughboys"], + "known": [ + "mubix", + "doughboys" + ], "cat": "finance" }, { @@ -4795,7 +6191,10 @@ "e_string": "nav-user active register", "m_string": "An error occurred", "m_code": 500, - "known": ["r3deleven", "MemeFactory"], + "known": [ + "r3deleven", + "MemeFactory" + ], "cat": "political" }, { @@ -4805,7 +6204,10 @@ "e_string": "Zostań Patronem", "m_string": "Nie znaleźliśmy strony której szukasz.", "m_code": 404, - "known": ["radio357", "radionowyswiat"], + "known": [ + "radio357", + "radionowyswiat" + ], "cat": "finance" }, { @@ -4815,7 +6217,10 @@ "e_string": "userInfo", "m_string": "PayPal.MeFollowers", "m_string": "Sorry, this page doesn’t exist", "m_code": 404, - "known": ["john", "test"], + "known": [ + "john", + "test" + ], "cat": "video" }, { @@ -4855,7 +6270,10 @@ "e_string": "Zamieszcza eksponaty od:", "m_string": "Nie znaleziono użytkownika o podanym loginie.", "m_code": 200, - "known": ["test", "ania"], + "known": [ + "test", + "ania" + ], "cat": "misc" }, { @@ -4865,7 +6283,10 @@ "e_string": "Profiles on Picsart", "m_string": "User not found", "m_code": 404, - "known": ["john", "john404"], + "known": [ + "john", + "john404" + ], "cat": "art" }, { @@ -4875,7 +6296,10 @@ "e_string": "Zamieszcza historie od:", "m_string": "Nie znaleziono użytkownika o podanym loginie.", "m_code": 200, - "known": ["test", "janek"], + "known": [ + "test", + "janek" + ], "cat": "misc" }, { @@ -4885,7 +6309,10 @@ "e_string": "— все посты пользователя", "m_string": "404. Страница не найдена", "m_code": 404, - "known": ["igor01", "serguei"], + "known": [ + "igor01", + "serguei" + ], "cat": "social" }, { @@ -4895,7 +6322,10 @@ "e_string": "", "m_string": "That page does not exist, or you do not have the proper permissions to view it.", "m_code": 404, - "known": ["MissMoonified", "honey"], + "known": [ + "MissMoonified", + "honey" + ], "cat": "social" }, { @@ -4905,7 +6335,10 @@ "e_string": "on Pinkbike", "m_string": "I couldn't find the page you were looking for", "m_code": 404, - "known": ["whistlermountainbikepark", "paulhanson"], + "known": [ + "whistlermountainbikepark", + "paulhanson" + ], "cat": "hobby" }, { @@ -4915,7 +6348,10 @@ "e_string": " - Profile | Pinterest", "m_string": "id=\"home-main-title", "m_code": 301, - "known": ["test123", "frickcollection"], + "known": [ + "test123", + "frickcollection" + ], "cat": "social" }, { @@ -4925,7 +6361,10 @@ "e_string": "on pixelfed", "m_string": "pixelfed", "m_code": 404, - "known": ["sarah", "john"], + "known": [ + "sarah", + "john" + ], "cat": "social" }, { @@ -4936,7 +6375,10 @@ "e_string": "
", "m_string": "We couldn't find anything ", "m_code": 200, - "known": ["SlimShaggy18", "ikemenzi"], + "known": [ + "SlimShaggy18", + "ikemenzi" + ], "cat": "gaming" }, { @@ -4946,7 +6388,10 @@ "e_string": "class=\"user-page\"", "m_string": "PLINK - 404 Page not found", "m_code": 404, - "known": ["CryptonianTV", "xacstonyjx"], + "known": [ + "CryptonianTV", + "xacstonyjx" + ], "cat": "gaming" }, { @@ -4956,7 +6401,9 @@ "e_string": "Profile views", "m_string": "Register your plurk account", "m_code": 200, - "known": ["test"], + "known": [ + "test" + ], "cat": "social" }, { @@ -4966,7 +6413,10 @@ "e_string": "\"__isNode\":\"PoeUser\"", "m_string": "\"user\":null", "m_code": 200, - "known": ["spdustin", "PromptCase"], + "known": [ + "spdustin", + "PromptCase" + ], "cat": "tech" }, { @@ -4976,7 +6426,10 @@ "e_string": "idReportedUser", "m_string": "Neexistujúci používateľ", "m_code": 404, - "known": ["tobias", "brahim1"], + "known": [ + "tobias", + "brahim1" + ], "cat": "social" }, { @@ -4986,7 +6439,10 @@ "e_string": "Official ladder", "m_string": " (Unregistered)", "m_code": 404, - "known": ["red", "blue"], + "known": [ + "red", + "blue" + ], "cat": "gaming" }, { @@ -4996,7 +6452,10 @@ "e_string": "User profile for", "m_string": "Sorry, the requested page couldn't be found!", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "gaming" }, { @@ -5007,7 +6466,10 @@ "e_string": "\"id\":", "m_string": "404 Not Found", "m_code": 404, - "known": ["EngelBos", "GunnarEndlich"], + "known": [ + "EngelBos", + "GunnarEndlich" + ], "cat": "hobby" }, { @@ -5017,7 +6479,10 @@ "e_string": "Historia wpisów", "m_string": "Wybrany użytkownik nie istnieje.", "m_code": 200, - "known": ["admin", "Lesik"], + "known": [ + "admin", + "Lesik" + ], "cat": "social" }, { @@ -5027,7 +6492,10 @@ "e_string": "Autor", "m_string": "Nie znaleziono tematów ani postów pasujących do Twoich kryteriów", "m_code": 200, - "known": ["Pvwel", "janek"], + "known": [ + "Pvwel", + "janek" + ], "cat": "misc" }, { @@ -5038,7 +6506,10 @@ "e_string": "name", "m_string": "ResourceNotFound", "m_code": 404, - "known": ["josh", "jsmith"], + "known": [ + "josh", + "jsmith" + ], "cat": "tech" }, { @@ -5048,7 +6519,10 @@ "e_string": "- Polygon", "m_string": "404 Not found", "m_code": 404, - "known": ["nicodeyo", "Nicole_Clark"], + "known": [ + "nicodeyo", + "Nicole_Clark" + ], "cat": "gaming" }, { @@ -5058,7 +6532,11 @@ "e_string": "MuiTypography-root MuiTypography-body1 css-kj7pvm", "m_string": "Profile not found", "m_code": 200, - "known": ["rpelite", "Ee0af3d822", "ashleymetzger"], + "known": [ + "rpelite", + "Ee0af3d822", + "ashleymetzger" + ], "cat": "business" }, { @@ -5068,7 +6546,10 @@ "e_string": "Pornstar Rank", "m_string": "", "m_code": 301, - "known": ["riley-reid", "alex-adams"], + "known": [ + "riley-reid", + "alex-adams" + ], "cat": "xx NSFW xx" }, { @@ -5078,7 +6559,9 @@ "e_string": "s Profile - Pornhub.com", "m_string": "Error Page Not Found", "m_code": 404, - "known": ["test123"], + "known": [ + "test123" + ], "cat": "xx NSFW xx" }, { @@ -5088,7 +6571,10 @@ "e_string": " is using Poshmark to sell items from their closet.", "m_string": "Page not found - Poshmark", "m_code": 404, - "known": ["alice", "bob"], + "known": [ + "alice", + "bob" + ], "cat": "shopping" }, { @@ -5098,7 +6584,10 @@ "e_string": ", from", "m_string": "- Postcrossing", "m_code": 404, - "known": ["Vladimir", "olga3"], + "known": [ + "Vladimir", + "olga3" + ], "cat": "social" }, { @@ -5109,7 +6598,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["aggiepm", "eplumley1976"], + "known": [ + "aggiepm", + "eplumley1976" + ], "cat": "social" }, { @@ -5120,9 +6612,14 @@ "e_string": "\"user\":", "m_string": "\"code\":404", "m_code": 404, - "known": ["kaizernero", "Giga1337"], + "known": [ + "kaizernero", + "Giga1337" + ], "cat": "social", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Pravda.me", @@ -5131,7 +6628,10 @@ "e_string": "Российская социальная сеть (by mastodon)", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["tass", "rt_russian"], + "known": [ + "tass", + "rt_russian" + ], "cat": "social" }, { @@ -5142,7 +6642,10 @@ "e_string": "assign_path", "m_string": "The requested URL or resource could not be found.", "m_code": 404, - "known": ["jonah", "dngray"], + "known": [ + "jonah", + "dngray" + ], "cat": "tech" }, { @@ -5152,7 +6655,10 @@ "e_string": "s profile on Product Hunt", "m_string": "Product Hunt - All newest Products", "m_code": 404, - "known": ["alex", "jack"], + "known": [ + "alex", + "jack" + ], "cat": "business" }, { @@ -5164,7 +6670,10 @@ "e_string": "Address you entered is already taken", "m_string": "The address is free, it's great;)", "m_code": 200, - "known": ["sekoy", "vovasmallny"], + "known": [ + "sekoy", + "vovasmallny" + ], "cat": "music", "headers": { "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" @@ -5178,7 +6687,10 @@ "e_string": "username", "m_string": "\"profiles\": {}", "m_code": 304, - "known": ["cannabis_cervi", "user"], + "known": [ + "cannabis_cervi", + "user" + ], "cat": "social" }, { @@ -5189,7 +6701,10 @@ "e_string": "\"username\":", "m_string": "That user doesn't exist", "m_code": 400, - "known": ["donna", "honey"], + "known": [ + "donna", + "honey" + ], "cat": "social" }, { @@ -5199,7 +6714,10 @@ "e_string": "blog-title", "m_string": "Are you sure it was ever here?", "m_code": 404, - "known": ["endeavorance", "overthinkification"], + "known": [ + "endeavorance", + "overthinkification" + ], "cat": "blog" }, { @@ -5209,7 +6727,10 @@ "e_string": "LOGIN", "m_string": "Użytkownik nie istnieje.", "m_code": 200, - "known": ["test", "test2"], + "known": [ + "test", + "test2" + ], "cat": "tech" }, { @@ -5219,7 +6740,10 @@ "e_string": "\"publicId\":", "m_string": "<title>404 - Page Not Found", "m_code": 404, - "known": ["igor1", "david2"], + "known": [ + "igor1", + "david2" + ], "cat": "finance" }, { @@ -5229,7 +6753,10 @@ "e_string": "Profile of", "m_string": "Page Not Found (404) · PyPI", "m_code": 404, - "known": ["dev", "pydude"], + "known": [ + "dev", + "pydude" + ], "cat": "coding" }, { @@ -5239,7 +6766,10 @@ "e_string": "Ostatnio on-line", "m_string": "Strona nie została znaleziona", "m_code": 404, - "known": ["claudii", "kowalski"], + "known": [ + "claudii", + "kowalski" + ], "cat": "social" }, { @@ -5250,7 +6780,10 @@ "e_string": "avatar_static", "m_string": "\"error\":", "m_code": 404, - "known": ["smok", "mik"], + "known": [ + "smok", + "mik" + ], "cat": "social" }, { @@ -5261,9 +6794,14 @@ "e_string": "\"identifier\":\"username_is_taken\"", "m_string": "\"success\":true", "m_code": 200, - "known": ["Rita426", "Muyao_531"], + "known": [ + "Rita426", + "Muyao_531" + ], "cat": "hobby", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Quora", @@ -5272,7 +6810,10 @@ "e_string": "Credentials", "m_string": "Page Not Found", "m_code": 301, - "known": ["John-Galan-5", "Alex-Clay"], + "known": [ + "John-Galan-5", + "Alex-Clay" + ], "cat": "social" }, { @@ -5282,7 +6823,10 @@ "e_string": "sidebar__title", "m_string": "404 Not Found", "m_code": 404, - "known": ["zephyr", "Archaplain"], + "known": [ + "zephyr", + "Archaplain" + ], "cat": "social" }, { @@ -5292,7 +6836,10 @@ "e_string": "\"id\":", "m_string": "[]", "m_code": 200, - "known": ["pompompurin", "DexterM1"], + "known": [ + "pompompurin", + "DexterM1" + ], "cat": "archived" }, { @@ -5302,7 +6849,10 @@ "e_string": "blog-title", "m_string": "Are you sure it was ever here?", "m_code": 404, - "known": ["baretri", "arinbasu"], + "known": [ + "baretri", + "arinbasu" + ], "cat": "blog" }, { @@ -5313,7 +6863,10 @@ "e_string": "\"id\":", "m_string": "\"success\":false", "m_code": 404, - "known": ["lokikot", "vintagemozart"], + "known": [ + "lokikot", + "vintagemozart" + ], "cat": "tech" }, { @@ -5324,7 +6877,10 @@ "e_string": "\"userId\":", "m_string": "\"success\":false", "m_code": 400, - "known": ["webbreacher", "SonOfSevenless"], + "known": [ + "webbreacher", + "SonOfSevenless" + ], "cat": "gaming" }, { @@ -5334,7 +6890,10 @@ "e_string": "Shop | Redbubble", "m_string": "This is a lost cause.", "m_code": 404, - "known": ["john", "blue"], + "known": [ + "john", + "blue" + ], "cat": "shopping" }, { @@ -5345,7 +6904,10 @@ "e_string": "total_karma", "m_string": "Not Found", "m_code": 404, - "known": ["koavf", "alabasterheart"], + "known": [ + "koavf", + "alabasterheart" + ], "cat": "social" }, { @@ -5356,7 +6918,10 @@ "e_string": "followers", "m_string": "user account not found for ", "m_code": 404, - "known": ["alexbreecooper", "Jose-Roberto-Rasi"], + "known": [ + "alexbreecooper", + "Jose-Roberto-Rasi" + ], "cat": "xx NSFW xx" }, { @@ -5366,7 +6931,10 @@ "e_string": "og:title", "m_string": "That's unfortunate. Where did it go?", "m_code": 404, - "known": ["razzyaurealis", "saki"], + "known": [ + "razzyaurealis", + "saki" + ], "cat": "hobby" }, { @@ -5376,7 +6944,10 @@ "e_string": "\"id\":", "m_string": "\"statusCode\":404", "m_code": 404, - "known": ["david", "torcado"], + "known": [ + "david", + "torcado" + ], "cat": "coding" }, { @@ -5386,7 +6957,10 @@ "e_string": " | ", "m_string": "20+ million researchers on ResearchGate", "m_code": 301, - "known": ["Tafara-Mwareya", "Jose-Roberto-Rasi"], + "known": [ + "Tafara-Mwareya", + "Jose-Roberto-Rasi" + ], "cat": "hobby" }, { @@ -5396,7 +6970,10 @@ "e_string": "- Resume | Actors Access", "m_string": "File was not found on this SERVER", "m_code": 200, - "known": ["veronicashelby", "sarahstipe"], + "known": [ + "veronicashelby", + "sarahstipe" + ], "cat": "social" }, { @@ -5407,7 +6984,10 @@ "e_string": "\"firstName\"", "m_string": "\"User not found\"", "m_code": 404, - "known": ["theaswdc", "honey"], + "known": [ + "theaswdc", + "honey" + ], "cat": "finance" }, { @@ -5417,7 +6997,10 @@ "e_string": "— Люди — Risk.ru", "m_string": "404 — Risk.ru", "m_code": 404, - "known": ["igor1", "olga"], + "known": [ + "igor1", + "olga" + ], "cat": "hobby" }, { @@ -5428,7 +7011,10 @@ "e_string": "Username is already in use", "m_string": "Username is valid", "m_code": 200, - "known": ["LeetPawn", "elephant459"], + "known": [ + "LeetPawn", + "elephant459" + ], "cat": "gaming" }, { @@ -5438,7 +7024,10 @@ "e_string": "Downloads: ", "m_string": "A community for Apple Shortcuts", "m_code": 200, - "known": ["zachary7829", "JonathanSetzer"], + "known": [ + "zachary7829", + "JonathanSetzer" + ], "cat": "social" }, { @@ -5448,7 +7037,10 @@ "e_string": "CITIZEN DOSSIER", "m_string": "404 NAVIGATING UNCHARTED TERRITORY", "m_code": 404, - "known": ["alpHackeronee", "Quantum_Physicist"], + "known": [ + "alpHackeronee", + "Quantum_Physicist" + ], "cat": "gaming" }, { @@ -5458,7 +7050,10 @@ "e_string": "userID", "m_string": "Фотобанк 123RF - Стоковые Фото, Векторы, Видеоролики. Подписка на Фото. Royalty Free контент<", "m_code": 302, - "known": ["ruslan", "olga"], + "known": [ + "ruslan", + "olga" + ], "cat": "hobby" }, { @@ -5468,7 +7063,10 @@ "e_string": "href=https://rumble.com/c/", "m_string": "404 error, this page does not exist", "m_code": 404, - "known": ["SaltyCracker", "GGreenwald"], + "known": [ + "SaltyCracker", + "GGreenwald" + ], "cat": "political" }, { @@ -5478,7 +7076,10 @@ "e_string": "href=https://rumble.com/user/", "m_string": "404 error, this page does not exist", "m_code": 404, - "known": ["SimonParkes", "djmrmusic"], + "known": [ + "SimonParkes", + "djmrmusic" + ], "cat": "political" }, { @@ -5489,7 +7090,10 @@ "e_string": "\"name\":", "m_string": "\"error\":\"NO_PROFILE\"", "m_code": 200, - "known": ["Thomas", "Wahisietel"], + "known": [ + "Thomas", + "Wahisietel" + ], "cat": "hobby" }, { @@ -5499,7 +7103,10 @@ "e_string": "Профиль пользователя", "m_string": "Пользователь не найден", "m_code": 200, - "known": ["Rutracker", "Feo156"], + "known": [ + "Rutracker", + "Feo156" + ], "cat": "misc" }, { @@ -5509,7 +7116,10 @@ "e_string": "<span>Obserwujących</span>", "m_string": "<title>Salon24 - Blogi, wiadomości, opinie i komentarze", "m_code": 301, - "known": ["matuzalem", "niewiarygodne"], + "known": [ + "matuzalem", + "niewiarygodne" + ], "cat": "blog" }, { @@ -5520,7 +7130,10 @@ "e_string": "avatar_template", "m_string": "The requested URL or resource could not be found", "m_code": 404, - "known": ["AngelFat", "lecter"], + "known": [ + "AngelFat", + "lecter" + ], "cat": "misc" }, { @@ -5530,7 +7143,10 @@ "e_string": "NewPP limit report", "m_string": "is not registered", "m_code": 301, - "known": ["Mlh_nl", "Benjism89"], + "known": [ + "Mlh_nl", + "Benjism89" + ], "cat": "social" }, { @@ -5540,7 +7156,9 @@ "e_string": "on Scratch", "m_string": "We couldn't find the page you're looking for.", "m_code": 404, - "known": ["griffpatch"], + "known": [ + "griffpatch" + ], "cat": "coding" }, { @@ -5550,7 +7168,10 @@ "e_string": "| DonationPay", "m_string": "secure.donationpay.org", "m_code": 404, - "known": ["rareimpact", "safc"], + "known": [ + "rareimpact", + "safc" + ], "cat": "finance" }, { @@ -5560,7 +7181,10 @@ "e_string": "Membre depuis -", "m_string": "- Page non trouvée!", "m_code": 302, - "known": ["mamadou", "konate"], + "known": [ + "mamadou", + "konate" + ], "cat": "social" }, { @@ -5570,7 +7194,10 @@ "e_string": "Dernier Login", "m_string": "Unexpected error! Please contact us and tell us more how you got to this page!", "m_code": 301, - "known": ["Kalsobbc", "Boymariste"], + "known": [ + "Kalsobbc", + "Boymariste" + ], "cat": "xx NSFW xx" }, { @@ -5580,7 +7207,10 @@ "e_string": "Chat online with", "m_string": "HTTP Error code: 404. Resource not found", "m_code": 404, - "known": ["david01", "brahim01"], + "known": [ + "david01", + "brahim01" + ], "cat": "dating" }, { @@ -5590,7 +7220,10 @@ "e_string": "
", "m_string": "SEO Marketplace", "m_code": 302, - "known": ["Vfmseo", "gokudadon"], + "known": [ + "Vfmseo", + "gokudadon" + ], "cat": "social" }, { @@ -5600,7 +7233,10 @@ "e_string": "s setlist.fm | setlist.fm", "m_string": "Sorry, the page you requested doesn't exist", "m_code": 404, - "known": ["bendobrin", "michi"], + "known": [ + "bendobrin", + "michi" + ], "cat": "music" }, { @@ -5611,7 +7247,10 @@ "e_string": "profilePictureUrl", "m_string": "This user does not exist.", "m_code": 404, - "known": ["sakii_nightshade", "annajean2319"], + "known": [ + "sakii_nightshade", + "annajean2319" + ], "cat": "xx NSFW xx" }, { @@ -5621,7 +7260,10 @@ "e_string": "Tematy użytkownika", "m_string": "Brak aktywnego profilu na forum", "m_code": 404, - "known": ["janek", "admin"], + "known": [ + "janek", + "admin" + ], "cat": "health" }, { @@ -5631,7 +7273,10 @@ "e_string": "s Profile - ShesFreaky", "m_string": "", "m_code": 302, - "known": ["tata23", "fitzsta"], + "known": [ + "tata23", + "fitzsta" + ], "cat": "xx NSFW xx" }, { @@ -5642,7 +7287,10 @@ "e_string": "home", "m_string": "Sorry, this shop is currently unavailable.", "m_code": 404, - "known": ["john", "daniel"], + "known": [ + "john", + "daniel" + ], "cat": "shopping" }, { @@ -5652,7 +7300,10 @@ "e_string": "O mnie", "m_string": "Darmowe", "m_code": 404, - "known": ["LunaVee", "Jane_Frou"], + "known": [ + "LunaVee", + "Jane_Frou" + ], "cat": "xx NSFW xx", "headers": { "Cookie": "accept_rules=true;" @@ -5665,7 +7316,10 @@ "e_string": "| Shutterstock", "m_string": "Well, this is unexpected...", "m_code": 404, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "images" }, { @@ -5675,7 +7329,11 @@ "e_string": "<h5>joined", "m_string": "<title>SimplePlanes Airplanes", "m_code": 302, - "known": ["realSavageMan", "Jundroo", "john"], + "known": [ + "realSavageMan", + "Jundroo", + "john" + ], "cat": "gaming" }, { @@ -5685,7 +7343,10 @@ "e_string": ") | Skeb", "m_string": "Skeb - Request Box", "m_code": 503, - "known": ["eipuru_", "sime064"], + "known": [ + "eipuru_", + "sime064" + ], "cat": "art" }, { @@ -5695,7 +7356,10 @@ "e_string": "Pussy and Ass Sizes", "m_string": "It looks like nothing was found at this location", "m_code": 404, - "known": ["alexbreecooper", "roxy-raye"], + "known": [ + "alexbreecooper", + "roxy-raye" + ], "cat": "xx NSFW xx" }, { @@ -5705,7 +7369,10 @@ "e_string": "s Profile - Slant", "m_string": "404 - Page Not Found - Slant", "m_code": 404, - "known": ["bob", "john"], + "known": [ + "bob", + "john" + ], "cat": "shopping" }, { @@ -5715,7 +7382,9 @@ "e_string": "Presentations by", "m_string": "You may have mistyped the address", "m_code": 404, - "known": ["arunthomas"], + "known": [ + "arunthomas" + ], "cat": "social" }, { @@ -5725,7 +7394,10 @@ "e_string": "data-testid=\"report-button\"", "m_string": "id=\"username-available\"", "m_code": 200, - "known": ["rebeccaskeeles", "john"], + "known": [ + "rebeccaskeeles", + "john" + ], "cat": "social" }, { @@ -5735,7 +7407,9 @@ "e_string": "Miles run overall", "m_string": "no Smashrunner with the username", "m_code": 404, - "known": ["john.young"], + "known": [ + "john.young" + ], "cat": "health" }, { @@ -5745,7 +7419,10 @@ "e_string": "Smelsy -", "m_string": "Server Error", "m_code": 500, - "known": ["mohamed01", "ahmed"], + "known": [ + "mohamed01", + "ahmed" + ], "cat": "misc" }, { @@ -5756,7 +7433,10 @@ "e_string": "schema.org/Person", "m_string": "schema.org/Thing", "m_code": 404, - "known": ["wow", "jill"], + "known": [ + "wow", + "jill" + ], "cat": "images" }, { @@ -5767,7 +7447,10 @@ "e_string": "account_id", "m_string": "code\": 65", "m_code": 400, - "known": ["cgrrose", "John___Anish"], + "known": [ + "cgrrose", + "John___Anish" + ], "cat": "music" }, { @@ -5777,7 +7460,10 @@ "e_string": "is on Snapchat!", "m_string": "NOT_FOUND", "m_code": 200, - "known": ["djkhaled305", "mileycyrus"], + "known": [ + "djkhaled305", + "mileycyrus" + ], "cat": "social" }, { @@ -5787,7 +7473,10 @@ "e_string": "creatorLink", "m_string": "Oops, you hit a dead end!", "m_code": 404, - "known": ["mycherrycrush", "honey"], + "known": [ + "mycherrycrush", + "honey" + ], "cat": "misc" }, { @@ -5797,17 +7486,10 @@ "e_string": "@soc.citizen4.eu", "m_string": "Nie znaleziono", "m_code": 404, - "known": ["admin", "miklo"], - "cat": "social" - }, - { - "name": "social_msdn", - "uri_check": "https://social.msdn.microsoft.com/profile/{account}", - "e_code": 200, - "e_string": "Member Since", - "m_string": "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.", - "m_code": 404, - "known": ["edoardo", "microsoftfan"], + "known": [ + "admin", + "miklo" + ], "cat": "social" }, { @@ -5817,7 +7499,23 @@ "e_string": "@social.bund.de) - social.bund.de", "m_string": "The page you are looking for isn't here.", "m_code": 404, - "known": ["bfdi", "bmdv"], + "known": [ + "bfdi", + "bmdv" + ], + "cat": "social" + }, + { + "name": "social_msdn", + "uri_check": "https://social.msdn.microsoft.com/profile/{account}", + "e_code": 200, + "e_string": "Member Since", + "m_string": "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.", + "m_code": 404, + "known": [ + "edoardo", + "microsoftfan" + ], "cat": "social" }, { @@ -5828,7 +7526,10 @@ "e_string": "'s Profile | SoFurry", "m_string": "SoFurry - Error | SoFurry", "m_code": 404, - "known": ["reeden-landshey", "tigerzero"], + "known": [ + "reeden-landshey", + "tigerzero" + ], "cat": "art" }, { @@ -5838,7 +7539,10 @@ "e_string": "create your own page", "m_string": "The page you're looking for isn't here.", "m_code": 404, - "known": ["saruei", "yui"], + "known": [ + "saruei", + "yui" + ], "cat": "social" }, { @@ -5848,7 +7552,9 @@ "e_string": "SoundCloud", "m_string": "sounds", "m_code": 404, - "known": ["test123"], + "known": [ + "test123" + ], "cat": "music" }, { @@ -5858,7 +7564,10 @@ "e_string": "Author at Soup.io", "m_string": "Soup.io - News, Sports, Entertainment, TV, Tech, Gaming", "m_code": 301, - "known": ["john", "cristina"], + "known": [ + "john", + "cristina" + ], "cat": "blog" }, { @@ -5869,9 +7578,14 @@ "e_string": "\"error\": \"invalid\"", "m_string": "\"success\": 1", "m_code": 200, - "known": ["alice", "bob"], + "known": [ + "alice", + "bob" + ], "cat": "coding", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Speaker Deck", @@ -5880,7 +7594,10 @@ "e_string": ") on Speaker Deck", "m_string": "User Not Found - Speaker Deck", "m_code": 404, - "known": ["petecheslock", "turbosmart45"], + "known": [ + "petecheslock", + "turbosmart45" + ], "cat": "social" }, { @@ -5890,7 +7607,10 @@ "e_string": "Runs - ", "m_string": "speedrun.com", "m_code": 404, - "known": ["mike", "chris"], + "known": [ + "mike", + "chris" + ], "cat": "gaming" }, { @@ -5900,7 +7620,10 @@ "e_string": "Portfolio of IT Projects - Spiceworks", "m_string": "Page Not Found", "m_code": 404, - "known": ["spicerex", "rod-it"], + "known": [ + "spicerex", + "rod-it" + ], "cat": "tech" }, { @@ -5910,7 +7633,10 @@ "e_string": "<h3>Activity over the last year</h3>", "m_string": "<strong>Innopolis Open 2018</strong>", "m_code": 200, - "known": ["defrager", "xilinx"], + "known": [ + "defrager", + "xilinx" + ], "cat": "coding" }, { @@ -5920,7 +7646,10 @@ "e_string": "'s Sporcle Friends", "m_string": "This Sporcle user cannot be found.", "m_code": 301, - "known": ["Test", "lolshortee"], + "known": [ + "Test", + "lolshortee" + ], "cat": "gaming" }, { @@ -5931,7 +7660,10 @@ "e_string": "\"uuid\":", "m_string": "\"code\":\"404\"", "m_code": 200, - "known": ["petriola", "adisonthadat"], + "known": [ + "petriola", + "adisonthadat" + ], "cat": "health" }, { @@ -5941,9 +7673,14 @@ "e_string": "content=\"profile\"", "m_string": "Page not found", "m_code": 404, - "known": ["kexp_official", "mkbhd"], + "known": [ + "kexp_official", + "mkbhd" + ], "cat": "music", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "StackOverflow", @@ -5952,9 +7689,14 @@ "e_string": "grid--item user-info", "m_string": "No users matched your search.", "m_code": 200, - "known": ["vonc", "bergi"], + "known": [ + "vonc", + "bergi" + ], "cat": "coding", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Statuspage", @@ -5964,7 +7706,11 @@ "e_string": "updated_at", "m_string": "<html><body>You are being <a href=\"https://www.statuspage.io\">redirected</a>.</body></html>", "m_code": 302, - "known": ["8713981tpdlg", "gaming", "coinbase"], + "known": [ + "8713981tpdlg", + "gaming", + "coinbase" + ], "cat": "tech" }, { @@ -5974,7 +7720,9 @@ "e_string": "g_rgProfileData =", "m_string": "Steam Community :: Error", "m_code": 200, - "known": ["test"], + "known": [ + "test" + ], "cat": "gaming" }, { @@ -5984,7 +7732,10 @@ "e_string": "\"identifier\":", "m_string": "", "m_code": 301, - "known": ["AbsurdPoncho", "Wolod1402"], + "known": [ + "AbsurdPoncho", + "Wolod1402" + ], "cat": "gaming" }, { @@ -5996,7 +7747,10 @@ "e_string": "\"type\":\"error_api_username_used\"", "m_string": "\"success\":true", "m_code": 200, - "known": ["petlover", "zalat"], + "known": [ + "petlover", + "zalat" + ], "cat": "social", "headers": { "Content-Type": "application/json" @@ -6009,7 +7763,10 @@ "e_string": " on Steller", "m_string": "", "m_code": 404, - "known": ["jeannnn", "havwoods"], + "known": [ + "jeannnn", + "havwoods" + ], "cat": "shopping" }, { @@ -6019,7 +7776,10 @@ "e_string": "archive author", "m_string": "We're sorry, but the page", "m_code": 404, - "known": ["jthorstad", "paul-swider"], + "known": [ + "jthorstad", + "paul-swider" + ], "cat": "blog" }, { @@ -6030,7 +7790,10 @@ "e_string": "\"providerId\"", "m_string": "error", "m_code": 404, - "known": ["honey", "dude"], + "known": [ + "honey", + "dude" + ], "cat": "finance" }, { @@ -6041,7 +7804,10 @@ "e_string": "\"id\":", "m_string": "Unauthorized", "m_code": 401, - "known": ["veibae", "cutie_cori"], + "known": [ + "veibae", + "cutie_cori" + ], "cat": "finance" }, { @@ -6052,7 +7818,10 @@ "e_string": "\"error\":\"This username already exists\"", "m_string": "[]", "m_code": 200, - "known": ["DulcieRichard", "Katie-Mili"], + "known": [ + "DulcieRichard", + "Katie-Mili" + ], "cat": "xx NSFW xx" }, { @@ -6062,7 +7831,10 @@ "e_string": "CREATOR STATS", "m_string": "WE ARE SORRY, THE PAGE YOU REQUESTED CANNOT BE FOUND", "m_code": 404, - "known": ["missmoonified", "honey"], + "known": [ + "missmoonified", + "honey" + ], "cat": "xx NSFW xx" }, { @@ -6072,7 +7844,10 @@ "e_string": "| Substack", "m_string": "" on Substack", "m_code": 200, - "known": ["janellehardacre", "janeclairebradley"], + "known": [ + "janellehardacre", + "janeclairebradley" + ], "cat": "social" }, { @@ -6082,7 +7857,10 @@ "e_string": "'s torrents", "m_string": "404 Not Found", "m_code": 404, - "known": ["kouhy76", "Rektr0"], + "known": [ + "kouhy76", + "Rektr0" + ], "cat": "xx NSFW xx" }, { @@ -6092,7 +7870,10 @@ "e_string": "Items", "m_string": "Push Space-key", "m_code": 404, - "known": ["itochanxxx", "alex"], + "known": [ + "itochanxxx", + "alex" + ], "cat": "business" }, { @@ -6102,7 +7883,10 @@ "e_string": "Joined", "m_string": "Code: Couldn't find that username or email.", "m_code": 200, - "known": ["przeczzpreczem", "Xavier"], + "known": [ + "przeczzpreczem", + "Xavier" + ], "cat": "social" }, { @@ -6112,7 +7896,10 @@ "e_string": "- Player Profile | T³ - TableTop Tournaments", "m_string": "No player with the nickname", "m_code": 200, - "known": ["Lars01", "john"], + "known": [ + "Lars01", + "john" + ], "cat": "misc" }, { @@ -6122,7 +7909,10 @@ "e_string": "s Profile", "m_string": "Tagged - The social network for meeting new people", "m_code": 302, - "known": ["Samantha", "Robert"], + "known": [ + "Samantha", + "Robert" + ], "cat": "social" }, { @@ -6132,7 +7922,10 @@ "e_string": "deeplink=tamtam://chat/", "m_string": "ТамТам", "m_code": 302, - "known": ["blue", "John"], + "known": [ + "blue", + "John" + ], "cat": "social" }, { @@ -6142,7 +7935,10 @@ "e_string": "Dołączył", "m_string": "Nie ma takiego użytkownika", "m_code": 404, - "known": ["ania", "avellana"], + "known": [ + "ania", + "avellana" + ], "cat": "hobby" }, { @@ -6153,7 +7949,10 @@ "e_string": "User details are Showing", "m_string": "The rf number is not valid", "m_code": 200, - "known": ["JonathanWallace", "gearoidconsidine"], + "known": [ + "JonathanWallace", + "gearoidconsidine" + ], "cat": "business" }, { @@ -6164,7 +7963,10 @@ "e_string": "user_id", "m_string": "Profile of username Not Found", "m_code": 200, - "known": ["alexborrelli", "domocann"], + "known": [ + "alexborrelli", + "domocann" + ], "cat": "business" }, { @@ -6174,7 +7976,10 @@ "e_string": " en Taringa!", "m_string": "Colectiva en Taringa!", "m_code": 301, - "known": ["jocaxav", "engendrometal"], + "known": [ + "jocaxav", + "engendrometal" + ], "cat": "social" }, { @@ -6185,7 +7990,10 @@ "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, - "known": ["farantic", "elrubius"], + "known": [ + "farantic", + "elrubius" + ], "cat": "archived" }, { @@ -6195,7 +8003,10 @@ "e_string": "’s Profile", "m_string": "", "m_code": 302, - "known": ["john", "sam"], + "known": [ + "john", + "sam" + ], "cat": "business" }, { @@ -6205,7 +8016,9 @@ "e_string": "Member Since", "m_string": "Oops, Something went missing", "m_code": 404, - "known": ["john"], + "known": [ + "john" + ], "cat": "coding" }, { @@ -6215,7 +8028,10 @@ "e_string": ";s exclusive page to subscribe to her", "m_string": "The page you were looking for doesn't exist", "m_code": 404, - "known": ["jaycee-starr", "chubbychick94"], + "known": [ + "jaycee-starr", + "chubbychick94" + ], "cat": "xx NSFW xx" }, { @@ -6226,7 +8042,10 @@ "e_string": "sellerToken", "m_string": "{\"errors\":{\"store\":[\"not found\"]}}", "m_code": 404, - "known": ["missmoonified", "honey"], + "known": [ + "missmoonified", + "honey" + ], "cat": "business" }, { @@ -6236,7 +8055,10 @@ "e_string": "Public Key", "m_string": "The user does not exist", "m_code": 200, - "known": ["red", "bob"], + "known": [ + "red", + "bob" + ], "cat": "tech" }, { @@ -6246,7 +8068,10 @@ "e_string": "tgme_page_title", "m_string": "noindex, nofollow", "m_code": 200, - "known": ["alice", "giovanni"], + "known": [ + "alice", + "giovanni" + ], "cat": "social" }, { @@ -6256,7 +8081,10 @@ "e_string": "class=\"layout__content m_main blog\"", "m_string": "class=\"error\"", "m_code": 404, - "known": ["mart11", "anotherj"], + "known": [ + "mart11", + "anotherj" + ], "cat": "blog" }, { @@ -6266,7 +8094,10 @@ "e_string": "on Tellonym", "m_string": "- Honest & Anonymous Feedback", "m_code": 404, - "known": ["jane", "jimmy"], + "known": [ + "jane", + "jimmy" + ], "cat": "social" }, { @@ -6276,7 +8107,10 @@ "e_string": "
", "m_string": "We could not find the page you were looking for.", "m_code": 404, - "known": ["gnutv", "d33jay23"], + "known": [ + "gnutv", + "d33jay23" + ], "cat": "images" }, { @@ -6287,7 +8121,10 @@ "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 404, - "known": ["icly", "5han"], + "known": [ + "icly", + "5han" + ], "cat": "gaming" }, { @@ -6297,7 +8134,9 @@ "e_string": "TF2 Backpack -", "m_string": "", "m_code": 302, - "known": ["test"], + "known": [ + "test" + ], "cat": "gaming" }, { @@ -6307,7 +8146,10 @@ "e_string": "summary", "m_string": "Not found, error 404", "m_code": 404, - "known": ["patti", "joehoft"], + "known": [ + "patti", + "joehoft" + ], "cat": "political" }, { @@ -6317,7 +8159,10 @@ "e_string": "https://www.theguardian.com/profile/", "m_string": "Page not found | The Guardian", "m_code": 404, - "known": ["minna-salami", "johnnaughton"], + "known": [ + "minna-salami", + "johnnaughton" + ], "cat": "news" }, { @@ -6327,7 +8172,10 @@ "e_string": "s profile on ThemeForest", "m_string": "Page Not Found | ThemeForest", "m_code": 301, - "known": ["john", "bob"], + "known": [ + "john", + "bob" + ], "cat": "art" }, { @@ -6337,7 +8185,10 @@ "e_string": "Insert This Gallery", "m_string": "We’re sorry", "m_code": 500, - "known": ["mixdop", "modifyielts"], + "known": [ + "mixdop", + "modifyielts" + ], "cat": "art" }, { @@ -6347,7 +8198,10 @@ "e_string": "<span class=\"activity", "m_string": "<title>Page not found", "m_code": 404, - "known": ["myownpersonalthoughts", "danwions"], + "known": [ + "myownpersonalthoughts", + "danwions" + ], "cat": "hobby" }, { @@ -6357,7 +8211,10 @@ "e_string": ") on Threads", "m_string": "Threads", "m_code": 200, - "known": ["s_novoselov", "oliveralexanderdk"], + "known": [ + "s_novoselov", + "oliveralexanderdk" + ], "cat": "social" }, { @@ -6368,7 +8225,10 @@ "e_string": "author_url", "m_string": "Something went wrong", "m_code": 400, - "known": ["gordonramsayofficial", "pookiebear73"], + "known": [ + "gordonramsayofficial", + "pookiebear73" + ], "cat": "social" }, { @@ -6379,7 +8239,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["ben", "lunatic"], + "known": [ + "ben", + "lunatic" + ], "cat": "social" }, { @@ -6389,7 +8252,11 @@ "e_string": ") | Tinder", "m_string": "Tinder | Dating, Make Friends & Meet New People", "m_code": 200, - "known": ["Alexey", "peter", "john"], + "known": [ + "Alexey", + "peter", + "john" + ], "cat": "dating" }, { @@ -6401,7 +8268,10 @@ "e_string": "\"errors\": [\"Username taken!\"]", "m_string": "\"valid\": true", "m_code": 200, - "known": ["tehrabbitt", "dekunukem"], + "known": [ + "tehrabbitt", + "dekunukem" + ], "cat": "shopping", "headers": { "Content-Type": "application/x-www-form-urlencoded" @@ -6415,7 +8285,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["mikebeganyi", "Zugi"], + "known": [ + "mikebeganyi", + "Zugi" + ], "cat": "social" }, { @@ -6426,7 +8299,10 @@ "e_string": "\"userId\":", "m_string": "\"message\":\"Member with handle:", "m_code": 404, - "known": ["chinvib66", "mwakanosya"], + "known": [ + "chinvib66", + "mwakanosya" + ], "cat": "coding" }, { @@ -6436,7 +8312,10 @@ "e_string": "display-user", "m_string": "We can't find that page!", "m_code": 404, - "known": ["22RII", "honey"], + "known": [ + "22RII", + "honey" + ], "cat": "hobby" }, { @@ -6446,7 +8325,10 @@ "e_string": "— Trading Ideas &", "m_string": "Page not found — TradingView", "m_code": 404, - "known": ["liam", "john"], + "known": [ + "liam", + "john" + ], "cat": "finance" }, { @@ -6456,7 +8338,10 @@ "e_string": "s profile - Trakt", "m_string": "The page you were looking for doesn't exist (404) - Trakt.tv", "m_code": 404, - "known": ["john", "anne"], + "known": [ + "john", + "anne" + ], "cat": "video" }, { @@ -6467,9 +8352,14 @@ "e_string": "\"id\":", "m_string": "

Oh no! 404!

", "m_code": 404, - "known": ["naranjasan", "jane"], + "known": [ + "naranjasan", + "jane" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "tripadvisor", @@ -6478,7 +8368,10 @@ "e_string": "Contributions", "m_string": "This page is on vacation", "m_code": 404, - "known": ["john", "peter"], + "known": [ + "john", + "peter" + ], "cat": "social" }, { @@ -6488,7 +8381,10 @@ "e_string": "class=\"team-v2\"", "m_string": "

Could not find any member using these credentials

", "m_code": 200, - "known": ["JohnnySOBA", "Vasya_Run"], + "known": [ + "JohnnySOBA", + "Vasya_Run" + ], "cat": "gaming" }, { @@ -6498,7 +8394,10 @@ "e_string": "class=\"b-user-page\"", "m_string": "class=\"b-handler-error-404\"", "m_code": 404, - "known": ["ramanbardashevich", "Sanya193Rus"], + "known": [ + "ramanbardashevich", + "Sanya193Rus" + ], "cat": "gaming" }, { @@ -6508,7 +8407,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["realdonaldtrump", "ScottAdamsTruth"], + "known": [ + "realdonaldtrump", + "ScottAdamsTruth" + ], "cat": "social" }, { @@ -6519,7 +8421,10 @@ "e_string": "\"success\":true", "m_string": "\"success\":false", "m_code": 200, - "known": ["user", "goyalyuval15"], + "known": [ + "user", + "goyalyuval15" + ], "cat": "tech" }, { @@ -6529,7 +8434,10 @@ "e_string": "Caters to
", "m_string": "Page not found", "m_code": 404, - "known": ["lpatterson32", "kansasgirl69"], + "known": [ + "lpatterson32", + "kansasgirl69" + ], "cat": "xx NSFW xx" }, { @@ -6540,7 +8448,10 @@ "e_string": "avatar", "m_string": "There's nothing here", "m_code": 404, - "known": ["test", "test1"], + "known": [ + "test", + "test1" + ], "cat": "images" }, { @@ -6551,7 +8462,10 @@ "e_string": "user-stats-engagement", "m_string": "User not found:", "m_code": 404, - "known": ["baywolfmusic", "mrcerny18"], + "known": [ + "baywolfmusic", + "mrcerny18" + ], "cat": "music" }, { @@ -6561,7 +8475,10 @@ "e_string": "Live History", "m_string": "Not Found", "m_code": 302, - "known": ["yuno___nico", "2_t0_"], + "known": [ + "yuno___nico", + "2_t0_" + ], "cat": "social" }, { @@ -6572,7 +8489,10 @@ "e_string": "Overview</a>", "m_string": "<title>404 Page Not Found", "m_code": 404, - "known": ["summit1g", "cohhcarnage"], + "known": [ + "summit1g", + "cohhcarnage" + ], "cat": "gaming" }, { @@ -6583,7 +8503,10 @@ "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, - "known": ["jack", "dineshdsouza"], + "known": [ + "jack", + "dineshdsouza" + ], "cat": "archived" }, { @@ -6594,7 +8517,10 @@ "e_string": "\"archived_snapshots\": {\"closest\"", "m_string": "\"archived_snapshots\": {}", "m_code": 200, - "known": ["jack", "dineshdsouza"], + "known": [ + "jack", + "dineshdsouza" + ], "cat": "archived" }, { @@ -6606,7 +8532,10 @@ "e_string": "userid=", "m_string": "", "m_code": 404, - "known": ["redsox", "adam"], + "known": [ + "redsox", + "adam" + ], "cat": "hobby" }, { @@ -6616,7 +8545,10 @@ "e_string": "おとなりさん", "m_string": "をご確認ください。", "m_code": 404, - "known": ["wsise47", "tsukiusa630"], + "known": [ + "wsise47", + "tsukiusa630" + ], "cat": "social" }, { @@ -6626,7 +8558,10 @@ "e_string": "| Ubisoft Discussion Forums", "m_string": "You seem to have stumbled upon a page that does not exist.", "m_code": 404, - "known": ["fizzle_fuze", "th05324"], + "known": [ + "fizzle_fuze", + "th05324" + ], "cat": "gaming" }, { @@ -6636,7 +8571,10 @@ "e_string": "| Udemy", "m_string": "Online Courses - Learn Anything, On Your Schedule | Udemy", "m_code": 301, - "known": ["stephane-maarek", "lizbrown3"], + "known": [ + "stephane-maarek", + "lizbrown3" + ], "cat": "tech" }, { @@ -6646,7 +8584,10 @@ "e_string": "profile-page-header__info", "m_string": "Page not found - UEFConnect", "m_code": 404, - "known": ["heli.mutanen", "mette.heiskanen"], + "known": [ + "heli.mutanen", + "mette.heiskanen" + ], "cat": "business" }, { @@ -6656,7 +8597,10 @@ "e_string": "- uID.me", "m_string": "Page not found", "m_code": 404, - "known": ["john", "peter"], + "known": [ + "john", + "peter" + ], "cat": "social" }, { @@ -6666,7 +8610,11 @@ "e_string": " | Ultimate-Guitar.Com", "m_string": "Oops! We couldn't find that page.", "m_code": 410, - "known": ["LYNX-Music", "Mikhailo", "MeGaDeth2314"], + "known": [ + "LYNX-Music", + "Mikhailo", + "MeGaDeth2314" + ], "cat": "hobby" }, { @@ -6676,7 +8624,10 @@ "e_string": "Mecze wyjazdowe:", "m_string": "Ile masz wyjazdów?", "m_code": 404, - "known": ["janek", "kowal"], + "known": [ + "janek", + "kowal" + ], "cat": "hobby" }, { @@ -6686,7 +8637,10 @@ "e_string": "Date submitted", "m_string": "content=\"\"/>", "m_code": 200, - "known": ["emudshit", "hirumaredx"], + "known": [ + "emudshit", + "hirumaredx" + ], "cat": "archived" }, { @@ -6696,7 +8650,10 @@ "e_string": "| Unsplash Photo Community", "m_string": "Hm, the page you were looking for doesn't seem to exist anymore.", "m_code": 404, - "known": ["john", "alex"], + "known": [ + "john", + "alex" + ], "cat": "images" }, { @@ -6706,7 +8663,10 @@ "e_string": "on Untappd", "m_string": "Untappd | 404", "m_code": 404, - "known": ["test", "phil"], + "known": [ + "test", + "phil" + ], "cat": "social" }, { @@ -6716,7 +8676,10 @@ "e_string": "Please log in to like, share and comment", "m_string": "Sorry, page not found", "m_code": 302, - "known": ["abaynes79", "not1face"], + "known": [ + "abaynes79", + "not1face" + ], "cat": "social" }, { @@ -6727,7 +8690,10 @@ "e_string": "\"userName\"", "m_string": "Not a valid web service key", "m_code": 404, - "known": ["honey", "chloe"], + "known": [ + "honey", + "chloe" + ], "cat": "finance" }, { @@ -6738,7 +8704,10 @@ "e_string": "property=\"twitter:card\"", "m_string": "Sorry, the requested page could not be found.", "m_code": 404, - "known": ["elite", "citruciel"], + "known": [ + "elite", + "citruciel" + ], "cat": "social" }, { @@ -6748,7 +8717,10 @@ "e_string": "collection-hero__text-wrapper", "m_string": "Page not found", "m_code": 404, - "known": ["saki", "aicandii"], + "known": [ + "saki", + "aicandii" + ], "cat": "business" }, { @@ -6758,7 +8730,10 @@ "e_string": "Профиль", "m_string": "404", "m_code": 404, - "known": ["igor", "vladimir"], + "known": [ + "igor", + "vladimir" + ], "cat": "hobby" }, { @@ -6768,7 +8743,10 @@ "e_string": "profileInfo_username__", "m_string": "Sorry, the page you requested does not exist!", "m_code": 404, - "known": ["John-Goolsby-8", "kate-mura"], + "known": [ + "John-Goolsby-8", + "kate-mura" + ], "cat": "finance" }, { @@ -6778,7 +8756,10 @@ "e_string": "name=\"username", "m_string": "

Not Found

", "m_code": 200, - "known": ["alex", "johnny"], + "known": [ + "alex", + "johnny" + ], "cat": "art" }, { @@ -6788,7 +8769,10 @@ "e_string": "Profil på vibilagare.se", "m_string": "Sidan hittades inte |", "m_code": 404, - "known": ["lars01", "sven"], + "known": [ + "lars01", + "sven" + ], "cat": "misc" }, { @@ -6798,7 +8782,10 @@ "e_string": "profile-details", "m_string": "User not found", "m_code": 404, - "known": ["GamingParodies", "planphilly"], + "known": [ + "GamingParodies", + "planphilly" + ], "cat": "video" }, { @@ -6808,7 +8795,10 @@ "e_string": "class=\"top-profile-since\"", "m_string": "id=\"missing-this\"", "m_code": 404, - "known": ["soulcraft", "aychmb"], + "known": [ + "soulcraft", + "aychmb" + ], "cat": "hobby" }, { @@ -6818,7 +8808,10 @@ "e_string": "og:type", "m_string": "VimeUhOh", "m_code": 404, - "known": ["john", "alice"], + "known": [ + "john", + "alice" + ], "cat": "video" }, { @@ -6829,7 +8822,10 @@ "e_string": "userId", "m_string": "That record does not exist", "m_code": 404, - "known": ["TomHarlock", "Seks"], + "known": [ + "TomHarlock", + "Seks" + ], "cat": "video" }, { @@ -6840,7 +8836,10 @@ "e_string": "blog : ", "m_string": "Blog inexistant", "m_code": 200, - "known": ["sarah", "brahim01"], + "known": [ + "sarah", + "brahim01" + ], "cat": "blog" }, { @@ -6851,12 +8850,15 @@ "e_string": "\"data\"", "m_string": "\"code\": \"NotFoundError\"", "m_code": 404, - "known": ["cyber", "cybersecstu"], + "known": [ + "cyber", + "cybersecstu" + ], "cat": "misc", "headers": { + "Accept-Ianguage": "en-US", "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", "X-Tool": "vt-ui-main", - "Accept-Ianguage": "en-US", "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" } }, @@ -6868,7 +8870,10 @@ "e_string": "end_point", "m_string": "card_id\": 0", "m_code": 200, - "known": ["Lisa-Gordon", "Bill-Schaeffer"], + "known": [ + "Lisa-Gordon", + "Bill-Schaeffer" + ], "cat": "business" }, { @@ -6878,7 +8883,10 @@ "e_string": "", "m_string": "Page not found", "m_code": 404, - "known": ["test", "admin"], + "known": [ + "test", + "admin" + ], "cat": "video" }, { @@ -6888,7 +8896,10 @@ "e_string": "content=\"profile\"", "m_string": "404 Not Found", "m_code": 404, - "known": ["ches_ches", "mike.kidlazy"], + "known": [ + "ches_ches", + "mike.kidlazy" + ], "cat": "social", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:125.0) Gecko/20100101 Firefox/125.0" @@ -6902,7 +8913,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["king", "aniver"], + "known": [ + "king", + "aniver" + ], "cat": "social" }, { @@ -6913,7 +8927,10 @@ "e_string": "display_name", "m_string": "Record not found", "m_code": 404, - "known": ["vmstan", "honestdave"], + "known": [ + "vmstan", + "honestdave" + ], "cat": "social" }, { @@ -6924,7 +8941,10 @@ "e_string": "user_id", "m_string": "[]", "m_code": 200, - "known": ["dottovuu", "maheshsaha1992"], + "known": [ + "dottovuu", + "maheshsaha1992" + ], "cat": "hobby" }, { @@ -6934,7 +8954,10 @@ "e_string": "Last Online

", "m_string": "Try going back to the previous page or see below for more options", "m_code": 301, - "known": ["briankirchoff", "bryankopta"], + "known": [ + "briankirchoff", + "bryankopta" + ], "cat": "business" }, { @@ -6944,7 +8967,10 @@ "e_string": "permaSubdomain", "m_string": "\"error\":\"site_not_found\"}", "m_code": 404, - "known": ["sam", "becca"], + "known": [ + "sam", + "becca" + ], "cat": "social", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" @@ -6957,7 +8983,10 @@ "e_string": "\"userId\":", "m_string": "\"message\":\"Profile does not exists or not visible\"", "m_code": 404, - "known": ["test", "admin"], + "known": [ + "test", + "admin" + ], "cat": "tech" }, { @@ -6967,7 +8996,10 @@ "e_string": ") - WakaTime", "m_string": "404: Not Found", "m_code": 404, - "known": ["jake", "alimirzayev"], + "known": [ + "jake", + "alimirzayev" + ], "cat": "coding" }, { @@ -6977,7 +9009,10 @@ "e_string": "<div id='profile_photo", "m_string": "<h2>Page Not Found", "m_code": 404, - "known": ["alfrevid", "thepro"], + "known": [ + "alfrevid", + "thepro" + ], "cat": "gaming" }, { @@ -6987,7 +9022,10 @@ "e_string": "Last Activity:", "m_string": "Oops | Warrior Forum -", "m_code": 400, - "known": ["alex", "discrat"], + "known": [ + "alex", + "discrat" + ], "cat": "hobby" }, { @@ -6998,7 +9036,10 @@ "e_string": "displayName", "m_string": "notExists", "m_code": 400, - "known": ["medroxy", "nodjev"], + "known": [ + "medroxy", + "nodjev" + ], "cat": "xx NSFW xx" }, { @@ -7008,7 +9049,10 @@ "e_string": "SEND ME A TIP", "m_string": "", "m_code": 302, - "known": ["jennifer-ann", "shay-loveless"], + "known": [ + "jennifer-ann", + "shay-loveless" + ], "cat": "xx NSFW xx" }, { @@ -7019,9 +9063,14 @@ "e_string": "\"username\":", "m_string": "\"error_code\":", "m_code": 400, - "known": ["newadult", "Test123"], + "known": [ + "newadult", + "Test123" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "waytohey", @@ -7030,7 +9079,10 @@ "e_string": "Send message</span>", "m_string": "Unfortunately, this page doesn't exist.", "m_code": 404, - "known": ["igor", "anna"], + "known": [ + "igor", + "anna" + ], "cat": "social" }, { @@ -7040,7 +9092,10 @@ "e_string": "profile — Weasyl", "m_string": "This user doesn't seem to be in our database.", "m_code": 404, - "known": ["weasyl", "test"], + "known": [ + "weasyl", + "test" + ], "cat": "images" }, { @@ -7050,7 +9105,10 @@ "e_string": "\"user\":", "m_string": "\"page\":\"/404\"", "m_code": 404, - "known": ["kevin", "WebArtyom"], + "known": [ + "kevin", + "WebArtyom" + ], "cat": "social", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" @@ -7064,7 +9122,10 @@ "e_string": "
", "m_string": "404 - Page Not Found", "m_code": 404, - "known": ["dave", "john"], + "known": [ + "dave", + "john" + ], "cat": "misc" }, { @@ -7074,7 +9135,10 @@ "e_string": "Following</span>", "m_string": "Sorry, page not found!", "m_code": 302, - "known": ["mmish2", "Lisa_M_S"], + "known": [ + "mmish2", + "Lisa_M_S" + ], "cat": "political" }, { @@ -7084,7 +9148,10 @@ "e_string": " on We Heart It", "m_string": " (404)", "m_code": 404, - "known": ["alice", "bob"], + "known": [ + "alice", + "bob" + ], "cat": "social" }, { @@ -7094,7 +9161,10 @@ "e_string": "
", "m_string": "Oops!", "m_code": 200, - "known": ["chentingni", "fbb0916"], + "known": [ + "chentingni", + "fbb0916" + ], "cat": "social" }, { @@ -7105,7 +9175,10 @@ "e_string": "workspaceName", "m_string": "", "m_code": 307, - "known": ["mark", "joe"], + "known": [ + "mark", + "joe" + ], "cat": "misc" }, { @@ -7115,7 +9188,10 @@ "e_string": "

", "m_string": "
User does not exist.
", "m_code": 200, - "known": ["jack", "allen"], + "known": [ + "jack", + "allen" + ], "cat": "social" }, { @@ -7126,7 +9202,10 @@ "e_string": "\"ok\":false", "m_string": "\"ok\":true", "m_code": 200, - "known": ["bubnilka", "Teresa"], + "known": [ + "bubnilka", + "Teresa" + ], "cat": "social" }, { @@ -7137,7 +9216,10 @@ "e_string": "{\"id\":", "m_string": ":[]}}", "m_code": 200, - "known": ["sector051", "webbreacher"], + "known": [ + "sector051", + "webbreacher" + ], "cat": "news" }, { @@ -7147,7 +9229,11 @@ "e_string": "is on WIMKIN", "m_string": " The page you are looking for cannot be found.", "m_code": 404, - "known": ["alex", "smith", "boomer"], + "known": [ + "alex", + "smith", + "boomer" + ], "cat": "political" }, { @@ -7157,9 +9243,15 @@ "e_string": "Chat With", "m_string": "People - Wireclub", "m_code": 301, - "known": ["deae", "cheerfulsarcasm", "braydenskiresort"], + "known": [ + "deae", + "cheerfulsarcasm", + "braydenskiresort" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "Wishlistr", @@ -7169,7 +9261,10 @@ "e_string": "+:var res = \"", "m_string": "+:var res = parseInt(0);", "m_code": 200, - "known": ["bodymodgrrrl", "kethistle"], + "known": [ + "bodymodgrrrl", + "kethistle" + ], "cat": "shopping" }, { @@ -7179,7 +9274,10 @@ "e_string": "Welcome,", "m_string": "Wordnik: Page Not Found", "m_code": 404, - "known": ["elle", "john"], + "known": [ + "elle", + "john" + ], "cat": "gaming" }, { @@ -7189,7 +9287,9 @@ "e_string": "user-member-since", "m_string": "", "m_code": 404, - "known": ["test"], + "known": [ + "test" + ], "cat": "blog" }, { @@ -7199,7 +9299,9 @@ "e_string": "s Profile | WordPress.org", "m_string": "User not found", "m_code": 404, - "known": ["test"], + "known": [ + "test" + ], "cat": "blog" }, { @@ -7209,7 +9311,10 @@ "e_string": " Profile - Wowhead", "m_string": "Error - Wowhead", "m_code": 404, - "known": ["Ashelia", "Zizarz"], + "known": [ + "Ashelia", + "Zizarz" + ], "cat": "gaming" }, { @@ -7219,7 +9324,10 @@ "e_string": "Profil:", "m_string": "Wystąpił błąd 404.", "m_code": 404, - "known": ["test", "test2"], + "known": [ + "test", + "test2" + ], "cat": "social" }, { @@ -7230,7 +9338,10 @@ "e_string": "\"reason\":\"taken\"", "m_string": "\"reason\":\"available\"", "m_code": 200, - "known": ["WebBreacher", "OSINT_Tactical"], + "known": [ + "WebBreacher", + "OSINT_Tactical" + ], "cat": "social" }, { @@ -7240,7 +9351,10 @@ "e_string": "authorBlock-avatar", "m_string": "Страница не найдена", "m_code": 404, - "known": ["tr3harder", "stariy"], + "known": [ + "tr3harder", + "stariy" + ], "cat": "tech" }, { @@ -7251,7 +9365,9 @@ "e_string": "s Xanga Site | Just", "m_string": "", "m_code": 302, - "known": ["john"], + "known": [ + "john" + ], "cat": "blog" }, { @@ -7261,7 +9377,10 @@ "e_string": "Games Played", "m_string": "Gamertag doesn't exist", "m_code": 404, - "known": ["Spiken8", "john"], + "known": [ + "Spiken8", + "john" + ], "cat": "gaming" }, { @@ -7271,7 +9390,10 @@ "e_string": "s profile | xHamster", "m_string": "User not found", "m_code": 404, - "known": ["john", "tonystark85"], + "known": [ + "john", + "tonystark85" + ], "cat": "xx NSFW xx" }, { @@ -7281,7 +9403,10 @@ "e_string": "", "m_string": "Bad request", "m_code": 400, - "known": ["john", "mumrra"], + "known": [ + "john", + "mumrra" + ], "cat": "xx NSFW xx" }, { @@ -7301,7 +9429,10 @@ "e_string": "Total video views", "m_string": "THIS PROFILE DOESN'T EXIST", "m_code": 404, - "known": ["vvalencourt3", "tiffany-tyler"], + "known": [ + "vvalencourt3", + "tiffany-tyler" + ], "cat": "xx NSFW xx" }, { @@ -7311,7 +9442,11 @@ "e_string": "page - XVIDEOS.COM", "m_string": "THIS PROFILE DOESN'T EXIST", "m_code": 404, - "known": ["nympho-nailer", "dpadicto", "bkg"], + "known": [ + "nympho-nailer", + "dpadicto", + "bkg" + ], "cat": "xx NSFW xx" }, { @@ -7321,7 +9456,9 @@ "e_string": "出品者", "m_string": "Yahoo! JAPAN IDが無効です。", "m_code": 500, - "known": ["fltr14502003"], + "known": [ + "fltr14502003" + ], "cat": "shopping" }, { @@ -7331,7 +9468,10 @@ "e_string": "for_profile", "m_string": "Not Found (#404)", "m_code": 404, - "known": ["roman", "semion"], + "known": [ + "roman", + "semion" + ], "cat": "hobby" }, { @@ -7341,7 +9481,10 @@ "e_string": "profile-description", "m_string": "<title>nodata", "m_code": 302, - "known": ["monya14555d", "LordMohy"], + "known": [ + "monya14555d", + "LordMohy" + ], "cat": "dating" }, { @@ -7352,7 +9495,10 @@ "e_string": "\"username\":", "m_string": "\"code\":404", "m_code": 404, - "known": ["xel", "rabhi"], + "known": [ + "xel", + "rabhi" + ], "cat": "tech" }, { @@ -7363,9 +9509,14 @@ "e_string": "\"userId\":", "m_string": "\"errorMsg\":\"No users found\"", "m_code": 200, - "known": ["lydia_tan33", "RavJagz"], + "known": [ + "lydia_tan33", + "RavJagz" + ], "cat": "social", - "protection": ["other"] + "protection": [ + "other" + ] }, { "name": "youpic", @@ -7374,7 +9525,10 @@ "e_string": "<meta name=\"og:title\"", "m_string": "<title>YouPic — Not Found", "m_code": 404, - "known": ["photodude", "mike"], + "known": [ + "photodude", + "mike" + ], "cat": "hobby" }, { @@ -7384,7 +9538,10 @@ "e_string": "joinedDateText", "m_string": "404 Not Found", "m_code": 404, - "known": ["OvylarockTHR", "OSINTDojo"], + "known": [ + "OvylarockTHR", + "OSINTDojo" + ], "cat": "video" }, { @@ -7394,7 +9551,10 @@ "e_string": "joinedDateText", "m_string": "<title>404 Not Found", "m_code": 404, - "known": ["MicahHoffman", "theosintcuriousproject"], + "known": [ + "MicahHoffman", + "theosintcuriousproject" + ], "cat": "video" }, { @@ -7404,7 +9564,10 @@ "e_string": "canonicalBaseUrl", "m_string": "<title>404 Not Found", "m_code": 404, - "known": ["tactical-systems", "CybersecurityMeg"], + "known": [ + "tactical-systems", + "CybersecurityMeg" + ], "cat": "video" }, { @@ -7414,7 +9577,10 @@ "e_string": "INFO", "m_string": "", "m_code": 301, - "known": ["69uzytkownik69", "Soif"], + "known": [ + "69uzytkownik69", + "Soif" + ], "cat": "xx NSFW xx", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" @@ -7427,7 +9593,10 @@ "e_string": "
", "m_string": "
404
", "m_code": 404, - "known": ["john", "blue"], + "known": [ + "john", + "blue" + ], "cat": "coding" }, { @@ -7438,7 +9607,10 @@ "e_string": "zepetoId\":", "m_string": "errorCode\":", "m_code": 200, - "known": ["joe", "james"], + "known": [ + "joe", + "james" + ], "cat": "social" }, { @@ -7449,7 +9621,10 @@ "e_string": "\"is_start\": true", "m_string": "\"name\": \"NotFoundException\"", "m_code": 404, - "known": ["lushnis", "kan-shu-jiao-hua-shai-tai-yang"], + "known": [ + "lushnis", + "kan-shu-jiao-hua-shai-tai-yang" + ], "cat": "social" }, { @@ -7459,7 +9634,10 @@ "e_string": "- Real Estate Agent", "m_string": "", "m_code": 302, - "known": ["JOHN-L-SULLIVAN", "Maggie-Alegria"], + "known": [ + "JOHN-L-SULLIVAN", + "Maggie-Alegria" + ], "cat": "shopping" }, { @@ -7469,7 +9647,10 @@ "e_string": "Statystyki", "m_string": "Error 404 - zMarsa.com<", "m_code": 404, - "known": ["janek", "test"], + "known": [ + "janek", + "test" + ], "cat": "xx NSFW xx" }, { @@ -7479,9 +9660,14 @@ "e_string": "\"isAvailable\":false", "m_string": "\"isAvailable\":true", "m_code": 200, - "known": ["ila817674", "abduabubakir42"], + "known": [ + "ila817674", + "abduabubakir42" + ], "cat": "misc", - "protection": ["cloudflare"] + "protection": [ + "cloudflare" + ] }, { "name": "Zomato", @@ -7490,7 +9676,10 @@ "e_string": "Activity</h4>", "m_string": "This is a 404 page and we think it's fairly clear", "m_code": 404, - "known": ["john", "jess"], + "known": [ + "john", + "jess" + ], "cat": "social", "headers": { "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" @@ -7503,8 +9692,11 @@ "e_string": "", "m_string": "<title>خطای ۴۰۴ - صفحه یافت نشد", "m_code": 404, - "known": ["rezaghezi", "hosssssein"], + "known": [ + "rezaghezi", + "hosssssein" + ], "cat": "tech" } ] -} +} \ No newline at end of file From 34094f777e560ab51e8872644c5fa34a739d729d Mon Sep 17 00:00:00 2001 From: 3xp0rt <61662492+3xp0rt@users.noreply.github.com> Date: Fri, 6 Jun 2025 11:15:08 +0300 Subject: [PATCH 17/18] Change headers order --- wmn-data-schema.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/wmn-data-schema.json b/wmn-data-schema.json index 6585985..5a12c85 100644 --- a/wmn-data-schema.json +++ b/wmn-data-schema.json @@ -119,6 +119,24 @@ ], "pattern": "^.*$" }, + "headers": { + "$id": "#root/sites/items/headers", + "title": "Headers", + "type": "object", + "default": [], + "items": { + "$id": "#root/sites/items/headers/items", + "title": "Items", + "type": "string", + "default": "", + "examples": [ + { + "accept": "text/html" + } + ], + "pattern": "^.*$" + } + }, "strip_bad_char": { "$id": "#root/sites/items/strip_bad_char", "title": "Strip_bad_char", @@ -220,24 +238,6 @@ ], "pattern": "^.*$" } - }, - "headers": { - "$id": "#root/sites/items/headers", - "title": "Headers", - "type": "object", - "default": [], - "items": { - "$id": "#root/sites/items/headers/items", - "title": "Items", - "type": "string", - "default": "", - "examples": [ - { - "accept": "text/html" - } - ], - "pattern": "^.*$" - } } } } From 5ad6826c3f1b697e51f41dd7a6fd99f2a0b4b847 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 6 Jun 2025 08:15:24 +0000 Subject: [PATCH 18/18] chore: auto-sort and format JSON files --- wmn-data.json | 240 +++++++++++++++++++++++++------------------------- 1 file changed, 120 insertions(+), 120 deletions(-) diff --git a/wmn-data.json b/wmn-data.json index 06b5a09..eda7ac3 100644 --- a/wmn-data.json +++ b/wmn-data.json @@ -352,6 +352,10 @@ "uri_check": "https://graphql.anilist.co", "uri_pretty": "https://anilist.co/user/{account}", "post_body": "{\"query\":\"query{User(name:\\\"{account}\\\"){id name}}\"}", + "headers": { + "accept": "application/json", + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"id\":", "m_string": "Not Found", @@ -360,17 +364,16 @@ "test", "johndoe" ], - "cat": "social", - "headers": { - "accept": "application/json", - "Content-Type": "application/json" - } + "cat": "social" }, { "name": "Anime-Planet", "uri_check": "https://www.anime-planet.com/api/validation/username", "uri_pretty": "https://www.anime-planet.com/users/{account}", "post_body": "{\"username\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 400, "e_string": "\"msg\":\"Username is unavailable\"", "m_string": "\"status\":\"ok\"", @@ -382,10 +385,7 @@ "cat": "social", "protection": [ "cloudflare" - ], - "headers": { - "Content-Type": "application/json" - } + ] }, { "name": "anonup", @@ -418,6 +418,13 @@ "name": "Apex Legends", "uri_check": "https://api.tracker.gg/api/v2/apex/standard/profile/origin/{account}", "uri_pretty": "https://apex.tracker.gg/apex/profile/origin/{account}/overview", + "headers": { + "Accept-Language": "en-US,en;q=0.5", + "Origin": "https://apex.tracker.gg", + "Referer": "https://apex.tracker.gg/", + "TE": "trailers", + "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" + }, "e_code": 200, "e_string": "platformInfo", "m_string": "CollectorResultStatus::NotFound", @@ -426,14 +433,7 @@ "tttcheekyttt", "RollsRoyce_Dawn" ], - "cat": "gaming", - "headers": { - "Accept-Language": "en-US,en;q=0.5", - "Origin": "https://apex.tracker.gg", - "Referer": "https://apex.tracker.gg/", - "TE": "trailers", - "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" - } + "cat": "gaming" }, { "name": "Appian", @@ -609,6 +609,12 @@ { "name": "Avid Community", "uri_check": "https://community.avid.com/members/{account}/default.aspx", + "headers": { + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8", + "Cache-Control": "no-cache", + "Host": "community.avid.com", + "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" + }, "e_code": 200, "e_string": "My Activity", "m_string": "The user you requested cannot be found.", @@ -617,13 +623,7 @@ "Thayne", "Admin" ], - "cat": "music", - "headers": { - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/png,image/svg+xml,*/*;q=0.8", - "Cache-Control": "no-cache", - "Host": "community.avid.com", - "User-Agent": "Mozilla/5.0 (Mozilla/5.0 (X11; Linux i686; rv:128.0) Gecko/20100101 Firefox/128.0" - } + "cat": "music" }, { "name": "babepedia", @@ -860,6 +860,9 @@ "uri_check": "https://api.bitchute.com/api/beta/channel", "uri_pretty": "https://www.bitchute.com/channel/{account}/", "post_body": "{\"channel_id\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"channel_id\":", "m_string": "\"errors\":", @@ -869,10 +872,7 @@ "americafloats", "daindor" ], - "cat": "political", - "headers": { - "Content-Type": "application/json" - } + "cat": "political" }, { "name": "Blogger", @@ -1091,6 +1091,9 @@ "uri_check": "https://app.buymeacoffee.com/api/v1/check_availability", "uri_pretty": "https://buymeacoffee.com/{account}", "post_body": "{\"project_slug\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"available\":false", "m_string": "\"available\":true", @@ -1102,10 +1105,7 @@ "cat": "finance", "protection": [ "cloudflare" - ], - "headers": { - "Content-Type": "application/json" - } + ] }, { "name": "BuzzFeed", @@ -1602,6 +1602,9 @@ { "name": "Coub", "uri_check": "https://coub.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" + }, "e_code": 200, "e_string": "- Channel on Coub", "m_string": "Sorry, that page doesn't exist.", @@ -1610,10 +1613,7 @@ "dmitry.kozhevnikov", "idesignking" ], - "cat": "misc", - "headers": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" - } + "cat": "misc" }, { "name": "cowboys4angels", @@ -1979,6 +1979,9 @@ "name": "Discord Users", "uri_check": "https://discord.com/api/v9/unique-username/username-attempt-unauthed", "post_body": "{\"username\": \"{account}\"}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"taken\":true", "m_string": "\"taken\":false", @@ -1987,10 +1990,7 @@ "test", "web" ], - "cat": "social", - "headers": { - "Content-Type": "application/json" - } + "cat": "social" }, { "name": "Discourse", @@ -2270,6 +2270,9 @@ "uri_check": "https://be.electrobel.org/register.ajax", "uri_pretty": "https://be.electrobel.org/{account}", "post_body": "action=checkUsername&username={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded" + }, "e_code": 200, "e_string": "\"html\":\"Username existsPlease choose another\"", "m_string": "\"html\":\"Name is available\"", @@ -2278,10 +2281,7 @@ "wixel", "Gloomer" ], - "cat": "social", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - } + "cat": "social" }, { "name": "Engadget", @@ -3145,6 +3145,9 @@ "name": "GitHub", "uri_check": "https://api.github.com/users/{account}", "uri_pretty": "https://github.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" + }, "e_code": 200, "e_string": "\"id\":", "m_string": "\"status\": \"404\"", @@ -3153,15 +3156,15 @@ "test", "WebBreacher" ], - "cat": "coding", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" - } + "cat": "coding" }, { "name": "GitHub Gists", "uri_check": "https://api.github.com/users/{account}/gists", "uri_pretty": "https://gits.github.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" + }, "e_code": 200, "e_string": "\"id\":", "m_string": "\"status\": \"404\"", @@ -3170,10 +3173,7 @@ "teymurgahramanov", "WebBreacher" ], - "cat": "coding", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0" - } + "cat": "coding" }, { "name": "GitLab", @@ -3588,6 +3588,9 @@ "uri_check": "https://hackerone.com/graphql", "uri_pretty": "https://hackerone.com/{account}", "post_body": "{\"query\":\"query($url: URI!) {\\n resource(url: $url) {\\n ... on User { username }\\n }\\n }\",\"variables\":{\"url\":\"{account}\"}}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"username\":", "m_string": "\"type\":\"NOT_FOUND\"", @@ -3596,10 +3599,7 @@ "born2hack", "godiego" ], - "cat": "tech", - "headers": { - "Content-Type": "application/json" - } + "cat": "tech" }, { "name": "HackerRank", @@ -3623,6 +3623,10 @@ "uri_check": "https://hackrocks.com/api/users/profile", "uri_pretty": "https://hackrocks.com/id/{account}", "post_body": "{\"username\":\"{account}\"}", + "headers": { + "Accept": "application/json, text/plain, */*", + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"username\":", "m_string": "\"error_data\":\"USER_NOT_FOUND\"", @@ -3631,11 +3635,7 @@ "mespejo", "NeoWaveCode" ], - "cat": "tech", - "headers": { - "Accept": "application/json, text/plain, */*", - "Content-Type": "application/json" - } + "cat": "tech" }, { "name": "Hackster", @@ -4295,6 +4295,9 @@ "uri_check": "https://www.joindota.com/ajax/search", "uri_pretty": "https://www.joindota.com/search?m=edb_player&q={account}", "post_body": "search={account}&module=edb_player&language=en", + "headers": { + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" + }, "e_code": 200, "e_string": "\"items\":[{", "m_string": "\"count\":0", @@ -4303,10 +4306,7 @@ "AngryTestie", "amddota2" ], - "cat": "gaming", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - } + "cat": "gaming" }, { "name": "JSFiddle", @@ -4352,6 +4352,9 @@ "uri_check": "https://www.kashipara.com/ajax/checkNewUser.php", "uri_pretty": "https://www.kashipara.com/profile/user/{account}", "post_body": "id=UserName&value={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded" + }, "e_code": 200, "e_string": "\"message\":\"UserName already Exist\"", "m_string": "\"message\":\"UserName avalible\"", @@ -4360,10 +4363,7 @@ "lopalopa", "westde123" ], - "cat": "tech", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - } + "cat": "tech" }, { "name": "Keybase", @@ -4535,6 +4535,9 @@ "uri_check": "https://kwork.ru/user_kworks/{account}", "uri_pretty": "https://kwork.ru/user/{account}", "post_body": "{\"username\":\"{account}\",\"offset\":0,\"limit\":10}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"success\":true", "m_string": "\"success\":false", @@ -4543,10 +4546,7 @@ "ilkarkarakurt", "sergeymeshiy" ], - "cat": "social", - "headers": { - "Content-Type": "application/json" - } + "cat": "social" }, { "name": "Last.fm", @@ -4582,6 +4582,9 @@ "uri_check": "https://leetcode.com/graphql/", "uri_pretty": "https://leetcode.com/u/{account}/", "post_body": "{\"query\":\"query userPublicProfile($username: String!) { matchedUser(username: $username) { username } }\",\"variables\":{\"username\":\"{account}\"},\"operationName\":\"userPublicProfile\"}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"username\":", "m_string": "\"matchedUser\":null", @@ -4590,10 +4593,7 @@ "aku_2000", "wengh" ], - "cat": "coding", - "headers": { - "Content-Type": "application/json" - } + "cat": "coding" }, { "name": "Lemon8", @@ -6666,6 +6666,9 @@ "uri_check": "https://promodj.com/ajax/register.html?lang=en", "uri_pretty": "https://promodj.com/{account}", "post_body": "kind=nick&value={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" + }, "e_code": 200, "e_string": "Address you entered is already taken", "m_string": "The address is free, it's great;)", @@ -6674,10 +6677,7 @@ "sekoy", "vovasmallny" ], - "cat": "music", - "headers": { - "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8" - } + "cat": "music" }, { "name": "Pronouns.Page", @@ -7296,6 +7296,9 @@ { "name": "Showup.tv", "uri_check": "https://showup.tv/profile/{account}", + "headers": { + "Cookie": "accept_rules=true;" + }, "e_code": 200, "e_string": "O mnie", "m_string": "Darmowe", @@ -7304,10 +7307,7 @@ "LunaVee", "Jane_Frou" ], - "cat": "xx NSFW xx", - "headers": { - "Cookie": "accept_rules=true;" - } + "cat": "xx NSFW xx" }, { "name": "shutterstock", @@ -7743,6 +7743,9 @@ "uri_check": "https://signup.steemit.com/api/check_username", "uri_pretty": "https://steemit.com/@{account}", "post_body": "{\"username\":\"{account}\"}", + "headers": { + "Content-Type": "application/json" + }, "e_code": 200, "e_string": "\"type\":\"error_api_username_used\"", "m_string": "\"success\":true", @@ -7751,10 +7754,7 @@ "petlover", "zalat" ], - "cat": "social", - "headers": { - "Content-Type": "application/json" - } + "cat": "social" }, { "name": "steller", @@ -8264,6 +8264,9 @@ "uri_check": "https://www.tindie.com/accounts/check_username/", "uri_pretty": "https://www.tindie.com/stores/{account}/", "post_body": "username={account}", + "headers": { + "Content-Type": "application/x-www-form-urlencoded" + }, "e_code": 200, "e_string": "\"errors\": [\"Username taken!\"]", "m_string": "\"valid\": true", @@ -8272,10 +8275,7 @@ "tehrabbitt", "dekunukem" ], - "cat": "shopping", - "headers": { - "Content-Type": "application/x-www-form-urlencoded" - } + "cat": "shopping" }, { "name": "Tooting.ch (Mastodon Instance)", @@ -8846,6 +8846,12 @@ "name": "VirusTotal", "uri_check": "https://www.virustotal.com/ui/users/{account}", "uri_pretty": "https://www.virustotal.com/gui/user/{account}", + "headers": { + "Accept-Ianguage": "en-US", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", + "X-Tool": "vt-ui-main", + "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" + }, "e_code": 200, "e_string": "\"data\"", "m_string": "\"code\": \"NotFoundError\"", @@ -8854,13 +8860,7 @@ "cyber", "cybersecstu" ], - "cat": "misc", - "headers": { - "Accept-Ianguage": "en-US", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0", - "X-Tool": "vt-ui-main", - "X-VT-Anti-Abuse-Header": "MTAxOTFwMDcxOTEtWkc5dWRDQmlaU0JsZG2scy5xNzE4Mjc1NDI0LjUzMw==" - } + "cat": "misc" }, { "name": "visnesscard", @@ -8892,6 +8892,9 @@ { "name": "VK", "uri_check": "https://vk.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:125.0) Gecko/20100101 Firefox/125.0" + }, "e_code": 200, "e_string": "content=\"profile\"", "m_string": "404 Not Found", @@ -8900,10 +8903,7 @@ "ches_ches", "mike.kidlazy" ], - "cat": "social", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:125.0) Gecko/20100101 Firefox/125.0" - } + "cat": "social" }, { "name": "Vkl.world (Mastodon Instance)", @@ -8963,6 +8963,9 @@ { "name": "vsco", "uri_check": "https://vsco.co/{account}/gallery", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + }, "e_code": 200, "e_string": "permaSubdomain", "m_string": "\"error\":\"site_not_found\"}", @@ -8971,10 +8974,7 @@ "sam", "becca" ], - "cat": "social", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - } + "cat": "social" }, { "name": "W3Schools", @@ -9101,6 +9101,9 @@ { "name": "Weblancer", "uri_check": "https://www.weblancer.net/users/{account}/", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + }, "e_code": 200, "e_string": "\"user\":", "m_string": "\"page\":\"/404\"", @@ -9109,10 +9112,7 @@ "kevin", "WebArtyom" ], - "cat": "social", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - } + "cat": "social" }, { "name": "weebly", @@ -9573,6 +9573,9 @@ { "name": "Zbiornik", "uri_check": "https://mini.zbiornik.com/{account}", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + }, "e_code": 200, "e_string": "INFO", "m_string": "", @@ -9581,10 +9584,7 @@ "69uzytkownik69", "Soif" ], - "cat": "xx NSFW xx", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - } + "cat": "xx NSFW xx" }, { "name": "Zenn", @@ -9672,6 +9672,9 @@ { "name": "Zomato", "uri_check": "https://www.zomato.com/{account}/reviews", + "headers": { + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" + }, "e_code": 200, "e_string": "Activity</h4>", "m_string": "This is a 404 page and we think it's fairly clear", @@ -9680,10 +9683,7 @@ "john", "jess" ], - "cat": "social", - "headers": { - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0" - } + "cat": "social" }, { "name": "zoomitir",