WebBreacher / WhatsMyName

This repository has the JSON file required to perform user enumeration on various websites.
https://whatsmyname.app/
Other
1.67k stars 285 forks source link

more sites #49

Closed WebBreacher closed 5 years ago

WebBreacher commented 6 years ago

https://www.happycow.net/members/profile/AllisonRallison https://www.zomato.com/tamehameha https://www.tripadvisor.com/members-reviews/475carlm http://www.snooth.com/profiles/joshparent/

bcoles commented 5 years ago

Zomato has been added in #83.

snooth is already in web_accounts_list.json :

      {
         "name" : "snooth",
         "check_uri" : "http://www.snooth.com/profiles/{account}/",
         "account_existence_code" : "200",
         "account_existence_string" : "recent-activity",
         "account_missing_string" : ">Profiles on Snooth<",
         "account_missing_code" : "200",
         "known_accounts" : ["test123"],
         "category" : "food",
         "valid" : true
      },

TripAdvisor is already in web_accounts_list.json :

      {
         "name" : "tripadvisor",
         "check_uri" : "https://www.tripadvisor.com/Profile/{account}",
         "account_existence_code" : "200",
         "account_existence_string" : "Contributions",
         "account_missing_string" : "This page is on vacation",
         "account_missing_code" : "404",
         "known_accounts" : ["john","test"],
         "category" : "travel",
         "valid" : true
      },

HappyCow is blocked by Incapsula unless cookies are provided. Here's some JSON anyway, for reference:

      {
         "name" : "HappyCow",
         "check_uri" : "https://www.happycow.net/members/profile/{account}",
         "account_existence_code" : "200",
         "account_existence_string" : "member of HappyCow",
         "account_missing_string" : "Page Not Found",
         "account_missing_code" : "404",
         "known_accounts" : ["john","bob","alice"],
         "category" : "food",
         "valid" : true
      },